:root {
            --primary: #FFD700;
            --secondary: #C5A021;
            --accent: #FFCC00;
            --glow: rgba(255, 215, 0, 0.5);
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-card: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #848E9C;
            --success: #0ECB81;
            --error: #F6465D;
            --border-default: #2B3139;
            --font-main: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-main); line-height: 1.5; overflow-x: hidden; }
        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-default); }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-reg { border: none; padding: 6px 16px; border-radius: 4px; font-weight: 600; cursor: pointer; font-size: 14px; 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%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: linear-gradient(180deg, #1E2329 0%, #0B0E11 100%); margin: 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid var(--secondary); box-shadow: 0 0 15px var(--glow); }
        .jackpot-title { color: var(--primary); font-size: 14px; text-transform: uppercase; margin-bottom: 10px; font-weight: 700; letter-spacing: 1px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--primary); font-family: 'Roboto', sans-serif; text-shadow: 0 0 10px var(--glow); }
        .intro-card { background: var(--bg-surface); margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid var(--border-default); }
        .intro-card h1 { font-size: 20px; color: var(--primary); margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-header { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 18px; border-left: 4px solid var(--primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-card); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { color: var(--text-primary); font-size: 14px; padding: 8px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .payment-section { background: var(--bg-surface); padding: 20px 15px; margin-top: 25px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .payment-item i { font-size: 24px; color: var(--text-secondary); }
        .payment-item span { font-size: 10px; color: var(--text-muted); }
        .guidelines { padding: 15px; }
        .guide-item { background: var(--bg-card); border-radius: 8px; padding: 15px; margin-bottom: 12px; }
        .guide-item h2 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .lottery-ticker { background: #161a1e; height: 40px; margin: 20px 0; overflow: hidden; position: relative; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
        .lottery-content { display: flex; white-space: nowrap; position: absolute; animation: marquee 30s linear infinite; align-items: center; height: 100%; }
        .lottery-item { padding: 0 20px; font-size: 12px; color: var(--text-secondary); }
        .lottery-item span { color: var(--success); font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-item { background: var(--bg-surface); border: 1px solid var(--border-default); padding: 12px; border-radius: 8px; text-align: center; color: var(--primary); font-weight: 600; font-size: 14px; }
        .reviews { padding: 0 15px; margin-top: 20px; }
        .review-card { background: var(--bg-card); border-radius: 12px; padding: 15px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user i { font-size: 30px; color: var(--text-muted); }
        .stars { color: var(--primary); font-size: 12px; margin-bottom: 8px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 0 15px; margin-top: 25px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 15px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-section { padding: 25px 15px; text-align: center; background: var(--bg-surface); margin-top: 30px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--secondary); }
        .security-text { font-size: 12px; color: var(--text-muted); max-width: 300px; margin: 0 auto; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 60px; background: var(--bg-surface); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1000; }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }
        footer { background: #07090b; padding: 30px 15px 80px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-social a { color: var(--text-secondary); text-decoration: none; font-size: 14px; background: var(--bg-surface); padding: 8px 12px; border-radius: 20px; border: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: left; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }