:root {
            --primary: #FFD700;
            --primary-hover: #E6C200;
            --secondary: #D32F2F;
            --accent: #00C853;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #0A0B0D;
            --bg-surface: #161A1E;
            --bg-elevated: #21262C;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #848E9C;
            --border-subtle: #2B3139;
            --border-active: #FFD700;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.6;
            -webkit-tap-highlight-color: transparent;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        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: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 6px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        main { max-width: 100%; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: var(--bg-surface);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--border-subtle);
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }
        .jackpot-title { color: var(--primary); font-size: 18px; margin-bottom: 10px; font-weight: 600; }
        .jackpot-amount { 
            font-size: 32px; 
            font-weight: 700; 
            background: var(--gold-gradient); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
            font-family: 'Roboto', sans-serif;
        }
        .intro-card { padding: 20px; margin: 15px; background: var(--bg-surface); border-radius: var(--radius); border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: var(--primary); }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 18px; color: var(--text-primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 8px; text-align: center; color: var(--text-primary); font-weight: 500; }
        .payment-section { background: var(--bg-elevated); margin: 20px 0; padding: 20px 15px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--text-secondary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-muted); }
        .guides-section { padding: 0 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: var(--radius); margin-bottom: 15px; border: 1px solid var(--border-subtle); }
        .guide-item h3 { color: var(--primary); font-size: 16px; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .lottery-marquee { background: #000; padding: 10px 0; margin: 15px 0; overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: scroll 30s linear infinite; }
        .lottery-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 20px; border-right: 1px solid var(--border-subtle); }
        .lottery-item span { font-size: 12px; }
        .win-amt { color: var(--accent); font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-item { background: var(--bg-elevated); padding: 12px; text-align: center; border-radius: 8px; font-weight: 600; color: var(--primary); border: 1px solid var(--border-subtle); }
        .reviews-section { padding: 0 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: var(--radius); margin-bottom: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-info h4 { font-size: 14px; }
        .stars { color: var(--primary); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 5px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 0 15px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-surface); border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-section { background: var(--bg-elevated); padding: 25px 15px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            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 { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 10px; }
        footer {
            background: var(--bg-main);
            padding: 30px 15px 80px;
            border-top: 1px solid var(--border-subtle);
            text-align: center;
        }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
        .footer-contact a { color: var(--primary); font-size: 14px; border: 1px solid var(--border-subtle); padding: 5px 12px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-muted); font-size: 13px; }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 15px; }