:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9E076;
            --secondary-black: #0B0E11;
            --accent-emerald: #00C853;
            --bg-base: #0B0E11;
            --bg-surface: #1E2329;
            --bg-card: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #707A8A;
            --win-highlight: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        header {
            background: var(--bg-surface);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--bg-card);
        }
        .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 {
            padding: 6px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--text-secondary); }
        .btn-register { background: var(--primary-gold); color: var(--secondary-black); }
        main { padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(180deg, #1A1A1A 0%, #000000 100%);
            padding: 20px;
            text-align: center;
            margin: 15px;
            border-radius: 12px;
            border: 1px solid var(--primary-gold);
        }
        .jackpot-title { color: var(--primary-gold-light); font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount {
            font-family: 'Roboto', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--win-highlight);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        .intro-card { background: var(--bg-surface); margin: 15px; padding: 20px; border-radius: 12px; }
        .intro-card h1 { font-size: 24px; color: var(--primary-gold); margin-bottom: 12px; line-height: 1.25; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; font-size: 20px; border-left: 4px solid var(--primary-gold); margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-card); border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-img-wrapper { aspect-ratio: 1/1; width: 100%; overflow: hidden; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 14px; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 12px; color: var(--text-muted); }
        .payment-section { background: var(--bg-surface); margin: 20px 15px; padding: 20px; border-radius: 12px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--primary-gold); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 11px; color: var(--text-secondary); }
        .guidelines-section { padding: 15px; }
        .guideline-card { background: var(--bg-surface); padding: 15px; border-radius: 10px; margin-bottom: 15px; border-left: 3px solid var(--accent-emerald); }
        .guideline-card h3 { font-size: 18px; color: var(--primary-gold); margin-bottom: 8px; }
        .guideline-card p { font-size: 14px; color: var(--text-secondary); }
        .winners-marquee { background: #12161c; padding: 10px 0; margin: 20px 0; overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: marquee 40s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; background: var(--bg-card); padding: 5px 15px; border-radius: 20px; margin: 0 10px; border: 1px solid #333; }
        .winner-tag span { color: var(--win-highlight); font-weight: bold; margin-left: 5px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .provider-wall { display: flex; wrap: wrap; gap: 10px; padding: 15px; justify-content: center; }
        .provider-tag { background: var(--bg-card); padding: 5px 12px; border-radius: 4px; font-size: 13px; color: var(--text-secondary); border: 1px solid var(--bg-surface); }
        .reviews-section { padding: 0 15px; }
        .review-card { background: var(--bg-card); padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-user { font-weight: 600; font-size: 15px; }
        .review-stars { color: #F0B90B; font-size: 12px; }
        .review-date { font-size: 12px; color: var(--text-muted); margin-left: auto; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary-gold); cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); border-top: 1px solid var(--bg-card); padding-top: 10px; }
        .security-section { background: #000; padding: 25px 15px; text-align: center; margin-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent-emerald); }
        .security-text { font-size: 12px; color: var(--text-muted); max-width: 300px; margin: 0 auto; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: var(--bg-surface); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--bg-card); z-index: 1001; }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        footer { background: var(--secondary-black); padding: 30px 15px 100px; border-top: 1px solid var(--bg-card); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-social a { color: var(--text-secondary); font-size: 14px; text-decoration: none; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); font-size: 13px; text-decoration: none; padding: 5px 0; }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--bg-card); padding-top: 20px; }