:root {
            --primary-gold: #FFD700;
            --primary-gold-light: #FFEC80;
            --primary-gold-dark: #B8860B;
            --accent-red: #FF0000;
            --accent-blue: #1A73E8;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --success: #00C853;
            --border-default: #333333;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-display: 'Galada', cursive;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-reg { background: var(--primary-gold); color: #000; }
        main { max-width: 800px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2 / 1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(145deg, #1a1a1a, #000);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-gold-dark);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { font-family: var(--font-display); color: var(--primary-gold); font-size: 24px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: #fff; text-shadow: 0 0 10px var(--primary-gold); }
        .intro-card { background: var(--bg-surface); margin: 15px; padding: 20px; border-radius: 12px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 20px; color: var(--primary-gold); margin-bottom: 10px; }
        .intro-card p { font-size: 15px; color: var(--text-secondary); }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 20px; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: var(--primary-gold); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 8px; color: var(--text-primary); text-align: center; }
        .payment-section { background: var(--bg-surface); margin: 20px 15px; padding: 15px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
        .payment-item { text-align: center; font-size: 12px; color: var(--text-secondary); }
        .payment-item i { display: block; font-size: 24px; color: var(--primary-gold); margin-bottom: 5px; }
        .guide-section { padding: 0 15px; }
        .guide-card { background: var(--bg-elevated); padding: 15px; border-radius: 10px; margin-bottom: 10px; }
        .guide-card h3 { font-size: 18px; color: var(--primary-gold-light); margin-bottom: 8px; }
        .guide-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .lottery-box { background: #000; margin: 20px 0; padding: 10px 0; overflow: hidden; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
        .lottery-track { display: flex; animation: scroll-track 20s linear infinite; }
        @keyframes scroll-track { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .lottery-item { flex: 0 0 250px; padding: 10px; font-size: 13px; border-right: 1px solid var(--border-default); }
        .lottery-item span { color: var(--success); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 15px; }
        .provider-item { background: var(--bg-surface); padding: 12px; text-align: center; border-radius: 8px; border: 1px solid var(--border-default); font-weight: 600; color: var(--primary-gold); }
        .review-grid { padding: 0 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-secondary); }
        .stars { color: var(--primary-gold); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-secondary); margin-top: 8px; }
        .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(--primary-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { margin: 20px 15px; padding: 15px; background: #111; border-radius: 12px; text-align: center; border: 1px dashed var(--border-default); }
        .security-icons { display: flex; justify-content: center; gap: 20px; font-size: 24px; margin-bottom: 10px; color: var(--primary-gold); }
        .security-text { font-size: 13px; color: var(--text-secondary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: #1a1a1a;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item:active { color: var(--primary-gold); }
        footer {
            background: #050505;
            padding: 30px 15px 100px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        .footer-contact { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 14px; background: var(--bg-surface); padding: 10px; border-radius: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-bottom { font-size: 12px; color: var(--text-secondary); border-top: 1px solid var(--border-default); padding-top: 20px; }