:root {
            --primary-gold: #D4AF37;
            --primary-gold-glow: #FFD700;
            --brand-dark: #0A0D10;
            --main-bg: #0B0E11;
            --surface-bg: #15191E;
            --card-bg: #1C2127;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --accent-gold: #FFD700;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-num: 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--main-bg);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--brand-dark);
            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 #1E293B;
        }
        .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-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-reg {
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-reg { background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold)); color: #000; }
        main { max-width: 800px; margin: 0 auto; padding: 10px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 12px; margin-bottom: 15px; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: var(--surface-bg);
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { color: var(--primary-gold); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
        .jackpot-amount { font-family: var(--font-num); font-size: 32px; font-weight: 700; color: var(--primary-gold-glow); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { background: var(--card-bg); padding: 20px; border-radius: 12px; margin-bottom: 20px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 22px; color: var(--accent-gold); margin-bottom: 10px; }
        .intro-card p { font-size: 15px; color: var(--text-secondary); text-align: justify; }
        .section-title { font-size: 20px; color: var(--text-primary); margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: var(--primary-gold); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
        .game-card { background: var(--card-bg); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid #1E293B; 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: #fff; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background: var(--surface-bg); padding: 15px; border-radius: 12px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 11px; color: var(--text-secondary); }
        .payment-item i { font-size: 20px; color: var(--primary-gold); }
        .guide-container { display: grid; gap: 15px; }
        .guide-box { background: var(--card-bg); padding: 15px; border-radius: 10px; border: 1px solid #334155; }
        .guide-box h3 { color: var(--accent-gold); font-size: 17px; margin-bottom: 8px; }
        .guide-box p { font-size: 14px; color: var(--text-secondary); }
        .lottery-marquee { background: #161A1E; border-radius: 8px; padding: 10px; overflow: hidden; height: 150px; position: relative; }
        .marquee-content { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #1E293B; font-size: 13px; }
        .lottery-user { color: var(--text-primary); }
        .lottery-win { color: var(--primary-gold-glow); font-weight: 700; font-family: var(--font-num); }
        .provider-wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .provider-item { background: linear-gradient(90deg, #1C2127, #15191E); padding: 12px; border-radius: 6px; text-align: center; color: var(--primary-gold); font-weight: 600; font-size: 14px; border: 1px solid #334155; }
        .review-card { background: var(--surface-bg); padding: 15px; border-radius: 12px; margin-bottom: 15px; border-top: 2px solid var(--primary-gold); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .review-stars { color: #F59E0B; font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--muted); font-family: var(--font-num); }
        .faq-container { display: flex; flex-direction: column; gap: 10px; }
        .faq-item { background: var(--card-bg); padding: 15px; border-radius: 10px; }
        .faq-item h3 { font-size: 16px; color: var(--accent-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .safety-section { background: #0F172A; padding: 20px; border-radius: 12px; text-align: center; border: 1px dashed var(--primary-gold); }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin: 15px 0; font-size: 24px; color: var(--primary-gold); }
        .safety-section p { font-size: 13px; color: var(--text-secondary); }
        .navigator {
            position: fixed; bottom: 0; left: 0; right: 0;
            background: #161A1E; height: 65px;
            display: flex; justify-content: space-around; align-items: center;
            border-top: 1px solid #334155; z-index: 1000;
        }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; width: 20%; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) { color: var(--primary-gold); }
        footer { background: var(--brand-dark); padding: 30px 15px 100px; border-top: 1px solid #1E293B; }
        .footer-contact { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-contact a { background: var(--surface-bg); padding: 10px; border-radius: 6px; color: var(--text-secondary); text-decoration: none; font-size: 13px; text-align: center; border: 1px solid #1E293B; }
        .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-copy { text-align: center; color: var(--muted); font-size: 12px; border-top: 1px solid #1E293B; padding-top: 20px; }