@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');
        :root {
            --brand-primary: #FFD700;
            --brand-secondary: #00A86B;
            --brand-accent: #FF4500;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #0B0E11;
            --bg-surface: #151A21;
            --bg-card: #1E2329;
            --text-primary: #FFFFFF;
            --text-secondary: #EAECEF;
            --text-muted: #848E9C;
            --text-highlight: #FFD700;
            --semantic-success: #02C076;
            --semantic-win: #00FF7F;
            --border-default: #2B3139;
            --border-active: #F0B90B;
        }
        * { 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;
            -webkit-font-smoothing: antialiased;
        }
        header {
            height: 60px;
            background: var(--bg-surface);
            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-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(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: var(--bg-card);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-primary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 28px; font-weight: 700; color: var(--semantic-win); font-family: 'Inter', sans-serif; }
        .intro-section { padding: 20px 15px; }
        .intro-section h1 { font-size: 20px; color: var(--brand-primary); margin-bottom: 12px; line-height: 1.2; }
        .intro-section p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 0 15px; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 18px; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-card { background: var(--bg-card); border-radius: 12px; display: flex; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 10px; flex: 1; }
        .article-content h3 { font-size: 14px; color: var(--brand-primary); margin-bottom: 5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-content p { font-size: 12px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-section { padding: 0 15px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
        .payment-item { background: var(--bg-card); padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 20px; color: var(--brand-primary); margin-bottom: 5px; }
        .payment-item span { font-size: 10px; display: block; color: var(--text-muted); }
        .lottery-scroll { height: 200px; overflow: hidden; background: var(--bg-surface); margin: 0 15px; border-radius: 12px; border: 1px solid var(--border-default); position: relative; }
        .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; align-items: center; }
        .lottery-user { font-size: 13px; color: var(--text-secondary); }
        .lottery-info { text-align: right; }
        .lottery-amount { color: var(--semantic-win); font-weight: 700; font-size: 13px; }
        .lottery-game { font-size: 11px; color: var(--text-muted); }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-block { background: var(--bg-card); padding: 15px; border-radius: 8px; text-align: center; border: 1px solid var(--border-default); font-weight: 600; color: var(--brand-secondary); }
        .review-section { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-card); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .review-name { font-weight: 600; font-size: 14px; }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); margin: 8px 0; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 0 15px; }
        .faq-item { background: var(--bg-card); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-question { font-weight: 600; font-size: 15px; color: var(--brand-primary); margin-bottom: 8px; }
        .faq-answer { font-size: 13px; color: var(--text-secondary); text-align: justify; }
        .security-section { background: var(--bg-surface); margin: 20px 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px dotted var(--text-muted); }
        .security-section i { font-size: 30px; color: var(--semantic-success); margin-bottom: 10px; }
        .security-section h2 { font-size: 16px; margin-bottom: 10px; }
        .security-section p { font-size: 12px; color: var(--text-muted); margin-bottom: 15px; }
        .age-badge { display: inline-block; padding: 4px 12px; border: 2px solid var(--brand-accent); color: var(--brand-accent); border-radius: 20px; font-weight: 700; font-size: 14px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: var(--bg-surface); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1000; padding-bottom: env(safe-area-inset-bottom); }
        .nav-item { text-decoration: none; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        .nav-item.active { color: var(--brand-primary); }
        footer { background: var(--bg-main); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .footer-bottom { text-align: center; border-top: 1px solid var(--border-default); padding-top: 20px; }
        .footer-bottom p { font-size: 12px; color: var(--text-muted); }