:root {
            --primary: #D4AF37;
            --primary-light: #F1C40F;
            --primary-dark: #996515;
            --secondary: #C0C0C0;
            --accent: #FF4D4D;
            --bg-main: #0B0E11;
            --bg-surface: #1E2124;
            --bg-elevated: #2B2F36;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #65676B;
            --gold: #D4AF37;
            --border-default: #3A3B3C;
            --border-active: #D4AF37;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: var(--gold); }
        h1 { font-size: 28px; line-height: 1.25; margin-bottom: 15px; text-align: center; }
        h2 { font-size: 22px; margin: 25px 0 15px; border-left: 4px solid var(--primary); padding-left: 10px; }
        h3 { font-size: 14px; color: var(--text-primary); margin-top: 8px; font-weight: 500; }
        a { text-decoration: none; color: inherit; }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-surface);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-default);
            height: 60px;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--gold); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-reg {
            padding: 6px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
        .btn-reg { background: var(--gold); color: #000; }
        main { padding: 0; max-width: 600px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #1e2124 0%, #0b0e11 100%);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--primary-dark);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
        }
        .jackpot-title { color: var(--text-secondary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-family: 'Lexend', sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: var(--gold);
            margin: 10px 0;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        .intro-section { padding: 20px 15px; background: var(--bg-surface); margin: 15px; border-radius: var(--radius); }
        .intro-section p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card {
            background: var(--bg-elevated);
            border-radius: var(--radius);
            overflow: hidden;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            padding: 20px 15px;
            text-align: center;
        }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .payment-item i { font-size: 24px; color: var(--secondary); }
        .payment-item span { font-size: 10px; color: var(--text-muted); }
        .guides-container { padding: 0 15px; }
        .guide-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: var(--radius);
            margin-bottom: 12px;
        }
        .guide-card h3 { margin-bottom: 8px; color: var(--gold); font-size: 16px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }
        .lottery-marquee {
            background: var(--bg-elevated);
            margin: 20px 0;
            height: 40px;
            overflow: hidden;
            display: flex;
            align-items: center;
            border-top: 1px solid var(--border-default);
            border-bottom: 1px solid var(--border-default);
        }
        .marquee-content { display: flex; animation: marquee 30s linear infinite; white-space: nowrap; }
        .marquee-item { padding: 0 20px; font-size: 13px; color: var(--text-secondary); }
        .marquee-item b { color: var(--gold); }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 15px;
        }
        .provider-block {
            background: var(--bg-surface);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            color: var(--gold);
            border: 1px solid var(--border-default);
        }
        .reviews-container { padding: 0 15px; }
        .review-card {
            background: var(--bg-elevated);
            padding: 15px;
            border-radius: var(--radius);
            margin-bottom: 15px;
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--secondary); }
        .review-name { font-weight: 600; font-size: 14px; }
        .stars { color: #FFAB00; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 5px; }
        .faq-section { padding: 0 15px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--gold); }
        .faq-item p { font-size: 13px; color: var(--text-secondary); text-align: justify; }
        .security-section {
            background: var(--bg-elevated);
            margin: 20px 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
        }
        .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); line-height: 1.6; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 8px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 11px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--gold); }
        footer {
            background: var(--bg-main);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--border-default);
        }
        .footer-contact { text-align: center; margin-bottom: 25px; }
        .footer-contact a { margin: 0 10px; color: var(--gold); font-size: 14px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        .footer-links a { font-size: 13px; color: var(--text-secondary); text-align: center; }
        .footer-copyright {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }