:root {
            --primary-gold: #FFD700;
            --primary-gold-hover: #E6C200;
            --secondary-green: #00A859;
            --accent-red: #E91E63;
            --premium-gradient: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-elevated: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #B1B5C4;
            --text-muted: #707A8A;
            --semantic-success: #0ECB81;
            --semantic-jackpot: #FF4500;
            --border-default: #2A2E33;
            --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-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-default); }
        .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-login { padding: 6px 16px; border-radius: 4px; border: 1px solid var(--primary-gold); color: var(--primary-gold); font-size: 14px; cursor: pointer; background: transparent; transition: 0.3s; }
        .btn-register { padding: 6px 16px; border-radius: 4px; background: var(--premium-gradient); color: #000; border: none; font-size: 14px; font-weight: 600; cursor: pointer; transition: 0.3s; }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: #000; border: 2px solid var(--primary-gold); border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; position: relative; overflow: hidden; box-shadow: 0 0 20px 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: 36px; font-weight: 700; color: var(--semantic-jackpot); text-shadow: 0 0 10px rgba(255, 69, 0, 0.5); }
        .intro-card { background: var(--bg-surface); border-radius: 12px; padding: 20px; margin-bottom: 20px; border: 1px solid var(--border-default); }
        .intro-card h1 { font-size: 20px; color: var(--primary-gold); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid var(--primary-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); 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 { font-size: 14px; color: var(--text-primary); padding: 8px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section { background: var(--bg-elevated); border-radius: 12px; padding: 20px; margin-bottom: 25px; }
        .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; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-muted); }
        .guide-section { display: grid; gap: 15px; margin-bottom: 25px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 10px; border-top: 2px solid var(--secondary-green); }
        .guide-card h3 { color: var(--secondary-green); font-size: 16px; margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }
        .lottery-marquee { background: var(--bg-surface); padding: 15px; border-radius: 10px; height: 150px; overflow: hidden; position: relative; border: 1px solid var(--border-default); }
        .lottery-scroll { animation: scrollList 20s linear infinite; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .lottery-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-divider); font-size: 12px; }
        .win-name { color: var(--primary-gold); }
        .win-amount { color: var(--semantic-success); font-weight: 600; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-item { background: var(--premium-gradient); padding: 12px; border-radius: 8px; text-align: center; color: #000; font-weight: 600; font-size: 14px; }
        .reviews-section { display: grid; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-elevated); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary-gold); }
        .review-info h4 { font-size: 14px; }
        .review-stars { color: var(--primary-gold); font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 15px; color: var(--primary-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { background: var(--bg-elevated); padding: 20px; border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; }
        .security-icons .fa-shield-halved { color: var(--semantic-success); }
        .security-icons .fa-lock { color: var(--primary-gold); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-surface); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-default); z-index: 1001; }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-muted); font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item:active { color: var(--primary-gold); }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-divider); padding-top: 15px; }