:root {
            --primary: #FFD700;
            --primary-hover: #E6C200;
            --secondary: #D32F2F;
            --accent: #FFAB00;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-elevated: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #848E9C;
            --success: #0ECB81;
            --danger: #F6465D;
            --border-default: #2B3139;
            --font-primary: 'Hind Siliguri', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-surface);
            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-default);
        }
        .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(--primary); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background-color: var(--primary); color: #000; }
        .btn-register:hover { background-color: var(--primary-hover); }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, #1e2329 0%, #2b3139 100%);
            border: 2px solid var(--primary);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--primary); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: #fff; text-shadow: 0 0 10px var(--primary); }
        .intro-card { background: var(--bg-surface); border-radius: 12px; padding: 20px; margin-bottom: 20px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 22px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        h2 { font-size: 20px; margin: 20px 0 15px; color: var(--primary); display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; transition: transform 0.2s; border: 1px solid var(--border-default); }
        .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: 8px; font-size: 14px; color: var(--text-primary); text-align: center; font-weight: 500; }
        .payment-section { background: var(--bg-surface); padding: 20px; 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(--text-secondary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-muted); }
        .guide-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .guide-card { background: var(--bg-elevated); padding: 15px; border-radius: 12px; }
        .guide-card h3 { color: var(--primary); margin-bottom: 8px; font-size: 16px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); text-align: justify; }
        .lottery-container { background: var(--bg-surface); border-radius: 12px; height: 200px; overflow: hidden; position: relative; margin-bottom: 20px; border: 1px solid var(--border-default); }
        .lottery-list { position: absolute; width: 100%; animation: scrollUp 40s linear infinite; }
        @keyframes scrollUp { 0% { top: 0; } 100% { top: -1000px; } }
        .lottery-item { padding: 10px 15px; border-bottom: 1px solid var(--border-default); display: flex; justify-content: space-between; font-size: 12px; }
        .lottery-user { color: var(--primary); }
        .lottery-win { color: var(--success); font-weight: bold; }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
        .provider-item { background: var(--bg-elevated); padding: 12px; border-radius: 8px; text-align: center; font-weight: 600; color: var(--accent); border: 1px solid rgba(255,215,0,0.1); }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
        .user-info { display: flex; align-items: center; gap: 8px; }
        .user-info i { color: var(--text-muted); font-size: 20px; }
        .rating { color: var(--primary); font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary); cursor: pointer; border-bottom: 1px solid var(--border-default); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section { background: var(--bg-elevated); padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--success); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .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-default);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }
        .nav-item:active { color: var(--primary); }
        footer { background: var(--bg-main); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-contacts a { color: var(--primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .footer-copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 15px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guide-grid { grid-template-columns: 1fr 1fr; }
        }