:root {
            --bg-primary: #0a0e17;
            --bg-secondary: #161b26;
            --bg-tertiary: #1f2937;
            --brand-primary: #ffbf00;
            --brand-hover: #e6ac00;
            --brand-secondary: #d4af37;
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --border-subtle: #2e374a;
            --gold-grad: linear-gradient(180deg, #ffdf00 0%, #d4af37 100%);
        }
        * { 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-tap-highlight-color: transparent;
        }
        header {
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-subtle);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header button {
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-reg { background: var(--gold-grad); color: #000; }
        main { padding-bottom: 80px; max-width: 800px; margin: 0 auto; }
        .banner-container { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: radial-gradient(circle, #2a3447 0%, #161b26 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid var(--brand-secondary);
            box-shadow: 0 0 15px rgba(255, 191, 0, 0.2);
        }
        .jackpot-title { font-size: 18px; color: var(--brand-primary); margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { font-size: 32px; font-family: 'Galada', cursive; color: #fff; text-shadow: 0 0 10px var(--brand-primary); }
        .intro-card { background: var(--bg-secondary); margin: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid var(--brand-primary); }
        .intro-card h1 { font-size: 22px; margin-bottom: 10px; color: var(--brand-primary); }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { 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-tertiary); border-radius: 12px; overflow: hidden; text-decoration: none; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.96); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 14px; color: #fff; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item { background: var(--bg-secondary); padding: 10px 5px; border-radius: 8px; text-align: center; font-size: 10px; color: var(--text-secondary); border: 1px solid var(--border-subtle); }
        .payment-item i { font-size: 20px; display: block; margin-bottom: 5px; color: var(--brand-primary); }
        .guidelines { padding: 15px; }
        .guide-item { background: var(--bg-secondary); padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .guide-item h3 { color: var(--brand-secondary); margin-bottom: 8px; font-size: 16px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); text-align: justify; }
        .lottery-marquee { background: #000; margin: 15px 0; padding: 10px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid var(--brand-secondary); border-bottom: 1px solid var(--brand-secondary); }
        .marquee-content { display: inline-block; animation: scrollLeft 40s linear infinite; }
        .win-tag { display: inline-block; margin-right: 30px; font-size: 13px; color: #fff; }
        .win-tag span { color: var(--brand-primary); font-weight: bold; }
        @keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 15px; }
        .provider-btn { background: var(--bg-tertiary); padding: 12px; border-radius: 8px; text-align: center; font-weight: bold; color: var(--brand-primary); border: 1px solid var(--border-subtle); }
        .review-section { padding: 15px; display: flex; flex-direction: column; gap: 12px; }
        .review-card { background: var(--bg-secondary); padding: 15px; border-radius: 15px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .review-info h4 { font-size: 14px; color: #fff; }
        .stars { color: #ffcc00; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 5px; display: block; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-tertiary); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; color: var(--brand-primary); border-bottom: 1px solid var(--bg-secondary); display: flex; justify-content: space-between; }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); display: block; line-height: 1.6; }
        .security-section { margin: 15px; padding: 20px; background: #1a2230; border-radius: 15px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #22c55e; }
        .security-text { font-size: 12px; color: var(--text-secondary); }
        .security-text a { color: var(--brand-primary); text-decoration: none; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--bg-secondary); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-subtle); z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item:active { color: var(--brand-primary); }
        footer { background: #05070a; padding: 30px 15px 100px; color: var(--text-secondary); text-align: center; font-size: 13px; }
        footer .contact-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; }
        footer .contact-links a { color: var(--brand-primary); text-decoration: none; font-weight: 600; }
        footer .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        footer .footer-grid a { color: var(--text-secondary); text-decoration: none; font-size: 12px; padding: 5px; }
        footer .copy { border-top: 1px solid var(--border-subtle); padding-top: 20px; line-height: 1.8; }