        :root {
            --bg-dark: #0a0a12;
            --purple-accent: #ff1d67;
            --purple-dark: #a01445;
            --text-main: #e0e0ff;
            --text-muted: #e8e8e8;
            --gradient: linear-gradient(-45deg, #04040a, #03161f, #070711, #070711);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
body {
    background: 
        radial-gradient(ellipse at 70% 30%, rgba(80, 20, 100, 0.12) 0%, rgba(80, 20, 100, 0) 60%),
        radial-gradient(ellipse at 20% 80%, rgba(140, 30, 120, 0.08) 0%, rgba(140, 30, 120, 0) 70%),
        #0f0714;   /* Solid fallback color underneath */

    background-attachment: fixed;     /* Makes the gradients stay in place */
    background-size: 100% 100%;       /* Important for radial gradients */
    
    /* Keep your other body styles */
    color: var(--text-main);
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 1.4s ease;
}
        body.visible {
            opacity: 1;
        }
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/assets/bg.jpg') center/cover no-repeat;
            opacity: 0.25;
            z-index: -1;
            pointer-events: none;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .global-fade {
            opacity: 0;
            transition: opacity 1.4s ease;
        }
        .global-fade.visible {
            opacity: 1;
        }

        /* ====================== HEADER (unchanged) ====================== */
        header {
            border-bottom: 1px solid rgba(255, 29, 103, 0.12);
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
            background: rgba(4, 4, 10, 0.25);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            height: 80px;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
        }
        .left { display: flex; align-items: center; gap: 14px; }
        .logo-img { height: 75px; width: 75px; object-fit: contain; }
        .logo-text { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.5px; }
        .logo-hd { background: linear-gradient(90deg, var(--purple-accent), #ff4d88); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .logo-gameful { color: var(--text-muted); }
        nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
        }
        .nav-link {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: color 0.18s ease;
        }
        .nav-link.active, .nav-link:hover { color: var(--purple-accent); }
        .nav-link img {
            height: 22px;
            width: 22px;
            object-fit: contain;
            filter: brightness(0) saturate(100%) invert(88%) sepia(5%) saturate(500%) hue-rotate(210deg) brightness(105%) contrast(95%);
            transition: filter 0.18s ease;
        }
        .nav-link.active img, .nav-link:hover img {
            filter: brightness(0) saturate(100%) invert(64%) sepia(81%) saturate(7494%) hue-rotate(330deg) brightness(98%) contrast(101%);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--purple-accent);
            border-radius: 2px;
            transform: translateX(-50%);
            transition: width 0.22s ease;
        }
        .nav-link.active::after, .nav-link:hover::after { width: 60%; }
        .right {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 20px;
        }
        .social-icon {
            height: 28px;
            width: 28px;
            object-fit: contain;
            filter: brightness(0) saturate(100%) invert(88%) sepia(5%) saturate(500%) hue-rotate(210deg) brightness(105%) contrast(95%);
            opacity: 0;
            transform: scale(0.6);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .social-icon.visible {
            opacity: 1;
            transform: scale(1);
        }
        .social-icon:hover {
            transform: translateY(-2px) scale(1.1);
            filter: brightness(0) saturate(100%) invert(64%) sepia(81%) saturate(7494%) hue-rotate(330deg) brightness(98%) contrast(101%);
        }

        /* ====================== HERO (completely unchanged) ====================== */
        .hero {
            position: relative;
            min-height: 70vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 50px 24px 60px 24px;
            margin-bottom: 125px;
        }
        .side-images {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 3;
            display: none;
            opacity: 0;
            transition: opacity 1.6s ease;
        }
        @media (min-width: 1025px) {
            .side-images { display: block; }
        }
        .left-side, .right-side {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            z-index: 3;
            width: 500px;
        }
        .left-side { left: 16%; align-items: flex-start; }
        .right-side { right: 14%; align-items: flex-end; }
        .side-image {
            filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.15)) drop-shadow(0 1px 12px rgba(0, 0, 0, 0.3));
            will-change: transform;
            object-fit: contain;
        }
        #left1 { width: 200px; margin-left: 175px; animation: swayLeft1 13.2s ease-in-out infinite; }
        #left2 { width: 300px; margin-left: 0px; animation: swayLeft2 17.8s ease-in-out infinite; }
        #left3 { width: 175px; margin-left: 175px; animation: swayLeft3 15.5s ease-in-out infinite; }
        #right1 { width: 225px; margin-right: 175px; animation: swayRight1 13.2s ease-in-out infinite; }
        #right2 { width: 175px; margin-right: 100px; animation: swayRight2 17.8s ease-in-out infinite; }
        #right3 { width: 150px; margin-right: 175px; animation: swayRight3 15.5s ease-in-out infinite; }
        @keyframes swayLeft1 { 0%, 100% { transform: rotate(-7deg) translateX(-6px); } 50% { transform: rotate(9deg) translateX(10px); } }
        @keyframes swayRight1 { 0%, 100% { transform: rotate(7deg) translateX(6px); } 50% { transform: rotate(-9deg) translateX(-10px); } }
        @keyframes swayLeft2 { 0%, 100% { transform: rotate(-11deg) translateX(-12px); } 50% { transform: rotate(6deg) translateX(7px); } }
        @keyframes swayRight2 { 0%, 100% { transform: rotate(11deg) translateX(12px); } 50% { transform: rotate(-6deg) translateX(-7px); } }
        @keyframes swayLeft3 { 0%, 100% { transform: rotate(-8deg) translateX(-8px); } 50% { transform: rotate(10deg) translateX(11px); } }
        @keyframes swayRight3 { 0%, 100% { transform: rotate(8deg) translateX(8px); } 50% { transform: rotate(-10deg) translateX(-11px); } }

        .hero-logo-container, .hero-title, .hero-subtitle, .status-pill {
            position: relative;
            z-index: 5;
        }
        .hero-logo {
            height: 330px;
            width: 330px;
            object-fit: contain;
            animation: breathe 8s ease-in-out infinite;
            margin-bottom: -45px;
        }
        @keyframes breathe {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        .hero-title {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.6px;
        }
        .welcome-grey { color: var(--text-muted); }
        .hero-hd {
            background: linear-gradient(90deg, var(--purple-accent), #ff4d88);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-gameful { color: var(--text-muted); }
        .hero-subtitle {
            font-size: 1.0rem;
            color: #c0c0d8;
            max-width: 640px;
            line-height: 1.55;
            font-weight: 400;
            margin-bottom: 24px;
        }
        .status-pill {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            background: rgba(20, 20, 35, 0.75);
            backdrop-filter: blur(2px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #aaa;
            z-index: 5;
            position: relative;
            transition: all 0.25s ease;
            text-decoration: none;
            opacity: 0;
            pointer-events: none;
            margin: 0 auto;
        }
        .status-pill.visible {
            opacity: 1;
            pointer-events: auto;
        }
        .status-pill.live {
            color: #0f0;
            border-color: rgba(0, 255, 0, 0.25);
            background: rgba(0, 20, 0, 0.4);
        }
        .status-pill.offline {
            color: #f33;
            border-color: rgba(255, 0, 0, 0.25);
            background: rgba(40, 0, 0, 0.4);
        }
        .status-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            position: relative;
            display: none;
        }
        .status-dot.visible {
            display: inline-block;
        }
        .status-dot.live::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: inherit;
            opacity: 0;
            animation: pulse 2s linear infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.8; }
            30% { transform: scale(3); opacity: 0; }
            100% { transform: scale(3); opacity: 0; }
        }
        .scroll-hint {
            position: absolute;
            bottom: -125px;
            left: 50%;
            transform: translateX(-50%) translateY(50px);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            color: #e8e8e8b8;
            font-size: 0.92rem;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            opacity: 0;
            z-index: 5;
            transition: opacity 1s ease, transform 1s ease;
        }
        .scroll-hint.visible {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        .scroll-arrow {
            width: 28px;
            height: 28px;
            animation: bounceArrow 2.2s ease-in-out infinite;
        }
        @keyframes bounceArrow {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(12px); }
        }
        .particles {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 4;
        }
        .particle {
            position: absolute;
            background: rgba(255, 29, 103, 0.7);
            border-radius: 50%;
            box-shadow:
                0 0 8px rgba(255, 29, 103, 0.9),
                0 0 18px rgba(255, 69, 129, 0.5);
            pointer-events: none;
            will-change: transform, opacity;
        }
        @keyframes floatUpFade {
            0% {
                transform: translateY(0) translateX(0) scale(0.4);
                opacity: 0;
            }
            10% { opacity: 0.75; }
            90% { opacity: 0.75; }
            100% {
                transform: translateY(-110vh) translateX(calc(var(--drift) * 1vw)) scale(0.7);
                opacity: 0;
            }
        }

        /* ====================== BONUSES SECTION ====================== */
        .bonuses-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 250px 24px 100px 24px; /* Increased top padding so it's below hero */
            position: relative;
            z-index: 10;
        }
        .section-header {
            text-align: center;
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: -0.8px;
            margin-bottom: 60px;
            color: var(--text-main);
        }
/* ====================== BONUSES GRID ====================== */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1400px;           /* Slightly increased for 4 cards */
    margin: 0 auto;
}

