:root {
            --bg-primary: #0A0A0A;
            --bg-secondary: #161616;
            --bg-surface: #1E1E1E;
            --brand-primary: #FFD700;
            --brand-hover: #FFC400;
            --brand-accent: #00FF41;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-brand-gold: #D4AF37;
            --border-default: #2C2C2C;
            --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;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--bg-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-default);
        }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--brand-primary); color: var(--bg-primary); }
        .hero { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, #1e1e1e, #0a0a0a);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--text-brand-gold);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { font-family: var(--font-display); color: var(--brand-primary); font-size: 20px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 30px; font-weight: 700; color: var(--brand-accent); letter-spacing: 2px; }
        .content-section { padding: 20px 15px; }
        h1 { font-family: var(--font-display); font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; }
        h2 { font-family: var(--font-display); font-size: 22px; color: var(--brand-primary); margin: 25px 0 15px; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        p { color: var(--text-secondary); font-size: 16px; margin-bottom: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { display: flex; flex-direction: column; gap: 15px; }
        .article-card { background: var(--bg-surface); border-radius: 10px; display: flex; gap: 10px; padding: 10px; border: 1px solid var(--border-default); }
        .article-card img { width: 100px; height: 70px; object-fit: cover; border-radius: 6px; }
        .article-info h3 { font-size: 14px; color: var(--brand-primary); margin-bottom: 5px; }
        .article-info p { font-size: 12px; margin: 0; line-height: 1.3; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; }
        .payment-item { background: var(--bg-surface); padding: 10px 5px; border-radius: 8px; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 20px; display: block; margin-bottom: 5px; color: var(--brand-primary); }
        .winner-scroll-container { background: var(--bg-surface); height: 250px; overflow: hidden; border-radius: 10px; border: 1px solid var(--border-default); }
        .winner-list { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-item { padding: 12px; border-bottom: 1px solid var(--border-default); display: flex; justify-content: space-between; font-size: 13px; }
        .winner-item span { color: var(--brand-accent); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-block { background: var(--bg-surface); padding: 15px; text-align: center; border-radius: 8px; border: 1px solid var(--border-default); font-weight: 600; color: var(--text-brand-gold); }
        .review-grid { 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: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .review-user { font-weight: 600; font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; border: 1px solid var(--border-default); overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; color: var(--brand-primary); }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .security-box { background: #1a1a1a; padding: 20px; border-radius: 10px; text-align: center; border: 1px solid #333; margin-top: 20px; }
        .age-badge { display: inline-block; width: 40px; height: 40px; border: 2px solid #ff3d00; border-radius: 50%; line-height: 36px; color: #ff3d00; font-weight: bold; margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: var(--bg-secondary); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1000; }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { background: var(--bg-secondary); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; text-align: left; }
        .footer-links a { color: var(--text-secondary); font-size: 13px; transition: color 0.2s; }
        .footer-links a:hover { color: var(--brand-primary); }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }