:root {
            --primary: #D4AF37;
            --secondary: #F9E076;
            --accent: #B8860B;
            --gold-gradient: linear-gradient(180deg, #F9E076 0%, #D4AF37 100%);
            --bg-main: #0B0E11;
            --bg-secondary: #15191E;
            --bg-surface: #1E2329;
            --text-main: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #707A8A;
            --border-light: #2B3139;
            --success: #0ECB81;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: 'Inter', -apple-system, sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary); }
        a { text-decoration: none; color: inherit; }
        header {
            background: var(--bg-secondary);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-light);
        }
        header .logo-box { display: flex; align-items: center; gap: 8px; }
        header .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-box strong { font-size: 16px; font-weight: 500; color: var(--text-main); }
        header .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; cursor: pointer; border: none; font-size: 14px; }
        .btn-login { background: transparent; color: var(--text-main); border: 1px solid var(--border-light); }
        .btn-reg { background: var(--gold-gradient); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 16px; }
        .banner-box { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        .banner-box img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-card {
            background: var(--bg-surface);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 24px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-size: 14px; color: var(--secondary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: var(--primary); font-family: 'Montserrat', sans-serif; }
        .intro-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 24px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .section-header { margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 18px; color: var(--text-main); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; transition: transform 0.2s; border: 1px solid var(--border-light); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-methods { background: var(--bg-secondary); padding: 20px; border-radius: 12px; margin-bottom: 24px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--primary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 11px; color: var(--text-muted); }
        .guide-section { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 10px; }
        .guide-card h3 { font-size: 16px; margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }
        .lottery-box { background: var(--bg-surface); border-radius: 12px; padding: 15px; margin-bottom: 24px; }
        .lottery-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-light); font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { color: var(--secondary); font-weight: 600; }
        .lottery-amount { color: var(--success); font-weight: 700; }
        .providers-wall { display: flex; gap: 10px; margin-bottom: 24px; }
        .provider-btn { flex: 1; padding: 15px; text-align: center; border-radius: 8px; font-weight: bold; background: var(--bg-surface); border: 1px solid var(--primary); color: var(--primary); }
        .review-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-light); }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user i { color: var(--primary); font-size: 20px; }
        .stars { color: #F0B90B; font-size: 12px; }
        .faq-section { margin-bottom: 24px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--secondary); }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-section { background: var(--bg-secondary); padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 24px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-light);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; color: var(--primary); }
        footer { background: var(--bg-main); padding: 30px 16px; border-top: 1px solid var(--border-light); }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-social a { color: var(--primary); font-size: 18px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); font-size: 13px; }
        .footer-copy { text-align: center; font-size: 11px; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--border-light); }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guide-section { grid-template-columns: repeat(2, 1fr); }
            .review-grid { grid-template-columns: repeat(2, 1fr); display: grid; }
        }