:root {
            --primary: #D4AF37;
            --primary-light: #F9D71C;
            --primary-dark: #AA8A2E;
            --secondary: #0F172A;
            --accent: #E11D48;
            --bg-main: #020617;
            --bg-surface: #0F172A;
            --bg-elevated: #1E293B;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #F8FAFC;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --text-on-brand: #020617;
            --border-default: #334155;
            --border-subtle: #1E293B;
            --success: #22C55E;
            --error: #EF4444;
            --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; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }

        header {
            height: 60px;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-reg { background: var(--primary); color: var(--text-on-brand); }

        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(to bottom, var(--bg-surface), var(--bg-main));
            padding: 20px 15px;
            text-align: center;
        }
        .jackpot-box {
            background: var(--bg-elevated);
            border: 2px solid var(--primary);
            border-radius: var(--radius);
            padding: 15px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { font-size: 14px; color: var(--primary); font-weight: 700; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount {
            font-family: 'JetBrains Mono', monospace;
            font-size: 32px;
            font-weight: 900;
            color: var(--primary-light);
            text-shadow: 0 0 10px rgba(249, 215, 28, 0.5);
        }

        .intro-card { margin: 20px 15px; padding: 25px; background: var(--bg-surface); border-radius: var(--radius); border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 22px; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }

        .section-title { padding: 0 15px; margin-top: 30px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 18px; text-transform: uppercase; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: var(--primary); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-subtle); position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
        .game-provider { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }

        .trust-section { background: var(--bg-surface); margin: 30px 15px; padding: 20px; border-radius: var(--radius); text-align: center; }
        .trust-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 15px; opacity: 0.8; }
        .trust-icons i { font-size: 28px; color: var(--text-secondary); }

        .guidelines-grid { padding: 0 15px; display: grid; gap: 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: var(--radius); }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--primary); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .marquee-container { background: var(--bg-surface); margin: 30px 0; padding: 15px 0; overflow: hidden; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
        .marquee-content { display: flex; gap: 20px; animation: scroll 40s linear infinite; width: max-content; }
        .win-tag { background: var(--bg-elevated); padding: 8px 15px; border-radius: 30px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--border-default); }
        .win-tag .user { font-weight: 700; color: var(--primary); }
        .win-tag .amount { color: var(--success); font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { padding: 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-chip { background: var(--bg-elevated); padding: 6px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; color: var(--text-secondary); border: 1px solid var(--border-subtle); }

        .reviews-container { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: var(--radius); }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-header i { font-size: 32px; color: var(--text-muted); }
        .review-meta h4 { font-size: 15px; }
        .stars { color: #F59E0B; font-size: 12px; }
        .review-body { font-size: 14px; color: var(--text-secondary); }

        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-subtle); }
        .faq-answer { padding: 15px; color: var(--text-secondary); font-size: 14px; }

        .security-section { padding: 25px 15px; background: var(--bg-surface); text-align: center; border-top: 1px solid var(--border-default); }
        .age-badge { display: inline-block; width: 40px; height: 40px; border: 2px solid var(--error); border-radius: 50%; line-height: 36px; font-weight: 900; color: var(--error); margin-bottom: 15px; }
        .security-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 20px; font-size: 13px; color: var(--text-muted); }

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; color: var(--text-primary); }

        footer { background: var(--bg-main); padding: 40px 20px 100px; border-top: 1px solid var(--border-default); }
        .contact-row { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 30px; }
        .contact-link { color: var(--primary); font-size: 14px; border: 1px solid var(--border-default); padding: 8px 15px; border-radius: 20px; }
        .footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; margin-bottom: 30px; }
        .footer-cols a { display: block; font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 20px; }