*, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-deep: #040d08;
            --bg-primary: #071a10;
            --bg-secondary: #0c2518;
            --bg-card: #0f2e1e;
            --bg-card-hover: #133823;
            --green: #0d6b3f;
            --green-dark: #0a4f2e;
            --green-light: #17a363;
            --green-glow: rgba(23, 163, 99, 0.15);
            --gold: #ffd679;
            --gold-bright: #ffca28;
            --gold-dark: #e5a800;
            --gold-glow: rgba(255, 214, 121, 0.12);
            --text-primary: #f0f4f1;
            --text-secondary: #9cb0a3;
            --text-muted: #5e7a6a;
            --glass-border: rgba(255, 214, 121, 0.12);
            --glass-border-hover: rgba(255, 214, 121, 0.3);
            --radius: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== BUTTONS ========== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 36px;
            border: 1px solid rgba(255, 214, 121, 0.35);
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(255, 214, 121, 0.18), rgba(255, 193, 7, 0.08));
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            color: var(--gold);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before { left: 100%; }

        .btn:hover {
            background: linear-gradient(135deg, rgba(255, 214, 121, 0.35), rgba(255, 193, 7, 0.2));
            border-color: rgba(255, 214, 121, 0.6);
            box-shadow: 0 0 35px rgba(255, 214, 121, 0.18), inset 0 0 30px rgba(255, 214, 121, 0.04);
            transform: translateY(-2px);
        }

        .btn:active { transform: translateY(0); }

        .btn-primary {
            background: linear-gradient(135deg, #ffd679 0%, #ffca28 50%, #ffd679 100%);
            background-size: 200% auto;
            color: #071a10;
            border-color: rgba(255, 214, 121, 0.8);
            box-shadow: 0 4px 24px rgba(255, 214, 121, 0.25);
            animation: btn-shimmer 3s linear infinite;
        }

        @keyframes btn-shimmer {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        .btn-primary:hover {
            box-shadow: 0 6px 40px rgba(255, 214, 121, 0.4);
            transform: translateY(-3px);
        }

        .btn-green {
            background: linear-gradient(135deg, rgba(23, 163, 99, 0.2), rgba(13, 107, 63, 0.1));
            border-color: rgba(23, 163, 99, 0.3);
            color: var(--green-light);
        }

        .btn-green:hover {
            background: linear-gradient(135deg, rgba(23, 163, 99, 0.35), rgba(13, 107, 63, 0.2));
            border-color: rgba(23, 163, 99, 0.6);
            box-shadow: 0 0 30px rgba(23, 163, 99, 0.15);
        }

        .btn-lg { padding: 18px 48px; font-size: 17px; border-radius: 14px; }
        .btn-sm { padding: 10px 24px; font-size: 13px; border-radius: 10px; }

        /* ========== HEADER ========== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(4, 13, 8, 0.88);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(255, 214, 121, 0.06);
            transition: all 0.3s;
        }

        .header.scrolled {
            background: rgba(4, 13, 8, 0.96);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .logo svg { height: 34px; width: auto; }

        .logo-text {
            font-size: 10px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-link {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            transition: all 0.3s;
        }

        .nav-link:hover { color: var(--gold); background: rgba(255, 214, 121, 0.06); }

        .header-actions {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .burger-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            flex-direction: column;
            gap: 5px;
        }

        .burger-btn span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* ========== MOBILE NAV ========== */
        .mobile-nav {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(4, 13, 8, 0.98);
            backdrop-filter: blur(30px);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .mobile-nav.active { display: flex; }

        .mobile-nav-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 28px;
            cursor: pointer;
        }

        .mobile-nav a {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-secondary);
            padding: 8px 0;
            transition: color 0.3s;
        }

        .mobile-nav a:hover { color: var(--gold); }

        /* ========== HERO ========== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 68px;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: url("../images/header-bg.webp") 38% center/cover no-repeat;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg,
                    rgba(4, 13, 8, 0.88) 0%,
                    rgba(4, 13, 8, 0.68) 34%,
                    rgba(4, 13, 8, 0.18) 58%,
                    rgba(4, 13, 8, 0.52) 100%),
                linear-gradient(180deg,
                    rgba(4, 13, 8, 0.24) 0%,
                    rgba(4, 13, 8, 0.38) 46%,
                    rgba(4, 13, 8, 0.86) 82%,
                    var(--bg-deep) 100%);
        }

        .hero-particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0;
            animation: float-particle 8s ease-in-out infinite;
        }

        .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
        .particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1.5s; animation-duration: 9s; }
        .particle:nth-child(3) { left: 45%; top: 35%; animation-delay: 3s; animation-duration: 6s; }
        .particle:nth-child(4) { left: 65%; top: 70%; animation-delay: 0.8s; animation-duration: 8s; }
        .particle:nth-child(5) { left: 80%; top: 25%; animation-delay: 2.5s; animation-duration: 10s; }
        .particle:nth-child(6) { left: 90%; top: 55%; animation-delay: 4s; animation-duration: 7s; }

        @keyframes float-particle {
            0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
            25% { opacity: 0.8; }
            50% { opacity: 0.4; transform: translateY(-60px) scale(1.5); }
            75% { opacity: 0.6; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: left;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px 80px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 24px;
            background: linear-gradient(135deg, rgba(13, 107, 63, 0.2), rgba(23, 163, 99, 0.06));
            border: 1px solid rgba(23, 163, 99, 0.25);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: var(--green-light);
            margin-bottom: 28px;
            backdrop-filter: blur(10px);
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--green-light);
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
            box-shadow: 0 0 8px var(--green-light);
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        .hero h1 {
            font-size: clamp(32px, 6vw, 62px);
            font-weight: 900;
            line-height: 1.1;
            max-width: 560px;
            margin-bottom: 22px;
        }

        .hero h1 .gold {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: text-shimmer 4s linear infinite;
        }

        @keyframes text-shimmer {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        .hero-sub {
            font-size: clamp(15px, 2vw, 19px);
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 520px;
            margin-left: 0;
            margin-right: 0;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: flex-start;
            flex-wrap: wrap;
            max-width: 560px;
        }

        .hero-stats {
            display: flex;
            justify-content: flex-start;
            gap: 48px;
            max-width: 560px;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 214, 121, 0.08);
            flex-wrap: wrap;
        }

        .hero-stat { text-align: center; }

        .hero-stat-val {
            font-size: 30px;
            font-weight: 900;
            color: var(--gold);
        }

        .hero-stat-lbl {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* ========== TICKER ========== */
        .ticker {
            background: rgba(13, 107, 63, 0.06);
            border-top: 1px solid rgba(23, 163, 99, 0.08);
            border-bottom: 1px solid rgba(23, 163, 99, 0.08);
            overflow: hidden;
            padding: 14px 0;
        }

        .ticker-track {
            display: flex;
            gap: 50px;
            animation: ticker-scroll 35s linear infinite;
            width: max-content;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-muted);
            white-space: nowrap;
        }

        .ticker-item span { color: var(--gold); }

        @keyframes ticker-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ========== SECTIONS ========== */
        .section { padding: 90px 0; }
        .section-alt { background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 50%, var(--bg-deep) 100%); }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: clamp(26px, 4vw, 42px);
            font-weight: 800;
            margin-bottom: 16px;
        }

        .section-title h2 .gold { color: var(--gold); }

        .section-title p {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* ========== FEATURES ========== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .feature-card {
            background: linear-gradient(145deg, rgba(13, 107, 63, 0.08), rgba(15, 46, 30, 0.6));
            border: 1px solid rgba(23, 163, 99, 0.1);
            border-radius: var(--radius-lg);
            padding: 32px 22px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .feature-card:hover::before { opacity: 1; }

        .feature-card:hover {
            transform: translateY(-6px);
            border-color: var(--glass-border-hover);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px var(--gold-glow);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(255, 214, 121, 0.12), rgba(255, 193, 7, 0.04));
            border: 1px solid rgba(255, 214, 121, 0.12);
            font-size: 28px;
        }

        .feature-card h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .feature-card p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.65;
        }

        /* ========== GAMES ========== */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 14px;
            margin-bottom: 40px;
        }

        .game-card {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            aspect-ratio: 3/4;
            background: linear-gradient(145deg, var(--bg-card), var(--bg-card-hover));
            border: 1px solid rgba(23, 163, 99, 0.08);
            cursor: pointer;
            transition: all 0.35s ease;
        }

        .game-card:hover {
            transform: translateY(-5px) scale(1.03);
            border-color: rgba(255, 214, 121, 0.3);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
        }

        .game-card-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .game-card-name {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 14px 10px;
            background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
            font-size: 12px;
            font-weight: 600;
            text-align: center;
        }

        .game-card-overlay {
            position: absolute;
            inset: 0;
            background: rgba(4, 13, 8, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .game-card:hover .game-card-overlay { opacity: 1; }

        /* ========== BONUSES ========== */
        .bonuses-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .bonus-card {
            background: linear-gradient(145deg, rgba(13, 107, 63, 0.1), rgba(15, 46, 30, 0.7));
            border: 1px solid rgba(23, 163, 99, 0.12);
            border-radius: var(--radius-xl);
            padding: 40px 28px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .bonus-card::after {
            content: '';
            position: absolute;
            top: -60%;
            left: -30%;
            width: 160%;
            height: 160%;
            background: radial-gradient(circle at center, var(--gold-glow) 0%, transparent 65%);
            pointer-events: none;
        }

        .bonus-card:hover {
            transform: translateY(-6px);
            border-color: var(--glass-border-hover);
            box-shadow: 0 24px 60px rgba(0,0,0,0.35);
        }

        .bonus-value {
            font-size: 50px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--gold), var(--gold-bright));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 6px;
            position: relative;
            z-index: 1;
        }

        .bonus-label {
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .bonus-desc {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        .bonus-card .btn { position: relative; z-index: 1; }

        /* ========== PROMO SECTION ========== */
        .promo-box {
            background: linear-gradient(135deg, rgba(13, 107, 63, 0.12), rgba(15, 46, 30, 0.8));
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-xl);
            padding: 64px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .promo-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .promo-box::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(13, 107, 63, 0.15), transparent 70%);
            pointer-events: none;
        }

        .promo-box h2 {
            font-size: clamp(24px, 3.5vw, 40px);
            font-weight: 800;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .promo-box h2 .gold { color: var(--gold); }

        .promo-box p {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 540px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        /* ========== STEPS ========== */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 50px;
        }

        .step-card { text-align: center; }

        .step-num {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 22px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--gold), var(--gold-bright));
            color: var(--bg-deep);
            box-shadow: 0 4px 20px rgba(255, 214, 121, 0.2);
        }

        .step-card h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .step-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid rgba(23, 163, 99, 0.1);
            border-radius: var(--radius);
            margin-bottom: 12px;
            background: rgba(15, 46, 30, 0.4);
            overflow: hidden;
            transition: border-color 0.3s;
        }

        .faq-item:hover { border-color: rgba(255, 214, 121, 0.15); }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            color: var(--text-primary);
            padding: 20px 24px;
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

        .faq-question::after {
            content: '+';
            font-size: 22px;
            color: var(--gold);
            transition: transform 0.3s;
            flex-shrink: 0;
        }

        .faq-item.active .faq-question::after { transform: rotate(45deg); }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-item.active .faq-answer { max-height: 300px; }

        .faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        /* ========== CTA ========== */
        .cta-box {
            background: linear-gradient(135deg, rgba(13, 107, 63, 0.18), rgba(255, 214, 121, 0.04), rgba(13, 107, 63, 0.12));
            border: 1px solid rgba(255, 214, 121, 0.12);
            border-radius: var(--radius-xl);
            padding: 64px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before,
        .cta-box::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-box::before {
            top: -120px;
            left: -120px;
            background: radial-gradient(circle, rgba(13, 107, 63, 0.15), transparent 70%);
        }

        .cta-box::after {
            bottom: -120px;
            right: -120px;
            background: radial-gradient(circle, var(--gold-glow), transparent 70%);
        }

        .cta-box h2 {
            font-size: clamp(26px, 4vw, 44px);
            font-weight: 900;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .cta-box h2 .gold { color: var(--gold); }

        .cta-box p {
            font-size: 17px;
            color: var(--text-secondary);
            margin-bottom: 36px;
            position: relative;
            z-index: 1;
        }

        .cta-box .hero-buttons { position: relative; z-index: 1; }

        /* ========== SEO TEXT ========== */
        .seo-text h2 {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .seo-text h3 {
            font-size: 19px;
            font-weight: 700;
            margin: 28px 0 12px;
            color: var(--gold);
        }

        .seo-text p {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .seo-text strong { color: var(--text-primary); }

        /* ========== FOOTER ========== */
        .footer {
            padding: 60px 0 28px;
            border-top: 1px solid rgba(23, 163, 99, 0.08);
            background: var(--bg-primary);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-top: 16px;
            line-height: 1.7;
        }

        .footer-col h4 {
            font-size: 12px;
            font-weight: 700;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }

        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 10px; }

        .footer-col a {
            font-size: 14px;
            color: var(--text-secondary);
            transition: color 0.3s;
        }

        .footer-col a:hover { color: var(--gold); }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom p { font-size: 13px; color: var(--text-muted); }

        .footer-badges {
            display: flex;
            gap: 10px;
        }

        .footer-badge {
            padding: 5px 14px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 700;
            background: rgba(23, 163, 99, 0.08);
            border: 1px solid rgba(23, 163, 99, 0.15);
            color: var(--green-light);
        }

        /* ========== ANIMATIONS ========== */
        .fade-up {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.35s ease, transform 0.35s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========== SCROLLBAR ========== */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-deep); }
        ::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 4px; }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .games-grid { grid-template-columns: repeat(3, 1fr); }
            .bonuses-grid { grid-template-columns: repeat(2, 1fr); }
            .steps-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .header-actions .btn { display: none; }
            .burger-btn { display: flex; }
            .hero {
                align-items: flex-end;
                min-height: 760px;
            }
            .hero-bg {
                background-size: auto 430px;
                background-position: 50% 68px;
                background-repeat: no-repeat;
            }
            .hero-bg::after {
                background:
                    linear-gradient(180deg,
                        rgba(4, 13, 8, 0.1) 0%,
                        rgba(4, 13, 8, 0.24) 38%,
                        rgba(4, 13, 8, 0.78) 62%,
                        var(--bg-deep) 100%),
                    linear-gradient(90deg,
                        rgba(4, 13, 8, 0.62) 0%,
                        rgba(4, 13, 8, 0.18) 52%,
                        rgba(4, 13, 8, 0.48) 100%);
            }
            .hero-content {
                max-width: 100%;
                padding-top: 360px;
                padding-bottom: 52px;
            }
            .hero h1 {
                font-size: clamp(30px, 9vw, 44px);
            }
            .hero-sub {
                max-width: 560px;
            }
            .features-grid { grid-template-columns: 1fr; gap: 14px; }
            .games-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .bonuses-grid { grid-template-columns: 1fr; }
            .steps-grid { grid-template-columns: 1fr; gap: 28px; }
            .promo-box { padding: 40px 24px; }
            .cta-box { padding: 40px 24px; }
            .footer-grid { grid-template-columns: 1fr; gap: 28px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .hero-stats { gap: 28px; }
            .section { padding: 60px 0; }
        }

        @media (max-width: 480px) {
            .hero-buttons { flex-direction: column; align-items: center; }
            .btn-lg { width: 100%; max-width: 320px; }
            .games-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
        }
    

/* cbrand template polish */
:focus-visible {
    outline: 3px solid rgba(255, 214, 121, 0.85);
    outline-offset: 3px;
}

.btn,
.nav-link,
.game-card,
.faq-question,
.burger-btn,
.mobile-nav-close {
    touch-action: manipulation;
}

.cbrand-seo {
    border-top: 1px solid rgba(255, 214, 121, 0.08);
}

.cbrand-seo h2,
.cbrand-seo h3 {
    color: var(--text-primary);
}

.cbrand-seo p,
.cbrand-seo li {
    color: var(--text-secondary);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
