:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-surface: #262626;
            --brand-primary: #FFD700;
            --brand-secondary: #FFB800;
            --brand-accent: #00FF41;
            --brand-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #9E9E9E;
            --border-default: #333333;
            --border-active: #FFD700;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-alt: 'Noto Sans Bengali', 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; -webkit-font-smoothing: antialiased; }
        header { position: sticky; top: 0; z-index: 1000; background-color: var(--bg-secondary); border-bottom: 1px solid var(--border-default); padding: 10px 15px; }
        .nav-top { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .logo-box { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--brand-primary); }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .auth-btns { display: flex; gap: 10px; }
        .btn { border: none; padding: 8px 16px; border-radius: 20px; font-weight: 600; cursor: pointer; font-size: 14px; transition: transform 0.2s; }
        .btn-login { background-color: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--brand-gradient); color: #000; }
        .btn:active { transform: scale(0.95); }
        main { max-width: 1200px; margin: 0 auto; padding-bottom: 80px; }
        .hero { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .hero img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: var(--bg-surface); margin: 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid var(--brand-primary); }
        .jackpot-label { color: var(--brand-primary); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; display: block; }
        .jackpot-value { font-size: 2.5rem; font-weight: 800; color: var(--brand-accent); letter-spacing: 2px; text-shadow: 0 0 10px rgba(0,255,65,0.3); }
        .intro-section { padding: 20px 15px; text-align: center; }
        .intro-section h1 { font-size: 1.5rem; color: var(--brand-primary); margin-bottom: 12px; }
        .intro-section p { color: var(--text-secondary); font-size: 1rem; }
        .section-title { padding: 15px; font-size: 1.25rem; color: var(--brand-primary); display: flex; align-items: center; gap: 10px; }
        .grid-container { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px 20px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: border-color 0.3s; }
        .game-card:hover { border-color: var(--brand-primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { color: var(--text-primary); font-size: 0.9rem; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { padding: 0 15px 20px; }
        .article-item { display: flex; gap: 12px; background: var(--bg-secondary); border-radius: 10px; padding: 10px; margin-bottom: 12px; text-decoration: none; border: 1px solid var(--border-subtle); }
        .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-muted); line-height: 1.3; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item { background: var(--bg-surface); aspect-ratio: 1/1; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 1.5rem; color: var(--brand-primary); margin-bottom: 5px; }
        .payment-item span { font-size: 0.7rem; color: var(--text-secondary); }
        .winners-list { background: var(--bg-secondary); margin: 0 15px 20px; border-radius: 12px; padding: 10px; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid var(--border-subtle); font-size: 0.85rem; }
        .winner-name { color: var(--brand-accent); }
        .winner-amount { color: var(--brand-primary); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-item { background: var(--bg-surface); padding: 15px; border-radius: 8px; text-align: center; border: 1px solid var(--border-default); font-weight: 600; color: var(--text-secondary); }
        .review-grid { display: flex; flex-direction: column; gap: 15px; padding: 15px; }
        .review-card { background: var(--bg-surface); border-radius: 12px; padding: 15px; border-left: 4px solid var(--brand-primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 1.2rem; color: var(--brand-primary); }
        .review-name { font-weight: 600; font-size: 0.95rem; }
        .stars { color: var(--brand-secondary); font-size: 0.8rem; }
        .review-body { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 0.75rem; color: var(--text-muted); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-secondary); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 1rem; color: var(--brand-primary); margin-bottom: 10px; }
        .faq-item p { font-size: 0.9rem; color: var(--text-secondary); }
        .security-section { padding: 20px 15px; background: #000; text-align: center; border-top: 1px solid var(--border-default); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 2rem; color: var(--brand-accent); }
        .age-badge { display: inline-block; border: 2px solid #FF1744; color: #FF1744; border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: bold; margin-bottom: 10px; }
        .responsibility-text { font-size: 0.85rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: var(--bg-secondary); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-default); z-index: 1001; }
        .nav-item { text-decoration: none; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; font-size: 0.75rem; }
        .nav-item i { font-size: 1.2rem; margin-bottom: 4px; }
        .nav-item:active { color: var(--brand-primary); }
        footer { background: var(--bg-primary); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; }
        .footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.8rem; border-top: 1px solid var(--border-subtle); padding-top: 20px; }