/* Force 4 columns on large screens */
@media (min-width: 1200px) {
    .bonuses-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Optional: On very large screens, make cards a bit wider */
@media (min-width: 1600px) {
    .bonuses-grid {
        grid-template-columns: repeat(4, minmax(300px, 1fr));
    }
}
        .bonus-card {
            background: rgba(20, 20, 35, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(4px);
            font-family: 'Manrope', system-ui, -apple-system, sans-serif;
        }
        .bonus-card:hover {
            transform: translateY(-12px);
            border-color: rgba(255, 29, 103, 0.3);
            box-shadow: 0 20px 40px rgba(255, 29, 103, 0.15);
        }
        .casino-banner {
            height: 160px;
            background: #11111f;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .casino-logo {
            max-height: 110px;
            max-width: 100%;
            object-fit: contain;
            filter: brightness(1.05);
        }
        .card-content {
            padding: 28px 24px 24px;
            text-align: center;
        }
        .perks {
            list-style: none;
            margin-bottom: 28px;
            padding: 0;
            text-align: center;
        }
        .perks li {
            color: #c0c0d8;
            font-size: 1.02rem;
            padding: 8px 0;
        }
        .code-label {
            font-size: 0.95rem;
            color: #999;
            margin-bottom: 8px;
            font-weight: 500;
            letter-spacing: 1px;
            text-align: center;
        }
        .code-container {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 29, 103, 0.25);
            border-radius: 12px;
            padding: 14px 18px;
            font-family: monospace;
            font-size: 1.35rem;
            font-weight: 700;
            color: #ff4d88;
            text-align: center;
            margin-bottom: 24px;
            letter-spacing: 2px;
        }
        .claim-btn {
            display: block;
            width: 100%;
            background: linear-gradient(90deg, var(--purple-accent), #ff4d88);
            color: white;
            text-align: center;
            padding: 16px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.25s ease;
            font-family: 'Manrope', system-ui, -apple-system, sans-serif;
        }
        .claim-btn:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(255, 29, 103, 0.4);
        }

        /* ====================== FOOTER ====================== */
        footer {
            background: rgba(10, 10, 18, 0.95);
            border-top: 1px solid rgba(255, 29, 103, 0.12);
            padding: 80px 24px 40px;
            position: relative;
            z-index: 10;
        }
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex; /* Changed from grid to flex */
    justify-content: space-between; /* This pushes items to the far edges */
    align-items: flex-start;
    gap: 40px;
}

