:root {
            --bg-primary: #0f0f0f;
            --bg-secondary: #1a1a1a;
            --bg-surface: #242424;
            --brand-primary: #ffd700;
            --brand-secondary: #ffab00;
            --brand-cta: #ff0000;
            --text-primary: #ffffff;
            --text-secondary: #b3b3b3;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-display: 'Tiro Bangla', 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;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-secondary);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }
        .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-login, .btn-register {
            padding: 6px 12px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--brand-cta); color: white; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(135deg, #242424 0%, #1a1a1a 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-primary);
        }
        .jackpot-label { color: var(--brand-primary); font-size: 0.9rem; font-weight: bold; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 2rem; color: #ffffff; font-weight: 700; font-family: sans-serif; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-section { padding: 20px 15px; }
        .intro-section h1 { font-family: var(--font-display); font-size: 1.5rem; color: var(--brand-primary); margin-bottom: 12px; }
        .intro-section p { color: var(--text-secondary); font-size: 0.95rem; }
        .section-title { padding: 15px 15px 5px; font-size: 1.25rem; font-weight: 600; color: var(--brand-primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-surface); border-radius: 8px; overflow: hidden; text-decoration: none; border: 1px solid #333; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 8px; font-size: 0.875rem; color: #fff; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-item { display: flex; gap: 12px; background: var(--bg-surface); padding: 10px; border-radius: 10px; text-decoration: none; }
        .article-img { width: 80px; height: 80px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
        .article-info h2 { font-size: 1rem; color: var(--brand-primary); margin-bottom: 4px; }
        .article-info p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.3; }
        .payment-section { padding: 20px 15px; background: var(--bg-secondary); }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 1.5rem; color: var(--brand-primary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 0.7rem; color: var(--text-secondary); }
        .lottery-container { height: 200px; overflow: hidden; background: #111; margin: 15px; border-radius: 10px; border: 1px solid #222; }
        .lottery-scroll { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { padding: 10px 15px; border-bottom: 1px solid #222; display: flex; justify-content: space-between; font-size: 0.85rem; }
        .lottery-name { color: var(--brand-secondary); }
        .lottery-val { color: var(--brand-primary); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-block { background: var(--bg-surface); padding: 15px; border-radius: 8px; text-align: center; border: 1px dotted #444; }
        .review-section { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border-left: 4px solid var(--brand-primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { font-size: 1.2rem; color: var(--brand-primary); }
        .stars { color: #ffab00; font-size: 0.8rem; }
        .review-content { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 5px; }
        .review-date { font-size: 0.75rem; color: var(--text-disabled); }
        .faq-section { padding: 20px 15px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-surface); padding: 15px; border-radius: 8px; }
        .faq-item h3 { font-size: 1rem; color: var(--brand-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 0.9rem; color: var(--text-secondary); }
        .safety-section { padding: 20px 15px; text-align: center; background: #0a0a0a; border-top: 1px solid #333; }
        .safety-icon { font-size: 2rem; color: var(--brand-primary); margin-bottom: 10px; }
        .safety-links a { color: var(--brand-primary); text-decoration: underline; font-size: 0.85rem; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 60px; background: #1a1a1a; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-secondary); }
        .nav-item i { display: block; font-size: 1.2rem; margin-bottom: 2px; }
        .nav-item span { font-size: 0.75rem; }
        .nav-item:nth-child(3) { color: var(--brand-primary); }
        footer { background: #050505; padding: 30px 15px 80px; text-align: center; border-top: 1px solid #222; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; }
        .footer-copy { font-size: 0.8rem; color: #666; }