:root {
            --bg-primary: #0A0B0D;
            --bg-secondary: #14171C;
            --bg-surface: #1E2229;
            --brand-gold: #FFD700;
            --brand-secondary-gold: #D4AF37;
            --brand-red: #FF0000;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border-default: #3E444D;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Kalpurush', system-ui, -apple-system, sans-serif;
            font-size: 16px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        header {
            background: var(--bg-secondary);
            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: 10px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-gold); text-transform: uppercase; }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--brand-gold); border: 1px solid var(--brand-gold); }
        .btn-register { background: var(--brand-gold); color: #000; }
        .hero-banner { width: 100%; aspect-ratio: 2 / 1; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(180deg, #1e2229 0%, #0a0b0d 100%);
            padding: 20px;
            text-align: center;
            margin: 15px;
            border-radius: 12px;
            border: 1px solid var(--brand-secondary-gold);
        }
        .jackpot-title { color: var(--brand-gold); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
        #jackpot-amount { font-size: 32px; font-weight: 700; color: var(--text-primary); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-section { padding: 20px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--brand-gold); margin-bottom: 15px; }
        .intro-section p { color: var(--text-secondary); font-size: 14px; }
        .section-title { padding: 0 15px; margin: 20px 0 15px; font-size: 20px; color: var(--brand-gold); border-left: 4px solid var(--brand-red); margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-card { display: flex; background: var(--bg-surface); border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-info { padding: 10px; display: flex; flex-direction: column; justify-content: center; }
        .article-info h2 { font-size: 15px; margin-bottom: 5px; color: var(--brand-gold); }
        .article-info p { font-size: 12px; 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; padding: 15px; background: var(--bg-secondary); margin: 15px; border-radius: 8px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--brand-gold); }
        .payment-item span { font-size: 10px; }
        .win-ticker { background: var(--bg-surface); margin: 15px; border-radius: 8px; height: 200px; overflow: hidden; position: relative; border: 1px solid var(--border-default); }
        .ticker-track { position: absolute; width: 100%; animation: scrollUp 40s linear infinite; }
        .ticker-item { padding: 10px 15px; border-bottom: 1px solid var(--border-default); display: flex; justify-content: space-between; font-size: 13px; }
        .ticker-user { color: var(--brand-gold); }
        .ticker-amount { color: var(--brand-red); font-weight: 700; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-item { background: var(--bg-surface); padding: 15px; text-align: center; border-radius: 8px; border: 1px solid var(--border-default); font-weight: 600; color: var(--brand-gold); }
        .review-list { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-secondary); }
        .review-user-info h4 { font-size: 16px; color: var(--brand-gold); }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; display: block; }
        .faq-section { padding: 0 15px; margin-bottom: 80px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; color: var(--brand-gold); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; }
        .responsible-gaming { padding: 20px; text-align: center; background: var(--bg-secondary); border-top: 2px solid var(--brand-red); }
        .responsible-gaming i { font-size: 40px; color: var(--brand-gold); margin-bottom: 10px; }
        .responsible-gaming p { font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 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: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--brand-gold); }
        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; margin-bottom: 30px; }
        .footer-links a { color: var(--text-secondary); font-size: 14px; text-align: center; }
        .footer-bottom { text-align: center; color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-default); padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .provider-grid { grid-template-columns: repeat(4, 1fr); }
            .hero-banner { aspect-ratio: 3 / 1; }
        }