.footer-menu {
    display: flex;
    flex-direction: row;
    gap: 70px;
    /* Removed justify-content: center so it aligns naturally to the right */
}
        .footer-left {
            display: flex;
            flex-direction: column;
        }
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .footer-logo-img {
            height: 65px;
            width: 65px;
            object-fit: contain;
        }
        .footer-logo-text {
            font-size: 1.85rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        .footer-copyright {
            color: #777;
            font-size: 0.92rem;
            line-height: 1.5;
        }
        .footer-credit {
            color: #aaa;
            font-size: 0.95rem;
        }
        .footer-credit a {
            color: #ff4d88;
            font-weight: 700;
            text-decoration: none;
        }
        .footer-credit a:hover {
            text-decoration: underline;
        }
        .footer-slogan {
color: #aaa;
    font-size: 0.95rem;
        }


        .menu-column h3 {
            color: var(--purple-accent);
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-align: center;
        }
        .menu-column ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .menu-column a {
            color: #bbb;
            text-decoration: none;
            font-size: 1.02rem;
            transition: color 0.2s ease;
        }
        .menu-column a:hover {
            color: var(--purple-accent);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .bonuses-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }
            .footer-menu {
                flex-direction: column;
                gap: 50px;
            }
        }
        @media (max-width: 768px) {
            .bonuses-section { padding: 100px 20px 70px; }
            .section-header { font-size: 2.1rem; }
            .footer-content { gap: 40px; }
            .footer-menu { gap: 40px; }
        }
        
        /* ====================== UNIQUE STYLING FOR BONUSES PAGE ====================== */
