:root {
            --primary-gold: #D4AF37;
            --primary-light: #F9E076;
            --primary-dark: #996515;
            --accent-emerald: #008751;
            --bg-main: #0B0E11;
            --bg-surface: #161A1E;
            --bg-card: #1E2329;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #707A8A;
            --brand-highlight: #F0B90B;
            --success: #02C076;
            --error: #F6465D;
            --border-low: #2B2F36;
            --border-active: #D4AF37;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-surface);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-low);
        }
        .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(--primary-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-low); }
        .btn-register { background: var(--primary-gold); color: #000; }
        main { max-width: 600px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 20px; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #1e2329 0%, #0b0e11 100%);
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--primary-light); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Roboto', sans-serif; font-size: 32px; font-weight: 700; color: var(--brand-highlight); }
        .intro-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 20px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 20px; color: var(--primary-gold); margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; color: var(--text-primary); }
        .section-title::before { content: ''; width: 4px; height: 18px; background: var(--primary-gold); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card { background: var(--bg-card); border-radius: 10px; overflow: hidden; text-decoration: none; transition: transform 0.2s; border: 1px solid var(--border-low); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--text-primary); text-align: center; font-weight: 500; }
        .payment-section { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 20px; }
        .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 { display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 16px; color: var(--primary-light); margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .lottery-ticker { background: var(--bg-surface); padding: 10px; border-radius: 8px; height: 200px; overflow: hidden; position: relative; border: 1px solid var(--border-low); }
        .ticker-track { position: absolute; width: 100%; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { top: 100%; } 100% { top: -100%; } }
        .ticker-item { padding: 8px; border-bottom: 1px solid var(--border-low); display: flex; justify-content: space-between; font-size: 12px; }
        .ticker-user { color: var(--primary-gold); }
        .ticker-amount { color: var(--success); font-weight: 700; }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
        .provider-item { background: var(--bg-card); padding: 12px; text-align: center; border-radius: 8px; color: var(--primary-gold); font-weight: 600; font-size: 14px; border: 1px solid var(--border-low); }
        .reviews-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-low); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-info h3 { font-size: 14px; margin: 0; }
        .stars { color: #ffc107; 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: 8px; text-align: right; }
        .faq-section { margin-bottom: 20px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 8px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; color: var(--primary-gold); font-size: 14px; border-bottom: 1px solid var(--border-low); }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
        .security-section { background: var(--bg-card); padding: 20px; border-radius: 12px; text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .badge { font-size: 12px; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .badge i { font-size: 24px; color: var(--accent-emerald); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 600px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-low);
            z-index: 1001;
        }
        .nav-item { text-decoration: none; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary-gold); }
        footer { background: var(--bg-main); padding: 30px 15px 100px; border-top: 1px solid var(--border-low); }
        .footer-contacts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-link { color: var(--text-secondary); text-decoration: none; font-size: 13px; padding: 10px; background: var(--bg-surface); border-radius: 6px; text-align: center; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-column { display: flex; flex-direction: column; gap: 8px; }
        .footer-column a { color: var(--text-muted); text-decoration: none; font-size: 12px; }
        .footer-bottom { text-align: center; font-size: 11px; color: var(--text-muted); border-top: 1px solid var(--border-low); padding-top: 15px; }