:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #1A1A1A;
            --accent: #E63946;
            --bg-base: #0A0A0A;
            --bg-surface: #121212;
            --bg-overlay: #1E1E1E;
            --bg-contrast: #161616;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #666666;
            --on-brand: #000000;
            --border-subtle: #2C2C2C;
            --border-default: #3F3F3F;
            --border-active: #D4AF37;
            --success: #00C853;
            --error: #FF3D00;
            --warning: #FFAB00;
            --info: #2979FF;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-interactive: 'Poppins', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: var(--font-headings); font-weight: 700; color: var(--text-primary); }
        h1 { font-size: 28px; line-height: 1.2; margin-bottom: 16px; }
        h2 { font-size: 24px; margin-bottom: 20px; text-align: center; color: var(--primary); }
        h3 { font-size: 14px; margin-top: 8px; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
        header {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
            height: 60px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: 500; font-family: var(--font-headings); }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-family: var(--font-interactive);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-reg { background: var(--primary); color: var(--on-brand); }
        .btn-reg:hover { background: var(--primary-hover); }
        .banner { width: 100%; display: block; aspect-ratio: 2 / 1; object-fit: cover; cursor: pointer; }
        .jackpot-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
            padding: 30px 16px;
            text-align: center;
            border-bottom: 2px solid var(--primary);
            margin-bottom: 20px;
        }
        .jackpot-title { color: var(--text-secondary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-size: 40px;
            font-weight: 800;
            color: var(--primary);
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
            margin: 10px 0;
            font-family: var(--font-headings);
        }
        .card { background: var(--bg-surface); border-radius: 12px; padding: 24px; border: 1px solid var(--border-subtle); margin-bottom: 20px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
        .game-item { background: var(--bg-overlay); border-radius: 8px; overflow: hidden; display: block; border: 1px solid var(--border-subtle); }
        .game-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-provider { font-size: 11px; color: var(--text-muted); text-transform: uppercase; margin-top: 4px; display: block; }
        .payment-section { text-align: center; padding: 20px 0; }
        .icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 15px; }
        .icon-grid i { font-size: 32px; color: var(--text-secondary); }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .guide-item { padding: 16px; background: var(--bg-contrast); border-radius: 8px; border-left: 3px solid var(--primary); }
        .guide-item h3 { margin-top: 0; margin-bottom: 8px; font-size: 16px; color: var(--primary); }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .marquee-container { background: var(--bg-surface); padding: 15px 0; overflow: hidden; position: relative; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
        .marquee-content { display: flex; gap: 30px; animation: scroll 40s linear infinite; white-space: nowrap; width: max-content; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-pill { background: var(--bg-overlay); padding: 8px 16px; border-radius: 20px; border: 1px solid var(--border-subtle); display: flex; gap: 10px; align-items: center; }
        .winner-pill span:first-child { color: var(--primary); font-weight: bold; }
        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 20px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; font-size: 13px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-subtle); }
        .rev-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .rev-header i { font-size: 30px; color: var(--text-secondary); }
        .stars { color: var(--primary); font-size: 12px; }
        .rev-date { font-size: 11px; color: var(--text-muted); margin-left: auto; }
        .rev-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-section { margin-bottom: 40px; }
        .faq-item { background: var(--bg-surface); border-bottom: 1px solid var(--border-subtle); padding: 15px 0; }
        .faq-q { font-weight: 600; font-size: 15px; color: var(--primary); margin-bottom: 8px; display: block; }
        .faq-a { font-size: 14px; color: var(--text-secondary); }
        .security-footer { text-align: center; padding: 30px 16px; background: var(--bg-surface); border-radius: 12px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--success); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-surface); border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-around; padding: 10px 0; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: var(--text-secondary); gap: 4px; }
        .nav-item i { font-size: 18px; }
        footer { padding: 40px 16px 100px; background: var(--bg-base); border-top: 1px solid var(--border-subtle); }
        .footer-row { margin-bottom: 30px; text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: left; }
        .footer-links a { color: var(--text-muted); font-size: 13px; padding: 5px 0; display: block; }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-contact a { color: var(--primary); font-size: 14px; }
        .copyright { font-size: 12px; color: var(--text-muted); text-align: center; padding-top: 20px; border-top: 1px solid var(--border-subtle); }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines-grid { grid-template-columns: 1fr 1fr; }
            h1 { font-size: 40px; }
            .jackpot-amount { font-size: 64px; }
        }