@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Noto+Sans+Bengali:wght@300;400;500;600;700&display=swap');
        :root {
            --bg-primary: #0d1117;
            --bg-secondary: #161b22;
            --bg-surface: #21262d;
            --brand-primary: #ffd700;
            --brand-secondary: #00e676;
            --gold-gradient: linear-gradient(180deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
            --text-primary: #ffffff;
            --text-secondary: #b1b8c0;
            --border-subtle: #30363d;
            --font-main: 'Hind Siliguri', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-primary); color: var(--text-primary); font-family: var(--font-main); line-height: 1.5; padding-bottom: 70px; }
        header { background-color: var(--bg-secondary); border-bottom: 1px solid var(--border-subtle); padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; }
        .logo-box { display: flex; align-items: center; gap: 10px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .auth-buttons { display: flex; gap: 8px; }
        .btn { padding: 6px 15px; border-radius: 4px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: #000; padding: 20px; text-align: center; border-y: 2px solid var(--brand-primary); margin: 15px 0; }
        .jackpot-label { color: var(--brand-primary); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
        #jackpot-amount { font-size: 2rem; font-weight: 800; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 2px; }
        .section-padding { padding: 20px 15px; }
        .intro-h1 { font-size: 1.5rem; color: var(--brand-primary); margin-bottom: 15px; text-align: center; }
        .intro-p { font-size: 1rem; color: var(--text-secondary); text-align: justify; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); text-decoration: none; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 0.9rem; color: var(--text-primary); text-align: center; }
        .article-list { display: flex; flex-direction: column; gap: 15px; margin-top: 25px; }
        .article-item { display: flex; gap: 12px; background: var(--bg-secondary); padding: 10px; border-radius: 8px; text-decoration: none; color: inherit; }
        .article-item img { width: 80px; height: 80px; border-radius: 6px; object-fit: cover; }
        .article-content h3 { font-size: 0.95rem; color: var(--brand-primary); margin-bottom: 5px; }
        .article-content p { font-size: 0.8rem; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 20px; text-align: center; }
        .payment-item { background: var(--bg-surface); padding: 10px; border-radius: 8px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .payment-item i { font-size: 1.2rem; color: var(--brand-primary); }
        .payment-item span { font-size: 0.7rem; color: var(--text-secondary); }
        .lottery-wrapper { background: var(--bg-secondary); border-radius: 12px; padding: 15px; margin: 20px 0; border: 1px solid var(--border-subtle); height: 250px; overflow: hidden; position: relative; }
        .lottery-scroll { display: flex; flex-direction: column; gap: 10px; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { display: flex; justify-content: space-between; font-size: 0.85rem; padding-bottom: 8px; border-bottom: 1px solid var(--border-subtle); }
        .lottery-user { color: var(--brand-secondary); }
        .lottery-amount { color: var(--brand-primary); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-card { background: var(--bg-surface); padding: 20px; border-radius: 8px; text-align: center; font-weight: bold; border-left: 4px solid var(--brand-primary); }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 1.5rem; color: var(--text-secondary); }
        .stars { color: var(--brand-primary); font-size: 0.8rem; }
        .faq-item { background: var(--bg-secondary); padding: 15px; border-radius: 8px; margin-bottom: 10px; }
        .faq-item h3 { font-size: 1rem; color: var(--brand-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 0.9rem; color: var(--text-secondary); }
        .responsible-gaming { background: #1a1d24; padding: 20px; border-radius: 12px; text-align: center; border: 1px dashed var(--border-subtle); }
        .responsible-gaming i { font-size: 2rem; color: var(--brand-primary); margin-bottom: 10px; }
        .age-badge { display: inline-block; padding: 5px 10px; border: 2px solid var(--brand-primary); color: var(--brand-primary); border-radius: 50%; font-weight: bold; margin: 10px 0; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-around; padding: 10px 0; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--text-secondary); font-size: 0.75rem; }
        .nav-item i { font-size: 1.2rem; margin-bottom: 4px; }
        .nav-item:nth-child(3) { color: var(--brand-primary); transform: translateY(-10px); background: var(--bg-primary); padding: 10px; border-radius: 50%; border: 1px solid var(--brand-primary); width: 60px; height: 60px; justify-content: center; }
        footer { background: #000; padding: 30px 15px; text-align: center; border-top: 1px solid var(--border-subtle); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; }
        .copyright { font-size: 0.8rem; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 20px; }