:root {
            --brand-gold: #D4AF37;
            --brand-gold-bright: #F9E076;
            --brand-emerald: #00A86B;
            --brand-accent: #FFD700;
            --bg-main: #0B0E11;
            --bg-secondary: #151921;
            --bg-tertiary: #1F2630;
            --bg-contrast: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-disabled: #475569;
            --link-color: #D4AF37;
            --link-hover: #F9E076;
            --status-success: #00C853;
            --status-error: #FF5252;
            --border-divisor: #2D3748;
            --border-input: #4A5568;
            --border-focus: #D4AF37;
            --border-interactive: #334155;
            --font-titles: 'Montserrat', 'Inter', system-ui, sans-serif;
            --font-body: 'Inter', 'Segoe UI', Roboto, sans-serif;
            --font-numeric: 'Roboto Mono', monospace;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }
        header {
            background: var(--bg-contrast);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-divisor);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-gold-bright); }
        .header-right { display: flex; gap: 10px; }
        .btn-login {
            background: transparent;
            color: var(--brand-gold);
            border: 1px solid var(--brand-gold);
            padding: 6px 14px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
        }
        .btn-register {
            background: linear-gradient(135deg, var(--brand-gold), #B8860B);
            color: var(--bg-contrast);
            border: none;
            padding: 6px 14px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
        }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: radial-gradient(circle at center, #1F2630, #0B0E11);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--brand-gold);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--brand-gold-bright); font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-family: var(--font-numeric); font-size: 32px; font-weight: 800; color: var(--brand-gold); }
        .platform-intro { padding: 20px; text-align: center; }
        .platform-intro h1 { font-family: var(--font-titles); font-size: 1.5rem; margin-bottom: 12px; color: var(--brand-gold-bright); }
        .platform-intro p { color: var(--text-secondary); font-size: 0.95rem; }
        .section-title { padding: 20px 15px 10px; font-family: var(--font-titles); font-size: 1.25rem; display: flex; align-items: center; gap: 8px; border-left: 4px solid var(--brand-emerald); margin-left: 15px; margin-top: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-secondary); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-interactive); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.96); }
        .game-image-wrapper { aspect-ratio: 1/1; width: 100%; background: var(--bg-tertiary); }
        .game-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.9rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 0.75rem; color: var(--text-secondary); }
        .trust-section { background: var(--bg-secondary); margin: 15px; padding: 20px; border-radius: 15px; }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; justify-items: center; opacity: 0.7; }
        .trust-grid i { font-size: 24px; color: var(--text-secondary); }
        .guidelines { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-card { background: var(--bg-tertiary); padding: 15px; border-radius: 10px; border-left: 2px solid var(--brand-gold); }
        .guide-card h2 { font-size: 1.1rem; color: var(--brand-gold); margin-bottom: 8px; }
        .guide-card p { font-size: 0.875rem; color: var(--text-secondary); }
        .winners-marquee { background: var(--bg-contrast); padding: 10px 0; margin: 20px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid var(--border-divisor); border-bottom: 1px solid var(--border-divisor); }
        .marquee-content { display: inline-block; animation: scroll 30s linear infinite; }
        .winner-item { display: inline-flex; align-items: center; background: var(--bg-tertiary); padding: 5px 15px; border-radius: 20px; margin: 0 10px; border: 1px solid var(--border-interactive); }
        .winner-item span { margin: 0 5px; font-size: 0.85rem; }
        .winner-val { color: var(--status-success); font-weight: 700; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px; text-align: center; color: var(--text-disabled); font-weight: 700; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .provider-tag { background: var(--bg-secondary); padding: 5px 12px; border-radius: 4px; font-size: 0.8rem; }
        .reviews { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-secondary); padding: 15px; border-radius: 12px; border: 1px solid var(--border-interactive); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--brand-gold); }
        .review-user { font-weight: 600; font-size: 0.95rem; }
        .review-stars { color: var(--brand-accent); font-size: 0.8rem; }
        .review-date { font-size: 0.75rem; color: var(--text-disabled); margin-left: auto; }
        .review-text { font-size: 0.875rem; color: var(--text-secondary); font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h2 { font-size: 1rem; color: var(--brand-gold-bright); margin-bottom: 10px; }
        .faq-item p { font-size: 0.875rem; color: var(--text-secondary); }
        .security-section { padding: 20px; text-align: center; background: var(--bg-contrast); border-top: 2px solid var(--brand-emerald); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-emerald); }
        .security-text { font-size: 0.8rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-contrast);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-divisor);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 0.75rem; }
        .nav-item i { font-size: 1.2rem; }
        .nav-item.active, .nav-item:hover { color: var(--brand-gold); }
        footer { background: var(--bg-contrast); padding: 40px 20px 100px; border-top: 1px solid var(--border-divisor); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-social a { color: var(--text-secondary); font-size: 1.2rem; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { font-size: 0.85rem; color: var(--text-secondary); }
        .footer-copy { text-align: center; font-size: 0.75rem; color: var(--text-disabled); border-top: 1px solid var(--border-divisor); padding-top: 20px; }