:root {
            --primary-bg: #0A0A0B;
            --secondary-bg: #141417;
            --elevated-bg: #1C1C21;
            --overlay: rgba(0, 0, 0, 0.85);
            --gold: #D4AF37;
            --gold-light: #F9E076;
            --gold-dark: #996515;
            --accent-gold: #FFD700;
            --text-primary: #FFFFFF;
            --text-secondary: #A1A1AA;
            --text-muted: #71717A;
            --border-subtle: #27272A;
            --border-default: #3F3F46;
            --jackpot-red: #FF0000;
            --success: #10B981;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--primary-bg);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            -webkit-tap-highlight-color: transparent;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        header {
            background: var(--secondary-bg);
            border-bottom: 1px solid var(--border-subtle);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
        .btn-register { background: var(--gold); color: #000; }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(180deg, #1C1C21 0%, #0A0A0B 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--gold-dark);
        }
        .jackpot-title { color: var(--gold-light); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount {
            font-family: 'Roboto', sans-serif;
            font-size: 40px;
            font-weight: 900;
            color: var(--jackpot-red);
            text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
        }
        .intro-card { margin: 15px; padding: 20px; background: var(--elevated-bg); border-radius: 12px; }
        .intro-card h1 { font-size: 20px; color: var(--gold); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 18px; border-left: 4px solid var(--gold); }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--elevated-bg);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-subtle);
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 14px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 20px 15px;
            background: var(--secondary-bg);
            margin: 20px 0;
        }
        .payment-item { text-align: center; }
        .payment-item i { font-size: 24px; color: var(--gold); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-muted); }
        .guide-section { padding: 15px; }
        .guide-card { background: var(--elevated-bg); padding: 15px; border-radius: 8px; margin-bottom: 10px; }
        .guide-card h2 { font-size: 16px; color: var(--gold-light); margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }
        .winners-list { margin: 15px; background: var(--elevated-bg); border-radius: 12px; overflow: hidden; }
        .winner-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 13px;
        }
        .winner-name { color: var(--gold); }
        .winner-amount { color: var(--success); font-weight: bold; }
        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }
        .provider-tag {
            background: var(--secondary-bg);
            color: var(--text-secondary);
            padding: 10px;
            text-align: center;
            border-radius: 4px;
            font-weight: 600;
            border: 1px solid var(--border-subtle);
        }
        .review-section { padding: 15px; }
        .review-card { background: var(--secondary-bg); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 20px; color: var(--gold); }
        .stars { color: var(--accent-gold); font-size: 12px; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--elevated-bg); margin-bottom: 8px; border-radius: 8px; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; color: var(--gold-light); }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: var(--text-secondary); }
        .security-section {
            padding: 20px 15px;
            background: #000;
            text-align: center;
            border-top: 2px solid var(--gold-dark);
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--gold); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--secondary-bg);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1001;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-muted); font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        footer {
            background: var(--primary-bg);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--border-subtle);
        }
        .footer-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .footer-link { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--border-subtle); }