:root {
            --bg-primary: #0B0E11;
            --bg-secondary: #1E2329;
            --bg-surface: #2B3139;
            --brand-primary: #F0B90B;
            --brand-variant: #F8D33A;
            --brand-accent: #FFD700;
            --text-primary: #EAECEF;
            --text-secondary: #929AA5;
            --semantic-success: #0ECB81;
            --border-default: #474D57;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-secondary);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .logo { width: 25px; height: 25px; object-fit: contain; }
        .platform-name { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 6px 16px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            font-family: 'Hind Siliguri', sans-serif;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--brand-primary); color: #121212; }
        
        main { padding-bottom: 80px; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        
        .jackpot-container {
            background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-secondary) 100%);
            margin: 16px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-primary);
        }
        .jackpot-label { color: var(--brand-accent); font-size: 1.125rem; font-weight: 600; margin-bottom: 8px; }
        .jackpot-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--brand-primary);
            font-family: 'Inter', sans-serif;
            text-shadow: 0 0 10px rgba(240, 185, 11, 0.5);
        }

        .section-padding { padding: 24px 16px; }
        h1 { font-size: 1.5rem; color: var(--brand-primary); margin-bottom: 12px; line-height: 1.25; }
        h2 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 16px; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        p { color: var(--text-secondary); margin-bottom: 16px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 {
            padding: 8px;
            font-size: 0.875rem;
            color: var(--text-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .article-list { display: flex; flex-direction: column; gap: 12px; }
        .article-card {
            display: flex;
            background: var(--bg-secondary);
            border-radius: 8px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-info { padding: 12px; flex: 1; }
        .article-info h3 { font-size: 0.95rem; color: var(--text-primary); margin-bottom: 4px; line-height: 1.3; }
        .article-info p { font-size: 0.8rem; color: var(--text-secondary); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 16px; }
        .payment-item {
            background: var(--bg-surface);
            padding: 12px 4px;
            border-radius: 8px;
            text-align: center;
            font-size: 0.75rem;
        }
        .payment-item i { font-size: 1.5rem; color: var(--brand-primary); margin-bottom: 4px; display: block; }

        .winning-records {
            background: var(--bg-secondary);
            border-radius: 12px;
            height: 300px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-default);
        }
        .winning-scroll {
            animation: scrollUp 40s linear infinite;
        }
        .winning-item {
            padding: 12px 16px;
            border-bottom: 1px solid var(--bg-surface);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.875rem;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .provider-item {
            background: var(--bg-surface);
            padding: 16px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            color: var(--brand-variant);
        }

        .review-card {
            background: var(--bg-surface);
            padding: 16px;
            border-radius: 12px;
            margin-bottom: 12px;
            border: 1px solid var(--border-default);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-primary); }
        .stars { color: var(--brand-accent); font-size: 0.75rem; }
        .review-content { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 0.75rem; color: var(--text-disabled); }

        .faq-item { margin-bottom: 16px; background: var(--bg-secondary); border-radius: 8px; padding: 16px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 1rem; color: var(--brand-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 0.9rem; margin: 0; }

        .security-box {
            background: rgba(14, 203, 129, 0.1);
            border: 1px solid var(--semantic-success);
            padding: 16px;
            border-radius: 12px;
            text-align: center;
        }
        .age-badge { display: inline-block; padding: 4px 12px; border: 2px solid var(--semantic-error); color: var(--semantic-error); border-radius: 50%; font-weight: 700; margin-bottom: 12px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 8px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 0.75rem; }
        .nav-item i { font-size: 1.25rem; display: block; margin-bottom: 2px; }
        .nav-item.active { color: var(--brand-primary); }

        footer { background: var(--bg-secondary); padding: 32px 16px 100px; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.875rem; }
        .footer-copy { text-align: center; font-size: 0.8125rem; color: var(--text-secondary); border-top: 1px solid var(--border-default); padding-top: 16px; }