:root {
            --primary: #D4AF37;
            --primary-light: #F1D279;
            --primary-dark: #996515;
            --accent: #FFD700;
            --cta: #E63946;
            --bg-main: #0A0B0D;
            --bg-surface: #16181D;
            --bg-elevated: #1F2229;
            --bg-contrast: #1A1C21;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --on-brand: #000000;
            --semantic-win: #FACC15;
            --border-default: #2D3748;
            --border-subtle: #1E293B;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            background: var(--bg-surface);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        .header-logo { display: flex; align-items: center; gap: 8px; }
        .header-logo img { width: 25px; height: 25px; border-radius: 4px; }
        .header-logo strong { font-size: 16px; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; }
        .header-btns { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.2s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--cta); color: white; }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; background: var(--bg-surface); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-main) 100%);
            margin: 16px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--primary-dark);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
        }
        .jackpot-title { font-size: 14px; color: var(--primary-light); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
        .jackpot-amount {
            font-family: 'Oswald', sans-serif;
            font-size: 32px;
            color: var(--semantic-win);
            text-shadow: 0 0 10px rgba(250, 204, 21, 0.5);
        }

        .intro-card { margin: 16px; padding: 20px; background: var(--bg-surface); border-radius: var(--radius); }
        .intro-card h1 { font-size: 1.25rem; color: var(--primary); margin-bottom: 12px; }
        .intro-card p { color: var(--text-secondary); font-size: 0.9rem; }

        .section-title { margin: 24px 16px 12px; font-size: 1.125rem; border-left: 4px solid var(--primary); padding-left: 12px; }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 16px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: transform 0.2s;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.875rem; color: var(--text-primary); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; }

        .trust-section { margin: 24px 16px; background: var(--bg-elevated); padding: 20px; border-radius: var(--radius); text-align: center; }
        .trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; filter: grayscale(1); opacity: 0.7; }
        .trust-grid i { font-size: 24px; color: var(--text-secondary); }

        .guidelines-grid { padding: 0 16px; display: flex; flex-direction: column; gap: 16px; }
        .guide-item { background: var(--bg-contrast); padding: 16px; border-radius: var(--radius); border-left: 2px solid var(--border-default); }
        .guide-item h3 { font-size: 1rem; color: var(--primary-light); margin-bottom: 8px; }
        .guide-item p { font-size: 0.85rem; color: var(--text-secondary); }

        .marquee-container { background: var(--bg-surface); margin: 24px 0; padding: 15px 0; overflow: hidden; position: relative; }
        .marquee-track { display: flex; animation: marquee 40s linear infinite; width: max-content; }
        .win-item { background: var(--bg-elevated); margin: 0 10px; padding: 10px 16px; border-radius: 30px; border: 1px solid var(--border-subtle); display: flex; gap: 12px; align-items: center; white-space: nowrap; }
        .win-user { font-weight: 600; color: var(--primary); }
        .win-amount { color: var(--semantic-win); font-family: 'Oswald', sans-serif; }

        .providers-text { padding: 16px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { background: var(--bg-surface); padding: 6px 12px; border-radius: 4px; font-size: 0.8rem; color: var(--text-muted); border: 1px solid var(--border-subtle); }

        .reviews-grid { padding: 0 16px; display: flex; flex-direction: column; gap: 16px; }
        .review-card { background: var(--bg-surface); padding: 16px; border-radius: var(--radius); border: 1px solid var(--border-subtle); }
        .review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
        .user-meta { display: flex; align-items: center; gap: 10px; }
        .user-meta i { font-size: 24px; color: var(--text-muted); background: var(--bg-elevated); padding: 8px; border-radius: 50%; }
        .stars { color: var(--accent); font-size: 12px; }
        .review-content { font-size: 0.85rem; color: var(--text-secondary); font-style: italic; }

        .faq-section { padding: 0 16px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 12px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-subtle); }
        .faq-question { padding: 16px; font-weight: 600; font-size: 0.95rem; cursor: pointer; color: var(--primary-light); display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 16px 16px; font-size: 0.85rem; color: var(--text-secondary); border-top: 1px solid var(--border-subtle); padding-top: 12px; }

        .security-footer { margin: 24px 16px; padding: 20px; background: var(--bg-elevated); border-radius: var(--radius); text-align: center; }
        .age-badge { display: inline-block; width: 40px; height: 40px; border: 2px solid var(--cta); border-radius: 50%; line-height: 36px; font-weight: 900; color: var(--cta); margin-bottom: 12px; }

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 8px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 2000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 10px; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; color: var(--primary); }

        footer { background: var(--bg-contrast); padding: 30px 16px 20px; text-align: center; border-top: 1px solid var(--border-subtle); }
        .contact-row { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { font-size: 0.8rem; color: var(--text-muted); }
        .copyright { font-size: 0.75rem; color: var(--text-disabled); padding-top: 20px; border-top: 1px solid var(--border-subtle); }

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