@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;900&display=swap');
        :root {
            --bg-primary: #0A0A0B;
            --bg-secondary: #121214;
            --bg-surface: #1E1E21;
            --brand-primary: #FFD700;
            --brand-secondary: #00C853;
            --brand-accent: #FF3D00;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #666666;
            --border-subtle: #2A2A2E;
            --border-active: #FFD700;
            --font-main: 'Hind Siliguri', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-primary); color: var(--text-primary); font-family: var(--font-main); line-height: 1.5; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; }
        header { background: var(--bg-secondary); padding: 12px 16px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; align-items: center; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .header-btns { display: flex; gap: 8px; }
        .btn { padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        .hero { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: var(--bg-surface); margin: 16px; padding: 20px; border-radius: 16px; text-align: center; border: 1px solid var(--brand-primary); }
        .jackpot-title { color: var(--brand-primary); font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { font-size: 32px; font-weight: 900; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: 'Inter', sans-serif; }
        .intro-section { padding: 20px 16px; }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; }
        .intro-section p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 16px; font-size: 20px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: var(--brand-primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px 16px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 8px; font-size: 14px; text-align: center; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { display: flex; flex-direction: column; gap: 12px; padding: 0 16px 16px; }
        .article-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; display: flex; gap: 12px; padding: 10px; border: 1px solid var(--border-subtle); }
        .article-card img { width: 100px; height: 80px; object-fit: cover; border-radius: 8px; }
        .article-info { flex: 1; }
        .article-info h3 { font-size: 14px; margin-bottom: 4px; color: var(--brand-primary); }
        .article-info p { font-size: 12px; color: var(--text-secondary); line-height: 1.3; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 16px; }
        .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(--brand-primary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-secondary); }
        .winners-box { margin: 16px; background: var(--bg-secondary); border-radius: 12px; padding: 10px; max-height: 250px; overflow-y: auto; border: 1px solid var(--border-subtle); }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-subtle); font-size: 13px; }
        .winner-row span:nth-child(2) { color: var(--brand-secondary); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px; }
        .provider-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; text-align: center; font-weight: 600; border: 1px solid var(--border-subtle); color: var(--brand-primary); }
        .review-grid { display: flex; flex-direction: column; gap: 12px; padding: 16px; }
        .review-card { background: var(--bg-surface); padding: 16px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .review-stars { color: var(--brand-primary); font-size: 12px; }
        .faq-section { padding: 16px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; border: 1px solid var(--border-subtle); }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; cursor: pointer; color: var(--brand-primary); }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .safety-section { padding: 20px 16px; text-align: center; background: var(--bg-secondary); }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-secondary); }
        .safety-text { font-size: 12px; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-secondary); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-subtle); z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--text-secondary); }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { padding: 30px 16px 100px; background: var(--bg-primary); border-top: 1px solid var(--border-subtle); }
        .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); text-align: center; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 15px; }
        @keyframes countUp { from { opacity: 0.8; } to { opacity: 1; } }
        .jackpot-amount { animation: countUp 0.5s infinite alternate; }