:root {
            --primary: #D4AF37;
            --primary-hover: #F9D71C;
            --secondary: #006400;
            --accent: #FF4D4D;
            --bg-default: #0A0B0D;
            --bg-paper: #161A1E;
            --bg-surface: #21262C;
            --text-primary: #FFFFFF;
            --text-secondary: #9CA3AF;
            --text-gold: #FFD700;
            --border-subtle: #2D333B;
            --border-active: #D4AF37;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-display: 'Galada', cursive;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-default); color: var(--text-primary); font-family: var(--font-main); line-height: 1.5; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            position: sticky; top: 0; z-index: 1000;
            background: var(--bg-paper);
            border-bottom: 1px solid var(--border-subtle);
            padding: 10px 15px;
            display: flex; align-items: center; justify-content: space-between;
        }
        .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(--text-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 4px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-reg { background: var(--primary); color: #000; }
        .btn-reg:hover { background: var(--primary-hover); }

        main { max-width: 800px; margin: 0 auto; padding: 10px; }

        .banner { 
            width: 100%; aspect-ratio: 2 / 1; border-radius: 12px; overflow: hidden; 
            margin-bottom: 20px; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-box {
            background: linear-gradient(135deg, #161A1E 0%, #006400 100%);
            border: 2px solid var(--primary);
            border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px;
            position: relative; overflow: hidden;
        }
        .jackpot-title { font-family: var(--font-display); font-size: 24px; color: var(--text-gold); margin-bottom: 10px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: #fff; letter-spacing: 2px; }

        .intro-card { background: var(--bg-paper); border-radius: 12px; padding: 20px; border-left: 4px solid var(--primary); margin-bottom: 25px; }
        .intro-card h1 { font-size: 22px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { font-size: 15px; color: var(--text-secondary); text-align: justify; }

        .section-header { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; padding-left: 5px; }
        .section-header h2 { font-size: 20px; border-bottom: 2px solid var(--primary); padding-bottom: 2px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; transition: transform 0.2s; border: 1px solid var(--border-subtle); }
        .game-card:active { transform: scale(0.96); }
        .game-card img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
        .game-card h3 { font-size: 14px; padding: 8px; text-align: center; color: var(--text-primary); }

        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; }
        .payment-item { background: var(--bg-paper); padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-subtle); }
        .payment-item i { font-size: 24px; color: var(--primary); margin-bottom: 8px; }
        .payment-item span { display: block; font-size: 12px; color: var(--text-secondary); }

        .guidelines { display: grid; gap: 15px; margin-bottom: 25px; }
        .guide-box { background: var(--bg-surface); padding: 15px; border-radius: 10px; }
        .guide-box h3 { color: var(--text-gold); margin-bottom: 8px; font-size: 18px; }
        .guide-box p { font-size: 14px; color: var(--text-secondary); }

        .win-records { background: var(--bg-paper); border-radius: 10px; padding: 15px; margin-bottom: 25px; border: 1px solid var(--border-subtle); }
        .win-marquee { height: 200px; overflow: hidden; position: relative; }
        .marquee-content { animation: scrollWin 20s linear infinite; }
        .win-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-subtle); font-size: 13px; }
        .win-user { color: var(--primary); }
        .win-amount { color: var(--text-gold); font-weight: bold; }
        @keyframes scrollWin { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

        .providers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .provider-tag { background: linear-gradient(to right, #21262C, #2D333B); padding: 12px; border-radius: 8px; text-align: center; font-weight: bold; color: var(--primary); border: 1px solid var(--border-subtle); }

        .review-grid { display: grid; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; position: relative; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user i { font-size: 20px; color: var(--primary); background: var(--bg-paper); padding: 8px; border-radius: 50%; }
        .stars { color: #FFAB00; font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; text-align: right; }

        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-paper); border-radius: 8px; margin-bottom: 8px; overflow: hidden; border: 1px solid var(--border-subtle); }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }

        .security-section { background: #001a00; border: 1px solid var(--secondary); border-radius: 12px; padding: 20px; margin-bottom: 25px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin: 15px 0; font-size: 30px; color: var(--primary); }
        .security-text { font-size: 13px; color: var(--text-secondary); }
        .age-limit { display: inline-block; border: 2px solid var(--accent); color: var(--accent); border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: bold; margin-top: 10px; }

        .navigator {
            position: fixed; bottom: 0; left: 0; right: 0; height: 65px;
            background: var(--bg-paper); border-top: 2px solid var(--primary);
            display: flex; justify-content: space-around; align-items: center; z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 12px; }
        .nav-item.active { color: var(--primary); }

        footer { background: #050607; padding: 30px 15px 80px; border-top: 1px solid var(--border-subtle); }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contact a { background: var(--bg-surface); padding: 8px 15px; border-radius: 20px; font-size: 13px; border: 1px solid var(--border-subtle); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; border-top: 1px solid var(--border-subtle); padding-top: 20px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); line-height: 1.6; }

        @media (min-width: 800px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .payment-grid { grid-template-columns: repeat(8, 1fr); }
        }