﻿/* 🔐 Protection Layer */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

@media print {
    body {
        display: none !important;
    }
}

/* Custom styles */
body {
    font-family: 'Lilita One', cursive;
}

.platform-btn.selected {
    border-color: #FF6B00;
    background-color: rgba(255, 107, 0, 0.15);
}

.platform-btn.selected span {
    color: #FF6B00;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.animate-marquee {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

/* =======================
   BACKGROUND THEME
   Championship / Golden Arena
========================== */

.brawl-bg {
    background:
        radial-gradient(ellipse at 20% 0%, rgba(255, 140, 0, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 10%, rgba(180, 0, 255, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 60, 0, 0.2) 0%, transparent 60%),
        linear-gradient(175deg, #1a0533 0%, #2d0a5e 25%, #1f0a4e 50%, #0e0530 75%, #090118 100%);
}

/* =======================
   FLOATING GEMS PARTICLES
========================== */
.heart {
    position: absolute;
    top: -120px;
    width: 50px;
    height: 50px;
    opacity: 0;
    animation: gem-fall linear infinite;
}

/* Alternate gem icons */
.heart:nth-child(odd)::before {
    content: "💎";
    font-size: 28px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(0, 200, 255, 0.9));
}

.heart:nth-child(even)::before {
    content: "⭐";
    font-size: 28px;
    color: #FFD300;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 200, 0, 0.9));
}

.heart:nth-child(3n)::before {
    content: "🔥";
    font-size: 28px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 80, 0, 0.9));
}

.heart:nth-child(5n)::before {
    content: "⚡";
    font-size: 28px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(200, 255, 0, 0.9));
}

@keyframes gem-fall {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.6);
        opacity: 0;
    }

    10% {
        opacity: 0.85;
    }

    90% {
        opacity: 0.75;
    }

    100% {
        transform: translateY(110vh) rotate(400deg) scale(1.1);
        opacity: 0;
    }
}

.heart:nth-child(1) {
    left: 5%;
    animation-duration: 9s;
    animation-delay: 0s;
}

.heart:nth-child(2) {
    left: 12%;
    animation-duration: 11s;
    animation-delay: 1.5s;
}

.heart:nth-child(3) {
    left: 22%;
    animation-duration: 8s;
    animation-delay: 3s;
}

.heart:nth-child(4) {
    left: 33%;
    animation-duration: 13s;
    animation-delay: 0.5s;
}

.heart:nth-child(5) {
    left: 44%;
    animation-duration: 10s;
    animation-delay: 2s;
}

.heart:nth-child(6) {
    left: 55%;
    animation-duration: 12s;
    animation-delay: 4s;
}

.heart:nth-child(7) {
    left: 63%;
    animation-duration: 9s;
    animation-delay: 1s;
}

.heart:nth-child(8) {
    left: 72%;
    animation-duration: 14s;
    animation-delay: 5s;
}

.heart:nth-child(9) {
    left: 81%;
    animation-duration: 8s;
    animation-delay: 2.5s;
}

.heart:nth-child(10) {
    left: 91%;
    animation-duration: 11s;
    animation-delay: 3.5s;
}

.heart:nth-child(11) {
    left: 8%;
    animation-duration: 10s;
    animation-delay: 6s;
}

.heart:nth-child(12) {
    left: 18%;
    animation-duration: 13s;
    animation-delay: 0.8s;
}

.heart:nth-child(13) {
    left: 28%;
    animation-duration: 9s;
    animation-delay: 4.5s;
}

.heart:nth-child(14) {
    left: 38%;
    animation-duration: 12s;
    animation-delay: 1.2s;
}

.heart:nth-child(15) {
    left: 48%;
    animation-duration: 10s;
    animation-delay: 6.5s;
}

.heart:nth-child(16) {
    left: 58%;
    animation-duration: 11s;
    animation-delay: 2.8s;
}

.heart:nth-child(17) {
    left: 68%;
    animation-duration: 8s;
    animation-delay: 5.5s;
}

.heart:nth-child(18) {
    left: 78%;
    animation-duration: 14s;
    animation-delay: 0.3s;
}

.heart:nth-child(19) {
    left: 88%;
    animation-duration: 9s;
    animation-delay: 7s;
}

.heart:nth-child(20) {
    left: 96%;
    animation-duration: 12s;
    animation-delay: 3.8s;
}

/* Stars particle layers (kept but restyled for depth) */
.stars,
.stars2,
.stars3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: transparent url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1231630/stars.png') repeat top center;
    z-index: -1;
    opacity: 0.35;
}

.stars {
    background-size: 1000px 1000px;
    animation: move-stars 60s linear infinite;
}

.stars2 {
    background-size: 1600px 1600px;
    animation: move-stars 120s linear infinite;
    opacity: 0.2;
}

.stars3 {
    background-size: 2200px 2200px;
    animation: move-stars 180s linear infinite;
    opacity: 0.15;
}

@keyframes move-stars {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -10000px 5000px;
    }
}

/* =======================
   AURORA / GLOW STREAKS
========================== */
.brawl-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 25% at 15% 30%, rgba(255, 100, 0, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 20% at 85% 20%, rgba(160, 0, 255, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 50% 80%, rgba(255, 200, 0, 0.12) 0%, transparent 70%);
    animation: aurora-shift 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes aurora-shift {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Custom Bounce for Generator Item */
@keyframes bounce-custom {

    0%,
    100% {
        transform: translateY(-5%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(5%);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-bounce-custom {
    animation: bounce-custom 2s infinite;
}

/* Text Stroke Utility */
.stroke-black {
    -webkit-text-stroke: 1.5px black;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* =======================
   STICKY FOOTER
========================== */
footer {
    position: sticky;
    bottom: 0;
    z-index: 50;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 -2px 4px -1px rgba(0, 0, 0, 0.06);
}

.banner-container {
    width: 320px;
    height: 50px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 360px) {
    .banner-container {
        transform: scale(0.9);
    }
}