.bonuses-page {
    margin-top: 0px;     /* Pulls the whole section upward */
    padding-top: 80px;      /* Adds breathing room so the heading isn't too close to hero */
    position: relative;
    z-index: 10;
}

.bonuses-page .section-header {
    margin-bottom: 50px;
}

/* Optional: make it overlap the hero a little more aggressively */
@media (min-width: 1025px) {
    .bonuses-page {
        margin-top: 0px; /* Increase this number to move it even higher */
    }
}

/* ====================== TERMS PAGE ====================== */
.terms-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 24px 100px;
}

.terms-container {
    background: rgba(20, 20, 35, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px 40px;
    backdrop-filter: blur(4px);
}

.page-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-main);
}

.terms-content {
    line-height: 1.75;
    color: #e0e0ff;
    font-size: 1.02rem;
}

.terms-content h2 {
    color: var(--purple-accent);
    margin: 35px 0 15px 0;
    font-size: 1.45rem;
    font-weight: 700;
}

.terms-content p {
    margin-bottom: 18px;
}

.terms-content a {
    color: #ff4d88;
    text-decoration: none;
}

.terms-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-container {
        padding: 35px 24px;
    }
    .terms-section {
        padding: 80px 20px 80px;
    }
}

/* ====================== MOBILE RESPONSIVE RULES ====================== */

@media (max-width: 1024px) {

    /* ====================== HEADER ====================== */
    .header-wrapper {
        display: flex;                    /* Changed to flex for perfect centering */
        justify-content: center;          /* Centers the navigation */
        align-items: center;
        padding: 0 16px;
        height: 80px;
    }

    /* Hide left menu and right social icons completely */
    .left,
    .right {
        display: none;
    }

    /* Nav styling - only text, nicely spaced */
    nav {
        gap: 32px;
    }

    .nav-link img {
        display: none;                    /* Remove icons */
    }

    .nav-link {
        font-size: 1.1rem;
        gap: 0;
    }


    /* ====================== HERO SECTION ====================== */
    /* Hide side images */
    .side-images {
        display: none !important;
    }

    /* Hide SEE MORE + arrow completely */
    .scroll-hint {
        display: none !important;
    }

    .hero {
        min-height: 65vh;
        padding: 40px 20px 80px;
    }

    .hero-logo {
        height: 240px;
        width: 240px;
        margin-bottom: -30px;
    }

    .hero-title {
        font-size: 1.95rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 90%;
    }


    /* ====================== STATUS PILL ====================== */
    .status-pill {
        margin-top: 12px;                 /* Add some spacing below subtitle */
    }


    /* ====================== FOOTER ====================== */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 50px;
    }

    .footer-menu {
        flex-direction: column;
        gap: 45px;
        align-items: center;
    }

    .menu-column {
        width: 100%;
        max-width: 280px;
    }

    .menu-column ul {
        align-items: center;
    }

    .footer-left {
        align-items: center;
    }

    .footer-copyright,
    .footer-credit,
    .footer-slogan {
        text-align: center;
    }
}

/* Extra small screen tweaks */
@media (max-width: 768px) {

    .hero {
        min-height: 60vh;
        padding: 35px 16px 70px;
    }

    .hero-logo {
        height: 210px;
        width: 210px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-menu {
        gap: 38px;
    }

    .bonuses-section {
        padding: 120px 16px 80px;
    }

    nav {
        gap: 26px;                        /* Slightly tighter spacing on very small phones */
    }

    .nav-link {
        font-size: 1.05rem;
    }
}