:root {
            --bg-primary: #0B0C10;
            --bg-secondary: #1F2833;
            --bg-surface: #0F161E;
            --brand-primary: #FFD700;
            --brand-secondary: #C5A028;
            --brand-accent: #00FF41;
            --brand-cta: #E2B13C;
            --text-primary: #FFFFFF;
            --text-secondary: #C5C6C7;
            --text-muted: #8892B0;
            --border-default: #45A29E;
            --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;
            -webkit-font-smoothing: antialiased;
        }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-surface);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--bg-secondary);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--brand-cta); color: var(--bg-primary); }
        .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: var(--bg-secondary);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-secondary);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 18px; margin-bottom: 10px; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--brand-accent);
            text-shadow: 0 0 10px rgba(0,255,65,0.5);
        }
        .platform-intro { padding: 20px; text-align: center; }
        .platform-intro h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; }
        .platform-intro p { font-size: 16px; color: var(--text-secondary); }
        .section-title { padding: 15px; font-size: 20px; color: var(--brand-primary); display: flex; align-items: center; gap: 8px; }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px 20px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--bg-secondary);
            text-decoration: none;
            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: 8px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
        }
        .article-list { padding: 0 15px 20px; }
        .article-card {
            display: flex;
            gap: 12px;
            background: var(--bg-surface);
            margin-bottom: 12px;
            padding: 10px;
            border-radius: 10px;
            text-decoration: none;
        }
        .article-card img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; }
        .article-info h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 4px; }
        .article-info p { font-size: 13px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-section {
            background: var(--bg-secondary);
            padding: 20px 15px;
            margin: 20px 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .payment-item i { font-size: 24px; color: var(--brand-primary); margin-bottom: 5px; }
        .payment-item span { font-size: 12px; display: block; color: var(--text-secondary); }
        .winners-section { background: var(--bg-surface); padding: 20px 15px; margin-bottom: 20px; }
        .winner-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--bg-secondary);
            font-size: 14px;
        }
        .winner-name { color: var(--brand-accent); }
        .winner-amount { color: var(--brand-primary); font-weight: bold; }
        .providers-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 0 15px 20px;
        }
        .provider-item {
            background: var(--bg-secondary);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            color: var(--text-secondary);
        }
        .reviews-section { padding: 0 15px 20px; }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border-left: 4px solid var(--brand-primary);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { font-size: 20px; color: var(--text-muted); }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); margin-bottom: 5px; }
        .review-date { font-size: 12px; color: var(--text-muted); }
        .faq-section { padding: 0 15px 30px; }
        .faq-item { background: var(--bg-secondary); border-radius: 8px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .safety-section {
            padding: 20px 15px;
            text-align: center;
            background: var(--bg-surface);
            border-top: 1px solid var(--bg-secondary);
        }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-primary); }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--bg-secondary);
            z-index: 1000;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-muted); }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 12px; }
        footer { padding: 20px 15px 100px; background: var(--bg-primary); text-align: center; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--bg-secondary); padding-top: 15px; }
        @keyframes countUp {
            from { opacity: 0.8; }
            to { opacity: 1; }
        }
        .animate-jackpot { animation: countUp 0.5s infinite alternate; }