@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Inter:wght@400;700&family=Tiro+Bangla&display=swap');

        :root {
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-overlay: #2B3139;
            --brand-primary: #FCD535;
            --brand-secondary: #F0B90B;
            --accent-gold: #D4AF37;
            --accent-green: #0ECB81;
            --text-primary: #EAECEF;
            --text-secondary: #B7BDC6;
            --text-muted: #848E9C;
            --border-subtle: #2B3139;
            --border-default: #474D57;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-heading: 'Tiro Bangla', serif;
            --font-num: '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; -webkit-tap-highlight-color: transparent; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }

        header { background: var(--bg-surface); 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-subtle); }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .logo-img { width: 25px; height: 25px; }
        .brand-name { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 12px; 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(--brand-primary); color: #000; }

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

        .jackpot-wrap { margin: 15px; background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--accent-gold); text-align: center; }
        .jackpot-label { color: var(--brand-primary); font-size: 14px; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; letter-spacing: 1px; }
        .jackpot-value { font-family: var(--font-num); font-size: 28px; font-weight: 700; color: var(--brand-primary); text-shadow: 0 0 10px rgba(252, 213, 53, 0.5); }

        .intro-section { padding: 20px 15px; text-align: center; }
        h1 { font-family: var(--font-heading); font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; }
        .intro-text { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .section-title { padding: 15px 15px 5px; font-size: 18px; font-weight: 700; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
        .section-title i { color: var(--brand-primary); }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); transition: 0.3s; }
        .game-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 14px; font-weight: 500; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .article-list { padding: 0 15px; display: flex; flex-direction: column; gap: 12px; }
        .article-item { display: flex; background: var(--bg-surface); border-radius: 10px; overflow: hidden; gap: 10px; border: 1px solid var(--border-subtle); }
        .article-img { width: 100px; height: 100px; flex-shrink: 0; }
        .article-img img { width: 100%; height: 100%; object-fit: cover; }
        .article-content { padding: 10px; display: flex; flex-direction: column; justify-content: center; }
        .article-content h3 { font-size: 14px; margin-bottom: 5px; color: var(--brand-primary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-content p { font-size: 12px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        .payment-section { padding: 20px 15px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
        .payment-item { background: var(--bg-surface); height: 50px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid var(--border-subtle); color: var(--text-secondary); }
        .payment-item i { font-size: 18px; color: var(--brand-primary); margin-bottom: 2px; }
        .payment-item span { font-size: 9px; font-weight: 500; }

        .lottery-container { background: var(--bg-surface); margin: 15px; border-radius: 12px; height: 250px; overflow: hidden; border: 1px solid var(--border-subtle); position: relative; }
        .lottery-scroll { position: absolute; width: 100%; animation: scrollUp 40s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { padding: 12px 15px; border-bottom: 1px solid var(--bg-overlay); display: flex; justify-content: space-between; align-items: center; }
        .lottery-user { font-size: 13px; font-weight: 600; color: var(--text-primary); }
        .lottery-game { font-size: 12px; color: var(--accent-green); }
        .lottery-win { font-family: var(--font-num); color: var(--brand-primary); font-weight: 700; font-size: 13px; }

        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-block { background: var(--bg-overlay); height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-weight: 700; color: var(--text-secondary); border: 1px solid var(--border-default); }

        .reviews-section { padding: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-overlay); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-primary); }
        .review-info h4 { font-size: 14px; }
        .review-stars { color: var(--brand-primary); font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); }

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

        .security-section { padding: 20px 15px; text-align: center; background: var(--bg-surface); border-top: 2px solid var(--brand-primary); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent-green); }
        .age-limit { display: inline-block; border: 2px solid #F6465D; color: #F6465D; border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: 700; margin-bottom: 10px; }
        .security-text { font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }
        .security-links a { color: var(--brand-primary); font-size: 12px; margin: 0 5px; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-surface); height: 60px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-subtle); z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); font-size: 11px; transition: 0.3s; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active, .nav-item:active { color: var(--brand-primary); }

        footer { background: var(--bg-main); padding: 30px 15px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .footer-bottom { text-align: center; border-top: 1px solid var(--border-subtle); padding-top: 20px; font-size: 12px; color: var(--text-muted); }