:root {
            --brand-primary: #FFD700;
            --brand-secondary: #00A36C;
            --brand-accent: #D4AF37;
            --bg-deep: #0B0E11;
            --bg-surface: #1E2329;
            --bg-elevated: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #707A8A;
            --semantic-win: #FFD700;
            --border-subtle: #2B3139;
            --grad-gold: linear-gradient(135deg, #FFD700, #B8860B);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-deep);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-surface);
            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-subtle);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 6px 16px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background-color: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--grad-gold); color: #000; }
        main { padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            margin: 20px 15px;
            background: var(--bg-surface);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            border: 1px solid var(--brand-accent);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
        }
        .jackpot-title { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            background: var(--grad-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Inter', sans-serif;
        }
        .intro-card { margin: 20px 15px; padding: 20px; background: var(--bg-surface); border-radius: 12px; }
        .intro-card h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-title { margin: 25px 15px 15px; font-size: 20px; 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-surface);
            border-radius: 8px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .payment-license {
            margin: 20px 15px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
        }
        .pl-item { text-align: center; font-size: 10px; color: var(--text-muted); }
        .pl-item i { display: block; font-size: 20px; color: var(--brand-primary); margin-bottom: 5px; }
        .guidelines { margin: 20px 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 8px; margin-bottom: 10px; }
        .guide-item h2 { font-size: 18px; color: var(--brand-primary); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .lottery-section {
            margin: 20px 15px;
            background: #12161c;
            border-radius: 8px;
            height: 150px;
            overflow: hidden;
            position: relative;
        }
        .lottery-track { animation: marquee 30s linear infinite; }
        @keyframes marquee {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100%); }
        }
        .lottery-item {
            padding: 10px 15px;
            border-bottom: 1px solid #1e2329;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }
        .win-amt { color: var(--semantic-win); font-weight: 600; }
        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 15px;
        }
        .provider-item {
            background: var(--grad-gold);
            padding: 12px;
            text-align: center;
            border-radius: 6px;
            color: #000;
            font-weight: 700;
            font-size: 14px;
        }
        .reviews { padding: 0 15px; }
        .review-card {
            background: var(--bg-elevated);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .rating { color: var(--brand-primary); font-size: 12px; }
        .faq-section { padding: 0 15px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-surface); padding: 15px; border-radius: 8px; }
        .faq-item h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section {
            margin: 20px 15px;
            padding: 20px;
            background: linear-gradient(to bottom, #1e2329, #0b0e11);
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-subtle);
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; color: var(--brand-secondary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-subtle);
            z-index: 1001;
        }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 2px; }
        .nav-item span { font-size: 11px; }
        footer {
            background: var(--bg-surface);
            padding: 30px 15px 100px;
            border-top: 2px solid var(--brand-primary);
        }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { color: var(--brand-primary); text-decoration: none; font-size: 14px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-bottom { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 15px; }