:root {
            --primary: #FFD700;
            --secondary: #0052FF;
            --accent: #FF4500;
            --bg-main: #0A0B0D;
            --bg-surface: #16181D;
            --bg-overlay: #1F2229;
            --bg-contrast: #121418;
            --text-primary: #FFFFFF;
            --text-secondary: #A0AEC0;
            --text-muted: #718096;
            --border-subtle: #2D3748;
            --success: #00C853;
            --win: #4CAF50;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header {
            background: var(--bg-surface);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            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; }
        .banner { width: 100%; cursor: pointer; aspect-ratio: 2/1; overflow: hidden; }
        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-overlay) 0%, var(--bg-surface) 100%);
            margin: 20px 0;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--primary);
        }
        .jackpot-title { color: var(--primary); font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        #jackpot-amount { font-size: 32px; font-weight: 800; color: var(--primary); font-family: 'Inter', sans-serif; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { background: var(--bg-surface); padding: 25px; border-radius: 15px; margin-bottom: 25px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 15px; line-height: 1.2; }
        .intro-card p { font-size: 16px; color: var(--text-secondary); }
        .section-title { font-size: 20px; margin: 25px 0 15px; color: var(--primary); display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 25px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; transition: 0.3s; border: 1px solid var(--border-subtle); position: relative; }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; }
        .pay-item { background: var(--bg-overlay); padding: 15px 5px; border-radius: 10px; text-align: center; font-size: 12px; border: 1px solid var(--border-subtle); }
        .pay-item i { font-size: 24px; color: var(--primary); margin-bottom: 8px; display: block; }
        .guidelines { display: grid; gap: 15px; margin-bottom: 25px; }
        .guide-box { background: var(--bg-surface); padding: 20px; border-radius: 12px; }
        .guide-box h2 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .guide-box p { font-size: 14px; color: var(--text-secondary); }
        .winners-marquee { background: var(--bg-contrast); padding: 15px; border-radius: 10px; overflow: hidden; position: relative; margin-bottom: 25px; }
        .marquee-content { display: flex; flex-direction: column; animation: scroll-up 20s linear infinite; }
        @keyframes scroll-up { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-item { padding: 8px 0; border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; font-size: 13px; }
        .winner-name { color: var(--text-primary); }
        .winner-amount { color: var(--win); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .provider-item { background: linear-gradient(45deg, var(--bg-overlay), var(--bg-surface)); padding: 15px; border-radius: 8px; text-align: center; font-weight: 700; color: var(--primary); border: 1px solid var(--border-subtle); }
        .reviews { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-user { font-weight: 600; font-size: 15px; }
        .review-stars { color: #FFCC00; font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-q { padding: 15px; cursor: pointer; font-weight: 600; color: var(--primary); display: flex; justify-content: space-between; }
        .faq-a { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; }
        .security-section { background: var(--bg-contrast); padding: 20px; border-radius: 15px; text-align: center; border: 1px dashed var(--text-muted); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin: 15px 0; font-size: 24px; color: var(--primary); }
        .security-text { font-size: 13px; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-surface); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-subtle); z-index: 1000; }
        .nav-item { text-align: center; font-size: 12px; color: var(--text-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        footer { background: var(--bg-contrast); padding: 30px 15px 100px; text-align: center; }
        .footer-contact { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 20px; }
        .contact-link { background: var(--bg-overlay); padding: 10px; border-radius: 5px; font-size: 13px; color: var(--text-secondary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; text-align: left; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); pt: 15px; }