:root {
            --primary-gold: #D4AF37;
            --secondary-gold: #FFD700;
            --accent-red: #B22222;
            --royal-blue: #1A237E;
            --bg-main: #050505;
            --bg-surface: #121212;
            --bg-elevated: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #9E9E9E;
            --border-subtle: #2C2C2C;
            --border-brand: #D4AF37;
            --success: #00C853;
            --jackpot-color: #FFD700;
        }
        * { 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;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        header {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
            height: 60px;
            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; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; font-family: 'Montserrat', sans-serif; color: var(--primary-gold); }
        .header-right { display: flex; gap: 8px; }
        .btn-login, .btn-register {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-subtle); }
        .btn-register { background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold)); color: #000; }
        .btn-login:active, .btn-register:active { transform: scale(0.95); }
        main { padding-bottom: 80px; }
        .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: radial-gradient(circle at center, #1A237E 0%, #050505 100%);
            padding: 20px 15px;
            text-align: center;
            margin: 15px;
            border-radius: 15px;
            border: 1px solid var(--border-brand);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-family: 'Montserrat', sans-serif; color: var(--primary-gold); font-size: 18px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 800; color: var(--jackpot-color); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { background: var(--bg-surface); margin: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-family: 'Montserrat', sans-serif; font-size: 1.25rem; margin-bottom: 10px; color: var(--primary-gold); }
        .intro-card p { color: var(--text-secondary); font-size: 0.95rem; }
        .section-title { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; margin: 25px 15px 15px; display: flex; align-items: center; gap: 10px; color: var(--primary-gold); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-elevated); border-radius: 12px; overflow: hidden; text-decoration: none; display: block; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 0.85rem; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section { background: var(--bg-surface); margin: 20px 15px; padding: 20px; border-radius: 15px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--primary-gold); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-muted); }
        .guide-container { padding: 0 15px; }
        .guide-item { background: var(--bg-elevated); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-subtle); }
        .guide-item h3 { font-size: 1rem; color: var(--primary-gold); margin-bottom: 8px; }
        .guide-item p { font-size: 0.875rem; color: var(--text-secondary); }
        .winners-section { margin: 25px 15px; background: var(--bg-surface); border-radius: 15px; padding: 15px; overflow: hidden; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); font-size: 0.85rem; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: var(--text-secondary); font-weight: 600; }
        .winner-prize { color: var(--success); font-weight: 700; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-pill { background: var(--bg-elevated); padding: 12px; text-align: center; border-radius: 8px; border: 1px solid var(--border-subtle); color: var(--primary-gold); font-weight: 600; font-size: 0.9rem; }
        .review-card { background: var(--bg-elevated); margin: 15px; padding: 20px; border-radius: 15px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-surface); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-gold); border: 1px solid var(--border-brand); }
        .review-info h3 { font-size: 0.9rem; margin-bottom: 2px; }
        .review-stars { color: var(--secondary-gold); font-size: 12px; }
        .review-content { font-size: 0.875rem; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 0.75rem; color: var(--text-muted); margin-top: 10px; display: block; }
        .faq-section { padding: 0 15px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-surface); border-radius: 12px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary-gold); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 0.875rem; color: var(--text-secondary); }
        .security-section { margin: 25px 15px; padding: 20px; background: linear-gradient(to bottom, #121212, #050505); border-radius: 15px; text-align: center; border: 1px solid var(--accent-red); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent-red); }
        .security-text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--bg-surface); border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-around; align-items: center; z-index: 1000; padding-bottom: env(safe-area-inset-bottom); }
        .nav-item { text-decoration: none; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item:nth-child(3) { color: var(--primary-gold); }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-social a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; border: 1px solid var(--border-subtle); padding: 8px 15px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: center; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; }
        .copyright { text-align: center; font-size: 0.75rem; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--border-subtle); }