@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');
        :root {
            --bg-main: #0B0E11;
            --bg-surface: #151A21;
            --bg-elevated: #1E232B;
            --brand-primary: #F3BA2F;
            --brand-secondary: #C99400;
            --brand-accent: #FFD700;
            --success: #0ECB81;
            --error: #F6465D;
            --warning: #F0B90B;
            --info: #2E8CF0;
            --text-primary: #EAECEF;
            --text-secondary: #929AA5;
            --text-muted: #474D57;
            --text-on-brand: #000000;
            --border-subtle: #2B3139;
            --border-strong: #474D57;
            --border-active: #F3BA2F;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
            height: 60px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 0 16px;
        }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: var(--brand-primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--border-strong); }
        .btn-register { background-color: var(--brand-primary); color: var(--text-on-brand); }
        .hero-banner { width: 100%; cursor: pointer; aspect-ratio: 2 / 1; overflow: hidden; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
            margin: 16px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-primary);
        }
        .jackpot-title { font-size: 14px; color: var(--brand-primary); text-transform: uppercase; margin-bottom: 8px; font-weight: bold; }
        .jackpot-amount {
            font-family: 'Inter', sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: 1px;
        }
        .intro-section { padding: 24px 16px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; line-height: 1.3; }
        .intro-section p { color: var(--text-secondary); font-size: 14px; }
        .section-title { padding: 0 16px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
        .section-title h2 { font-size: 20px; font-weight: 600; }
        .section-title i { color: var(--brand-primary); }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 16px 24px;
        }
        .game-card {
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { padding: 0 16px 24px; }
        .article-card {
            display: flex;
            background-color: var(--bg-surface);
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-info { padding: 12px; flex: 1; }
        .article-info h3 { font-size: 14px; margin-bottom: 4px; color: var(--brand-primary); }
        .article-info p { font-size: 12px; color: var(--text-secondary); line-height: 1.4; }
        .payment-section {
            background-color: var(--bg-surface);
            padding: 24px 16px;
            margin: 24px 0;
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            text-align: center;
        }
        .payment-item i { font-size: 24px; color: var(--text-secondary); margin-bottom: 4px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-muted); }
        .winners-section { padding: 0 16px 24px; }
        .winner-row {
            background-color: var(--bg-elevated);
            padding: 10px 16px;
            border-radius: 8px;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            border-left: 3px solid var(--success);
        }
        .winner-info { display: flex; flex-direction: column; }
        .winner-name { font-weight: bold; color: var(--text-primary); }
        .winner-game { font-size: 11px; color: var(--text-secondary); }
        .winner-amount { color: var(--success); font-weight: bold; }
        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 16px 24px;
        }
        .provider-item {
            background-color: var(--bg-surface);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
        }
        .reviews-section { padding: 0 16px 24px; }
        .review-card {
            background-color: var(--bg-surface);
            padding: 16px;
            border-radius: 12px;
            margin-bottom: 16px;
            border: 1px solid var(--border-subtle);
        }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-header i { font-size: 32px; color: var(--text-muted); }
        .review-user h4 { font-size: 14px; }
        .review-stars { color: var(--brand-primary); font-size: 12px; }
        .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 16px 24px; }
        .faq-item {
            background-color: var(--bg-surface);
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }
        .faq-question { padding: 16px; font-weight: 600; font-size: 14px; color: var(--brand-primary); border-bottom: 1px solid var(--border-subtle); }
        .faq-answer { padding: 16px; font-size: 13px; color: var(--text-secondary); }
        .security-section {
            background-color: var(--bg-elevated);
            padding: 30px 16px;
            text-align: center;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--brand-primary); }
        .security-text { font-size: 12px; color: var(--text-secondary); max-width: 500px; margin: 0 auto 10px; }
        .age-limit { display: inline-block; padding: 4px 8px; border: 1px solid var(--error); color: var(--error); border-radius: 4px; font-weight: bold; margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background-color: var(--bg-surface);
            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; gap: 4px; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { background-color: var(--bg-main); padding: 40px 16px 80px; 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: 12px; color: var(--text-secondary); }
        .footer-bottom { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 20px; }
        @keyframes ticker {
            0% { transform: translateY(0); }
            100% { transform: translateY(-20%); }
        }
        .jackpot-amount span { display: inline-block; animation: pulse 2s infinite ease-in-out; }
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }