:root {
            --primary: #FFD700;
            --primary-hover: #E6C200;
            --secondary: #B8860B;
            --accent: #FF4500;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-overlay: #2B3139;
            --bg-nav: #121212;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #707A8A;
            --text-brand: #FFD700;
            --border-default: #373D48;
            --success: #0ECB81;
            --error: #F6465D;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-alt: 'Inter', sans-serif;
        }
        * { 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; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        header { background-color: var(--bg-nav); 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); }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--text-brand); }
        .header-btns { 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(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--gold-gradient); color: #000; }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container { margin: 20px 15px; background: var(--bg-surface); border-radius: 12px; padding: 20px; text-align: center; border: 1px solid var(--secondary); box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1); }
        .jackpot-label { color: var(--text-brand); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: var(--text-primary); font-family: var(--font-alt); display: flex; justify-content: center; gap: 5px; }

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

        .section-title { margin: 25px 15px 15px; font-size: 20px; display: flex; align-items: center; gap: 10px; color: var(--text-primary); }
        .section-title::before { content: ""; width: 4px; height: 18px; background: var(--primary); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .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-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 20px 15px; background: var(--bg-surface); margin: 20px 0; }
        .pay-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); }
        .pay-item i { font-size: 20px; color: var(--primary); }
        .pay-item span { font-size: 10px; font-weight: 500; }

        .guidelines { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 8px; }
        .guide-item h2 { font-size: 18px; color: var(--text-brand); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .lottery-ticker { margin: 20px 15px; background: var(--bg-overlay); border-radius: 8px; height: 120px; overflow: hidden; position: relative; border: 1px solid var(--border-default); }
        .ticker-wrapper { position: absolute; width: 100%; animation: tickerScroll 15s linear infinite; }
        @keyframes tickerScroll { 0% { top: 100%; } 100% { top: -400%; } }
        .ticker-item { padding: 10px 15px; border-bottom: 1px solid var(--bg-surface); display: flex; justify-content: space-between; font-size: 13px; }
        .ticker-user { color: var(--success); font-weight: 600; }
        .ticker-win { color: var(--primary); font-weight: 700; }

        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; margin-bottom: 20px; }
        .provider-item { background: var(--bg-overlay); padding: 12px; text-align: center; border-radius: 6px; font-weight: 700; color: var(--text-brand); border: 1px solid var(--border-default); }

        .reviews { padding: 0 15px; display: flex; flex-direction: column; gap: 12px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; }
        .rev-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .rev-head i { font-size: 30px; color: var(--text-muted); }
        .rev-name { font-weight: 600; font-size: 15px; }
        .rev-stars { color: var(--primary); font-size: 12px; }
        .rev-content { font-size: 13px; color: var(--text-secondary); margin: 8px 0; }
        .rev-date { font-size: 11px; color: var(--text-muted); }

        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-quest { padding: 15px; font-weight: 600; font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-ans { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

        .security-section { background: #12161c; padding: 30px 15px; text-align: center; border-top: 2px solid var(--primary); }
        .sec-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .sec-icons i { font-size: 24px; color: var(--success); }
        .sec-text { font-size: 13px; color: var(--text-muted); }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 60px; background: var(--bg-nav); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 2000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { font-size: 18px; }

        footer { background: var(--bg-nav); padding: 30px 15px; border-top: 1px solid var(--border-default); color: var(--text-secondary); }
        .footer-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
        .foot-link { font-size: 13px; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-grid a { font-size: 12px; color: var(--text-muted); }
        .copyright { text-align: center; font-size: 11px; border-top: 1px solid var(--border-default); padding-top: 15px; color: var(--text-muted); }