/* ===== CSS RESET & VARIABLES ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --gold: #FFA500;
            --gold-light: #FFD700;
            --gold-dark: #CC8400;
            --dark: #0A0A28;
            --dark-card: #12123A;
            --dark-light: #1A1A4E;
            --accent-blue: #0066FF;
            --accent-red: #FF3344;
            --accent-green: #00CC66;
            --text: #E8E8F0;
            --text-muted: #9999BB;
            --radius: 16px;
            --radius-sm: 10px;
            --shadow-gold: 0 0 40px rgba(255, 165, 0, 0.3);
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--dark);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        a { color: var(--gold); text-decoration: none; transition: var(--transition); }
        a:hover { color: var(--gold-light); }
        img { max-width: 100%; height: auto; display: block; }
        ul { list-style: none; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== CTA BUTTON ===== */
        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 42px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 18px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 4px 25px rgba(255, 165, 0, 0.4);
            text-align: center;
            text-decoration: none;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.6s;
        }

        .cta-btn:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 8px 40px rgba(255, 165, 0, 0.6);
            color: #fff;
        }

        .cta-btn:hover::before { left: 100%; }

        .cta-btn--large {
            padding: 22px 56px;
            font-size: 20px;
        }

        .cta-btn--outline {
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            box-shadow: none;
        }

        .cta-btn--outline:hover {
            background: var(--gold);
            color: #fff;
        }

        /* ===== SECTION TITLES ===== */
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 18px;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== HEADER / NAV ===== */
        .header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 12px 0;
            transition: var(--transition);
            background: rgba(10, 10, 40, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 165, 0, 0.1);
        }

        .header.scrolled {
            background: #0A0A28;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav__logo img { height: 50px; width: auto; }

        /* Desktop nav links */
        .nav__links-desktop {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav__links-desktop a {
            color: var(--text);
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
        }

        .nav__links-desktop a.cta-btn { color: #fff; }

        .nav__links-desktop a::after {
            content: '';
            position: absolute;
            bottom: -4px; left: 0;
            width: 0; height: 2px;
            background: var(--gold);
            transition: var(--transition);
        }

        .nav__links-desktop a.cta-btn::after { display: none; }
        .nav__links-desktop a:hover::after { width: 100%; }
        .nav__links-desktop a:hover { color: var(--gold); }
        .nav__links-desktop a.cta-btn:hover { color: #fff; }

        /* Burger button — hidden on desktop */
        .nav__burger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 10px;
            z-index: 1010;
            background: none;
            border: none;
            -webkit-tap-highlight-color: transparent;
            position: relative;
        }

        .nav__burger span {
            display: block;
            width: 28px; height: 3px;
            background: var(--gold);
            border-radius: 2px;
            transition: var(--transition);
            pointer-events: none;
        }

        .nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
        .nav__burger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
        .nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

        /* ===== MOBILE MENU OVERLAY (outside header in DOM) ===== */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: 9999;
            background: #0A0A28;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.35s ease, visibility 0.35s ease;
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu__inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            width: 100%;
            padding: 0 30px;
        }

        .mobile-menu__link {
            color: var(--text);
            font-weight: 700;
            font-size: 22px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 10px 0;
            transition: var(--transition);
            text-decoration: none;
        }

        .mobile-menu__link:hover { color: var(--gold); }

        .mobile-menu__cta {
            margin-top: 12px;
            padding: 18px 48px;
            font-size: 18px;
        }

        .mobile-menu__close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: 2px solid rgba(255, 165, 0, 0.4);
            border-radius: 50%;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
            transition: var(--transition);
        }

        .mobile-menu__close:hover {
            border-color: var(--gold);
            background: rgba(255, 165, 0, 0.15);
        }

        .mobile-menu__close svg {
            color: var(--gold);
            pointer-events: none;
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            overflow: hidden;
        }

        .hero__bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero__bg img {
            width: 100%; height: 100%;
            object-fit: cover;
        }

        .hero__bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10,10,40,0.3) 0%, rgba(10,10,40,0.8) 100%);
        }

        .hero__content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
        }

        .hero__text h1 {
            font-family: 'Playfair Display', serif;
            font-size: 58px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero__text h1 span {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero__text p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 30px;
            max-width: 520px;
        }

        .hero__badges {
            display: flex;
            gap: 16px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .hero__badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 165, 0, 0.2);
            border-radius: 50px;
            font-size: 14px;
            color: var(--text-muted);
        }

        .hero__badge svg { flex-shrink: 0; }

        .hero__visual {
            display: flex;
            justify-content: center;
            position: relative;
        }

        .hero__visual img {
            max-height: 500px;
            filter: drop-shadow(0 20px 60px rgba(255, 165, 0, 0.2));
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* ===== BONUS TICKER ===== */
        .ticker {
            background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
            padding: 14px 0;
            overflow: hidden;
            position: relative;
        }

        .ticker__track {
            display: flex;
            animation: tickerScroll 20s linear infinite;
            width: max-content;
        }

        .ticker__item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 40px;
            font-weight: 700;
            color: var(--dark);
            white-space: nowrap;
            font-size: 15px;
        }

        @keyframes tickerScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ===== BONUSES ===== */
        .bonuses {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
        }

        .bonuses__grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .bonus-card {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
        }

        .bonus-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-gold);
        }

        .bonus-card__bg {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        .bonus-card__content {
            position: absolute;
            inset: 0;
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
        }

        .bonus-card__tag {
            align-self: flex-start;
            padding: 5px 14px;
            background: var(--gold);
            color: var(--dark);
            font-size: 11px;
            font-weight: 800;
            border-radius: 50px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .bonus-card__title {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 6px;
        }

        .bonus-card__desc {
            font-size: 13px;
            color: rgba(255,255,255,0.8);
            line-height: 1.5;
        }

        /* ===== GAMES ===== */
        .games {
            padding: 100px 0;
            background: var(--dark);
        }

        .games__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .game-card {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .game-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: var(--gold);
            box-shadow: 0 10px 40px rgba(255, 165, 0, 0.15);
        }

        .game-card__img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .game-card__overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
            background: linear-gradient(180deg, transparent 40%, rgba(10,10,40,0.95) 100%);
        }

        .game-card__icon {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .game-card__name {
            font-size: 22px;
            font-weight: 800;
        }

        .game-card__count {
            font-size: 14px;
            color: var(--gold);
            margin-top: 4px;
        }

        /* ===== HOW IT WORKS ===== */
        .howto {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
        }

        .howto__steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }

        .howto__steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 12.5%;
            right: 12.5%;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
            opacity: 0.3;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step__number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--dark);
            position: relative;
            z-index: 2;
            box-shadow: 0 0 30px rgba(255, 165, 0, 0.3);
        }

        .step__title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .step__desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ===== ADVANTAGES ===== */
        .advantages {
            padding: 100px 0;
            background: var(--dark);
        }

        .advantages__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .adv-card {
            background: var(--dark-card);
            border-radius: var(--radius);
            padding: 40px 30px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.05);
            transition: var(--transition);
        }

        .adv-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        }

        .adv-card__icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
        }

        .adv-card__title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .adv-card__desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ===== STATS ===== */
        .stats {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark-light), var(--dark-card));
            border-top: 1px solid rgba(255, 165, 0, 0.1);
            border-bottom: 1px solid rgba(255, 165, 0, 0.1);
        }

        .stats__grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .stat__number {
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat__label {
            font-size: 16px;
            color: var(--text-muted);
            margin-top: 8px;
        }

        /* ===== MOBILE APP ===== */
        .mobile-app {
            padding: 100px 0;
            background: var(--dark);
            overflow: hidden;
        }

        .mobile-app__content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .mobile-app__visual img {
            max-height: 500px;
            margin: 0 auto;
            filter: drop-shadow(0 20px 60px rgba(255, 165, 0, 0.15));
            animation: float 5s ease-in-out infinite;
        }

        .mobile-app__info h2 {
            font-family: 'Playfair Display', serif;
            font-size: 38px;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fff, var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .mobile-app__info p {
            color: var(--text-muted);
            margin-bottom: 24px;
            font-size: 16px;
        }

        .mobile-app__features {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 30px;
        }

        .mobile-app__feature {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
        }

        .mobile-app__feature svg { flex-shrink: 0; color: var(--gold); }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--dark-light), var(--dark));
        }

        .testimonials__grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .testimonial {
            background: var(--dark-card);
            border-radius: var(--radius);
            padding: 32px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: var(--transition);
        }

        .testimonial:hover {
            border-color: rgba(255, 165, 0, 0.3);
        }

        .testimonial__header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .testimonial__avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }

        .testimonial__name { font-weight: 700; font-size: 16px; }

        .testimonial__stars {
            color: var(--gold);
            font-size: 14px;
            margin-top: 2px;
        }

        .testimonial__text {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            font-style: italic;
        }

        /* ===== PAYMENTS ===== */
        .payments {
            padding: 80px 0;
            background: var(--dark);
            text-align: center;
        }

        .payments__logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .payments__item {
            padding: 16px 28px;
            background: var(--dark-card);
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255,255,255,0.05);
            font-weight: 700;
            font-size: 15px;
            color: var(--text-muted);
            transition: var(--transition);
        }

        .payments__item:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        /* ===== FAQ ===== */
        .faq {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--dark), var(--dark-light));
        }

        .faq__list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq__item {
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .faq__question {
            width: 100%;
            background: none;
            border: none;
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
            font-size: 17px;
            font-weight: 600;
            text-align: left;
            padding: 24px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            transition: var(--transition);
        }

        .faq__question:hover { color: var(--gold); }

        .faq__question svg {
            flex-shrink: 0;
            transition: var(--transition);
            color: var(--gold);
        }

        .faq__item.active .faq__question svg {
            transform: rotate(180deg);
        }

        .faq__answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq__answer-inner {
            padding: 0 0 24px;
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            position: relative;
            padding: 100px 0;
            text-align: center;
            overflow: hidden;
        }

        .cta-section__bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .cta-section__bg img {
            width: 100%; height: 100%;
            object-fit: cover;
        }

        .cta-section__bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(10,10,40,0.6);
        }

        .cta-section__content {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-section h2 span {
            color: var(--gold);
        }

        .cta-section p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 36px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== FOOTER ===== */
        .footer {
            padding: 60px 0 30px;
            background: #060618;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer__brand p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.7;
            margin-top: 16px;
        }

        .footer__col h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--gold);
        }

        .footer__col a {
            display: block;
            color: var(--text-muted);
            font-size: 14px;
            padding: 4px 0;
            transition: var(--transition);
        }

        .footer__col a:hover { color: var(--gold); }

        .footer__bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
        }

        .footer__bottom p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .footer__age {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid var(--accent-red);
            color: var(--accent-red);
            font-weight: 900;
            font-size: 16px;
            margin-bottom: 10px;
        }

        /* ===== SCROLL ANIMATIONS ===== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== PULSE ANIMATION FOR CTA ===== */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.5); }
            70% { box-shadow: 0 0 0 20px rgba(255, 165, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 165, 0, 0); }
        }

        .pulse { animation: pulse 2s infinite; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero__content { grid-template-columns: 1fr; text-align: center; }
            .hero__text h1 { font-size: 42px; }
            .hero__text p { margin: 0 auto 30px; }
            .hero__badges { justify-content: center; }
            .hero__visual { margin-top: 40px; }
            .bonuses__grid { grid-template-columns: repeat(2, 1fr); }
            .games__grid { grid-template-columns: repeat(2, 1fr); }
            .howto__steps { grid-template-columns: repeat(2, 1fr); }
            .howto__steps::before { display: none; }
            .advantages__grid { grid-template-columns: repeat(2, 1fr); }
            .stats__grid { grid-template-columns: repeat(2, 1fr); }
            .footer__grid { grid-template-columns: repeat(2, 1fr); }
            .nav__links-desktop { gap: 20px; }
            .nav__links-desktop a { font-size: 12px; }
            .hero__content > .hero__text > div:first-of-type {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            /* Hide desktop nav, show burger + mobile menu overlay */
            .nav__links-desktop { display: none; }
            .nav__burger { display: flex; }
            .mobile-menu { display: flex; }

            .hero { min-height: auto; padding: 100px 0 60px; }
            .hero__text h1 { font-size: 32px; }
            .hero__text p { font-size: 15px; padding: 0 10px; }
            .hero__visual img { max-height: 350px; }
            .hero__badges { gap: 10px; }
            .hero__badge { font-size: 12px; padding: 8px 14px; }
            .section-title { font-size: 28px; }
            .section-subtitle { font-size: 15px; margin-bottom: 36px; }
            .bonuses__grid { grid-template-columns: 1fr; }
            .games__grid { grid-template-columns: 1fr; }
            .howto__steps { grid-template-columns: 1fr; gap: 20px; }
            .advantages__grid { grid-template-columns: 1fr; }
            .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .stat__number { font-size: 36px; }
            .mobile-app__content { grid-template-columns: 1fr; text-align: center; }
            .mobile-app__visual { order: -1; }
            .mobile-app__info h2 { font-size: 28px; }
            .testimonials__grid { grid-template-columns: 1fr; }
            .footer__grid { grid-template-columns: 1fr; text-align: center; }
            .cta-btn { padding: 16px 32px; font-size: 16px; }
            .cta-btn--large { padding: 18px 40px; font-size: 17px; }
            .cta-section h2 { font-size: 28px; }
            .cta-section p { font-size: 15px; }
            .hero__content > .hero__text > div:first-of-type {
                justify-content: center;
            }
            .payments__logos { gap: 12px; }
            .payments__item { padding: 12px 18px; font-size: 13px; }
        }

        @media (max-width: 480px) {
            .hero__text h1 { font-size: 26px; }
            .hero__text p { font-size: 14px; }
            .section-title { font-size: 24px; }
            .stat__number { font-size: 28px; }
            .cta-btn { padding: 14px 28px; font-size: 15px; }
            .cta-btn--large { padding: 16px 34px; font-size: 16px; }
            .bonus-card__title { font-size: 18px; }
            .adv-card { padding: 30px 20px; }
            .step__number { width: 64px; height: 64px; font-size: 26px; }
            .hero__badges { flex-direction: column; align-items: center; }
        }

        /* Body lock when mobile menu is open */
        body.menu-open { overflow: hidden; }