:root {
            --primary-gold: #D4AF37;
            --primary-gold-hover: #F1C40F;
            --secondary-deep-blue: #0A192F;
            --accent-emerald: #00C853;
            --bg-base: #0B0E11;
            --bg-surface: #1E2329;
            --bg-overlay: #2B3139;
            --bg-card: #181A20;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --brand-highlight: #FFD700;
            --border-subtle: #2D333B;
            --border-active: #D4AF37;
            --font-main: 'Hind Siliguri', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-surface);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            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-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: 0.3s;
            text-decoration: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-subtle); }
        .btn-register { background: var(--primary-gold); color: var(--secondary-deep-blue); }
        .btn-register:hover { background: var(--primary-gold-hover); }
        
        .hero-banner { width: 100%; cursor: pointer; display: block; }
        .hero-banner img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }

        .jackpot-container {
            margin: 20px 16px;
            background: linear-gradient(135deg, #1e2329 0%, #0a192f 100%);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-gold);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--primary-gold); font-weight: 700; margin-bottom: 8px; font-size: 14px; text-transform: uppercase; }
        .jackpot-amount { font-size: 28px; font-weight: 800; color: var(--brand-highlight); font-family: 'Roboto', sans-serif; }

        .intro-card { margin: 20px 16px; padding: 20px; background: var(--bg-card); border-radius: 12px; border: 1px solid var(--border-subtle); }
        .intro-card h1 { font-size: 20px; color: var(--primary-gold); margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; text-align: justify; }

        .section-title { margin: 25px 16px 15px; font-size: 18px; font-weight: 700; border-left: 4px solid var(--primary-gold); padding-left: 10px; }
        
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px; }
        .game-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); text-decoration: none; color: inherit; 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-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-primary); }
        .game-provider { font-size: 12px; color: var(--text-secondary); }

        .payment-section { margin: 30px 16px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .payment-item i { font-size: 24px; color: var(--primary-gold); }
        .payment-item span { font-size: 11px; color: var(--text-secondary); }

        .guide-section { margin: 30px 16px; display: flex; flex-direction: column; gap: 15px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; }
        .guide-card h2 { font-size: 16px; color: var(--primary-gold); margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }

        .win-marquee-container { background: var(--bg-surface); margin: 30px 0; padding: 15px 0; border-y: 1px solid var(--border-subtle); overflow: hidden; }
        .win-marquee { display: flex; animation: scroll-marquee 40s linear infinite; gap: 30px; width: max-content; }
        .win-item { display: flex; align-items: center; gap: 10px; white-space: nowrap; font-size: 13px; }
        .win-user { color: var(--accent-emerald); font-weight: 600; }
        .win-amount { color: var(--brand-highlight); font-weight: 700; }
        @keyframes scroll-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { margin: 30px 16px; background: var(--bg-card); padding: 20px; border-radius: 12px; display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; opacity: 0.8; }
        .provider-tag { font-size: 14px; font-weight: 600; color: var(--text-secondary); }

        .review-grid { margin: 30px 16px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-card); padding: 15px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .review-user { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; }
        .review-stars { color: var(--brand-highlight); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-secondary); }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }

        .faq-section { margin: 30px 16px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-surface); border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary-gold); font-size: 14px; border-bottom: 1px solid var(--border-subtle); cursor: pointer; }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

        .security-section { margin: 40px 16px; text-align: center; border-top: 1px solid var(--border-subtle); padding-top: 25px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent-emerald); }
        .age-limit { display: inline-block; border: 2px solid #FF5252; color: #FF5252; border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: 700; font-size: 16px; margin-bottom: 15px; }
        .security-text { font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }

        .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-subtle);
            z-index: 1001;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 10px; }
        .nav-item.active { color: var(--primary-gold); }

        footer { background: var(--bg-base); padding: 30px 16px 100px; text-align: center; border-top: 1px solid var(--border-subtle); }
        .footer-contacts { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contacts a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; transition: color 0.2s; }
        .footer-links a:hover { color: var(--primary-gold); }
        .copyright { font-size: 12px; color: var(--text-secondary); opacity: 0.7; border-top: 1px solid var(--border-subtle); padding-top: 20px; }