:root {
            --bg-primary: #0B0E11;
            --bg-secondary: #15191E;
            --bg-tertiary: #1E2329;
            --brand-primary: #FCD535;
            --brand-secondary: #F0B90B;
            --brand-accent: #FFD700;
            --brand-gradient: linear-gradient(180deg, #FCD535 0%, #F0B90B 100%);
            --text-primary: #EAECEF;
            --text-secondary: #929AA5;
            --text-muted: #707A8A;
            --success: #0ECB81;
            --border-default: #2B3139;
            --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;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        .container { padding: 0 16px; width: 100%; max-width: 1200px; margin: 0 auto; }
        header {
            background-color: var(--bg-primary);
            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-default);
        }
        .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: 400; color: var(--brand-primary); }
        .auth-buttons { display: flex; gap: 8px; }
        .btn {
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-reg { background: var(--brand-gradient); color: var(--bg-primary); }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            object-fit: cover;
            cursor: pointer;
        }
        .jackpot-section {
            background: var(--bg-secondary);
            margin: 16px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-primary);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 14px; margin-bottom: 8px; font-weight: 600; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--brand-accent);
            font-variant-numeric: tabular-nums;
        }
        .intro-section { padding: 20px 16px; }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; line-height: 1.2; }
        .intro-section p { font-size: 16px; color: var(--text-secondary); }
        .section-title { font-size: 20px; margin: 24px 16px 16px; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 16px;
        }
        .game-card {
            background: var(--bg-tertiary);
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 8px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
        .article-item {
            display: flex;
            background: var(--bg-secondary);
            border-radius: 8px;
            overflow: hidden;
            gap: 12px;
        }
        .article-item img { width: 100px; height: 100px; object-fit: cover; flex-shrink: 0; }
        .article-info { padding: 8px 8px 8px 0; }
        .article-info h3 { font-size: 16px; margin-bottom: 4px; color: var(--brand-primary); }
        .article-info p { font-size: 12px; color: var(--text-muted); 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: 16px;
        }
        .payment-card {
            background: var(--bg-tertiary);
            padding: 12px 4px;
            border-radius: 8px;
            text-align: center;
            font-size: 10px;
        }
        .payment-card i { font-size: 20px; color: var(--brand-secondary); margin-bottom: 5px; display: block; }
        .winners-scroll {
            background: var(--bg-secondary);
            margin: 16px;
            height: 200px;
            overflow: hidden;
            border-radius: 8px;
            position: relative;
        }
        .winners-track {
            animation: scrollUp 40s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .winner-row {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }
        .winner-name { color: var(--brand-primary); }
        .winner-amount { color: var(--success); font-weight: 600; }
        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 16px;
        }
        .provider-item {
            background: var(--bg-tertiary);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            color: var(--text-secondary);
        }
        .review-card {
            background: var(--bg-secondary);
            margin: 0 16px 16px;
            padding: 16px;
            border-radius: 12px;
            border-bottom: 2px solid var(--brand-primary);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .stars { color: var(--brand-accent); font-size: 12px; }
        .faq-item { margin: 16px; background: var(--bg-tertiary); border-radius: 8px; padding: 16px; }
        .faq-item h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section {
            margin: 16px;
            padding: 20px;
            background: var(--bg-secondary);
            border-radius: 12px;
            text-align: center;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--success); }
        .age-limit { display: inline-block; border: 2px solid #F6465D; color: #F6465D; padding: 2px 8px; border-radius: 50%; font-weight: bold; margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-primary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 12px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { background: var(--bg-secondary); padding: 30px 16px 100px; text-align: center; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
            text-align: left;
        }
        .footer-links a { color: var(--text-muted); font-size: 14px; }
        .footer-bottom { border-top: 1px solid var(--border-default); padding-top: 20px; color: var(--text-muted); font-size: 12px; }