:root {
            --primary: #FFD700;
            --primary-variant: #FFC107;
            --secondary: #1A1A1A;
            --accent: #00E676;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-elevated: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --semantic-success: #0ECB81;
            --semantic-jackpot: #FF00FF;
            --border-subtle: #363C4E;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-display: 'Galada', cursive;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        header {
            background-color: var(--secondary);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--border-subtle); }
        .btn-register { background-color: var(--primary); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .section-container { padding: 20px 15px; }
        .jackpot-box {
            background: radial-gradient(circle, #2b3139 0%, #0b0e11 100%);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin: 20px 15px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--semantic-jackpot); font-size: 18px; font-weight: bold; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--primary); font-family: 'Inter', sans-serif; }
        .intro-card { background: var(--bg-surface); border-radius: 12px; padding: 20px; margin-bottom: 25px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 20px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-surface); border-radius: 8px; overflow: hidden; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 14px; padding: 8px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .section-title { font-size: 20px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; border-left: 3px solid var(--primary); padding-left: 10px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; }
        .payment-item { background: var(--bg-surface); padding: 10px; border-radius: 8px; text-align: center; border: 1px solid var(--border-subtle); }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); }
        .guidelines { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .lottery-ticker { background: var(--bg-elevated); padding: 10px; border-radius: 8px; overflow: hidden; height: 150px; position: relative; margin-bottom: 25px; }
        .ticker-track { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .ticker-item { padding: 8px 5px; border-bottom: 1px solid var(--border-subtle); font-size: 13px; display: flex; justify-content: space-between; }
        .ticker-user { color: var(--accent); }
        .ticker-win { color: var(--primary); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-item { background: linear-gradient(45deg, #1e2329, #2b3139); padding: 15px; text-align: center; border-radius: 8px; font-weight: bold; color: var(--primary-variant); border: 1px solid var(--border-subtle); }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .review-stars { color: var(--warning); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-secondary); float: right; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-subtle); }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; color: var(--primary); display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
        .security-section { background: #161a1e; padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 25px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin: 15px 0; font-size: 24px; color: var(--semantic-success); }
        .navigator { position: fixed; bottom: 0; width: 100%; background: var(--secondary); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-subtle); z-index: 1000; }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 12px; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        .nav-item:active { color: var(--primary); }
        footer { background: var(--secondary); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-subtle); }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .copyright { font-size: 12px; color: var(--text-secondary); border-top: 1px solid var(--border-subtle); padding-top: 15px; }