:root {
            --bg-primary: #0A0B0C;
            --bg-secondary: #141619;
            --bg-elevated: #1C1F24;
            --brand-primary: #FFD700;
            --brand-secondary: #C52026;
            --brand-accent: #00E676;
            --gold-grad: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border-subtle: #2F3336;
            --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;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        .container { padding: 0 16px; }
        header {
            background: var(--bg-secondary);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 6px 16px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--gold-grad); color: #000; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-content: cover; }
        .jackpot-box {
            background: var(--bg-elevated);
            margin: 16px;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #B8860B;
        }
        .jackpot-label { color: var(--brand-primary); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount {
            font-size: 28px;
            font-weight: 700;
            color: #FFFFFF;
            font-family: monospace;
            margin-top: 5px;
            background: linear-gradient(to bottom, #fff, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .intro-section { padding: 20px 16px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; line-height: 1.3; }
        .intro-section p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 16px; font-size: 20px; font-weight: 700; display: flex; align-items: center; gap: 8px; border-left: 4px solid var(--brand-primary); margin: 10px 0; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px; }
        .game-card { background: var(--bg-secondary); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
        .article-card { display: flex; background: var(--bg-secondary); border-radius: 10px; overflow: hidden; gap: 12px; border: 1px solid var(--border-subtle); }
        .article-card img { width: 100px; height: 100px; object-fit: cover; flex-shrink: 0; }
        .article-info { padding: 8px; display: flex; flex-direction: column; justify-content: center; }
        .article-info h2 { font-size: 15px; margin-bottom: 5px; line-height: 1.3; color: var(--brand-primary); }
        .article-info p { font-size: 12px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-section { padding: 16px; background: var(--bg-secondary); margin: 20px 0; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--text-secondary); margin-bottom: 5px; }
        .payment-item span { font-size: 10px; color: var(--text-muted); display: block; }
        .win-records-container { height: 200px; overflow: hidden; background: var(--bg-elevated); margin: 16px; border-radius: 12px; padding: 10px; position: relative; border: 1px solid var(--border-subtle); }
        .win-records-track { display: flex; flex-direction: column; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .win-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-subtle); font-size: 12px; }
        .win-row span:last-child { color: var(--brand-accent); font-weight: 700; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 16px; }
        .provider-block { background: var(--bg-elevated); padding: 15px; text-align: center; border-radius: 8px; font-weight: 700; color: var(--text-secondary); border-bottom: 2px solid var(--brand-primary); }
        .review-section { padding: 16px; }
        .review-card { background: var(--bg-secondary); padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px dotted var(--brand-primary); }
        .review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .user-meta { display: flex; align-items: center; gap: 8px; }
        .user-meta i { color: var(--brand-primary); font-size: 18px; }
        .stars { color: #FFAB00; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-section { padding: 16px; }
        .faq-item { background: var(--bg-elevated); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 12px 15px; font-weight: 600; font-size: 14px; border-bottom: 1px solid var(--border-subtle); color: var(--brand-primary); }
        .faq-answer { padding: 12px 15px; font-size: 13px; color: var(--text-secondary); text-align: justify; }
        .security-section { padding: 20px 16px; text-align: center; background: #000; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--brand-accent); }
        .responsible-text { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 60px; background: var(--bg-secondary); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-subtle); z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 11px; }
        .nav-item:nth-child(3) { margin-top: -30px; background: var(--gold-grad); width: 50px; height: 50px; border-radius: 50%; justify-content: center; color: #000; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
        footer { background: var(--bg-primary); padding: 30px 16px 80px 16px; 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 { font-size: 12px; color: var(--text-secondary); text-align: center; padding: 5px; background: var(--bg-secondary); border-radius: 4px; }
        .footer-bottom { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 15px; }