:root {
            --primary: #FFD700;
            --primary-variant: #C5A021;
            --secondary: #1DB954;
            --accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-overlay: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --border-default: #474D57;
            --success: #0ECB81;
            --error: #F6465D;
            --heading-font: 'Hind Siliguri', sans-serif;
            --body-font: 'Roboto', 'Hind Siliguri', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--body-font); line-height: 1.5; -webkit-font-smoothing: antialiased; padding-bottom: 70px; }

        header { background-color: var(--bg-surface); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border-default); }
        header div.logo-area { display: flex; align-items: center; gap: 8px; }
        header img { width: 25px; height: 25px; object-fit: contain; }
        header strong { font-family: var(--heading-font); font-size: 16px; font-weight: 400; color: var(--primary); }
        header div.auth-btns { display: flex; gap: 10px; }
        header button { border: none; padding: 8px 16px; border-radius: 4px; font-weight: 600; cursor: pointer; font-size: 14px; transition: opacity 0.2s; }
        header .login-btn { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        header .register-btn { background: var(--primary); color: var(--bg-main); }

        main { max-width: 800px; margin: 0 auto; width: 100%; }
        .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(135deg, #1a1d24, #2b3139); margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid var(--primary); text-align: center; }
        .jackpot-label { color: var(--primary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; font-weight: 700; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: #fff; text-shadow: 0 0 15px rgba(255, 215, 0, 0.5); font-family: 'Roboto', sans-serif; }

        .intro-card { background: var(--bg-surface); margin: 15px; padding: 20px; border-radius: 12px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 12px; font-family: var(--heading-font); }
        .intro-card p { font-size: 16px; color: var(--text-secondary); text-align: justify; }

        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; font-size: 22px; border-left: 4px solid var(--secondary); margin-left: 15px; font-family: var(--heading-font); }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: transform 0.2s; display: block; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: var(--heading-font); }

        .payment-license { background: var(--bg-overlay); margin: 25px 0; padding: 20px 15px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
        .pl-item { text-align: center; }
        .pl-item i { font-size: 24px; color: var(--primary); margin-bottom: 5px; display: block; }
        .pl-item span { font-size: 10px; color: var(--text-secondary); display: block; }

        .guidelines { padding: 15px; }
        .guide-box { background: var(--bg-surface); padding: 15px; border-radius: 8px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .guide-box h2 { font-size: 18px; color: var(--primary); margin-bottom: 10px; font-family: var(--heading-font); }
        .guide-box p { font-size: 14px; color: var(--text-secondary); text-align: justify; }

        .lottery-ticker { background: #000; margin: 20px 0; padding: 10px 0; overflow: hidden; border-top: 1px solid var(--primary); border-bottom: 1px solid var(--primary); }
        .ticker-wrapper { display: flex; animation: ticker-scroll 40s linear infinite; white-space: nowrap; }
        .ticker-item { padding: 0 25px; color: var(--text-secondary); font-size: 13px; border-right: 1px solid var(--border-default); }
        .ticker-item span { color: var(--success); font-weight: bold; }
        @keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

        .provider-wall { padding: 0 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-tag { background: linear-gradient(45deg, var(--bg-surface), var(--bg-overlay)); padding: 12px; text-align: center; border-radius: 8px; color: var(--primary); font-weight: bold; border: 1px solid var(--border-default); font-size: 14px; }

        .reviews { padding: 0 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; position: relative; border-bottom: 3px solid var(--primary); }
        .rev-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .rev-user i { font-size: 30px; color: var(--text-secondary); }
        .rev-name { font-weight: 600; color: var(--text-primary); }
        .rev-stars { color: var(--primary); font-size: 12px; margin-bottom: 8px; }
        .rev-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .rev-date { font-size: 11px; color: var(--text-secondary); margin-top: 8px; text-align: right; }

        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--text-primary); border-bottom: 1px solid var(--border-default); font-family: var(--heading-font); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); text-align: justify; }

        .security-section { background: var(--bg-surface); margin: 20px 15px; padding: 20px; border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; }
        .security-icons i { font-size: 32px; color: var(--secondary); }
        .age-limit { border: 2px solid var(--error); color: var(--error); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin: 10px auto; }

        .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-default); z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; font-family: var(--heading-font); }

        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); text-align: center; }
        footer .contact-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        footer .contact-links a { color: var(--primary); text-decoration: none; font-size: 14px; font-weight: 500; }
        footer .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        footer .footer-grid a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        footer .copyright { color: var(--text-secondary); font-size: 12px; border-top: 1px solid var(--border-default); padding-top: 20px; }

        @media (min-width: 600px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            footer .footer-grid { grid-template-columns: repeat(5, 1fr); }
        }