:root {
            --bg-primary: #0A0B0C;
            --bg-secondary: #16181D;
            --bg-tertiary: #1F2229;
            --overlay: rgba(0, 0, 0, 0.85);
            --brand-gold: #FFD700;
            --brand-gold-sec: #C5A021;
            --accent-emerald: #00C853;
            --cta-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #65676B;
            --border-default: #2D3035;
            --border-active: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Noto Sans Bengali', sans-serif; font-weight: 700; color: var(--brand-gold); }
        h1 { font-size: 28px; line-height: 1.2; margin: 20px 0; text-align: center; padding: 0 15px; }
        h2 { font-size: 24px; margin-bottom: 15px; padding-left: 10px; border-left: 4px solid var(--brand-gold); }
        h3 { font-size: 18px; margin: 10px 0; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; }
        .container { max-width: 600px; margin: 0 auto; padding: 0 15px; }
        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-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 50%; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--brand-gold); border: 1px solid var(--brand-gold); }
        .btn-register { background: var(--cta-gradient); color: #000; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: var(--bg-tertiary);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 25px;
            border: 1px solid var(--border-default);
        }
        .jackpot-label { color: var(--brand-gold); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount {
            font-family: 'Galada', cursive;
            font-size: 36px;
            color: var(--brand-gold);
            margin: 10px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }
        .intro-section { padding: 10px 0 25px; text-align: center; }
        .intro-section p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 25px; }
        .game-card {
            background: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: 0.3s;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .article-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .article-card {
            display: flex;
            gap: 12px;
            background: var(--bg-secondary);
            padding: 10px;
            border-radius: 10px;
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
        .article-content h3 { font-size: 15px; margin: 0 0 5px 0; line-height: 1.3; color: var(--brand-gold); }
        .article-content p { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }
        .payment-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            background: var(--bg-tertiary);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 30px;
        }
        .payment-item { text-align: center; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--brand-gold); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 10px; display: block; }
        .winner-ticker {
            background: var(--bg-secondary);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 30px;
            border: 1px solid var(--border-default);
            max-height: 300px;
            overflow-y: auto;
        }
        .winner-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-default);
            font-size: 13px;
        }
        .winner-row:last-child { border-bottom: none; }
        .winner-user { color: var(--accent-emerald); font-weight: 600; }
        .winner-prize { color: var(--brand-gold); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 30px; }
        .provider-block {
            background: var(--bg-tertiary);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            color: var(--text-secondary);
            border-bottom: 2px solid var(--brand-gold-sec);
        }
        .review-grid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .review-card {
            background: var(--bg-secondary);
            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: 20px; color: var(--text-muted); }
        .review-user { font-weight: 600; font-size: 14px; }
        .review-stars { color: var(--brand-gold); font-size: 12px; }
        .review-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); text-align: right; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; color: var(--brand-gold); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
        .security-section {
            background: var(--bg-tertiary);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 30px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-icons i { font-size: 30px; color: var(--accent-emerald); }
        .security-text { font-size: 13px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 600px;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item span { font-size: 12px; font-weight: 500; }
        .nav-item:nth-child(3) i { color: var(--brand-gold); font-size: 24px; margin-top: -15px; background: var(--bg-primary); border-radius: 50%; padding: 10px; border: 1px solid var(--brand-gold); }
        footer { background: var(--bg-secondary); padding: 30px 15px 80px; text-align: center; }
        .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); }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 15px; }
        @keyframes jackpotGlow {
            0% { text-shadow: 0 0 5px var(--brand-gold); }
            50% { text-shadow: 0 0 20px var(--brand-gold), 0 0 30px #B8860B; }
            100% { text-shadow: 0 0 5px var(--brand-gold); }
        }
        .jackpot-amount { animation: jackpotGlow 2s infinite; }