:root {
            --bg-primary: #0B0E14;
            --bg-secondary: #161B26;
            --bg-surface: #1F2937;
            --brand-primary: #FFD700;
            --brand-variant: #FACC15;
            --brand-secondary: #EF4444;
            --brand-accent: #8B5CF6;
            --text-primary: #FFFFFF;
            --text-secondary: #9CA3AF;
            --text-muted: #6B7280;
            --on-brand: #000000;
            --border-default: #374151;
            --border-active: #FFD700;
        }
        * { 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.6;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-secondary);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-default);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 500; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: opacity 0.2s;
        }
        .btn-login { background-color: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background-color: var(--brand-primary); color: var(--on-brand); }
        .hero { width: 100%; cursor: pointer; }
        .hero img {
            width: 100%;
            aspect-ratio: 2 / 1;
            object-fit: cover;
            display: block;
        }
        .jackpot-section {
            background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
            padding: 20px 15px;
            text-align: center;
            border-bottom: 1px solid var(--border-default);
        }
        .jackpot-label { color: var(--brand-variant); font-size: 14px; font-weight: 600; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--brand-primary);
            font-family: 'Inter', sans-serif;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
        }
        .intro-section { padding: 25px 15px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; line-height: 1.2; }
        .intro-section p { font-size: 15px; color: var(--text-secondary); }
        .section-title {
            padding: 15px;
            font-size: 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-primary);
        }
        .section-title i { color: var(--brand-primary); }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px 25px;
        }
        .game-card {
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
            font-weight: 500;
        }
        .article-list { padding: 0 15px 25px; display: flex; flex-direction: column; gap: 15px; }
        .article-card {
            display: flex;
            background-color: var(--bg-secondary);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            gap: 12px;
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-info { padding: 10px 10px 10px 0; flex: 1; }
        .article-info h2 { font-size: 15px; color: var(--brand-variant); margin-bottom: 5px; line-height: 1.3; }
        .article-info p { font-size: 12px; color: var(--text-secondary); height: 40px; overflow: hidden; }
        .payment-section {
            background-color: var(--bg-surface);
            padding: 20px 15px;
            margin: 20px 15px;
            border-radius: 15px;
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .payment-item i { font-size: 24px; color: var(--brand-primary); }
        .payment-item span { font-size: 10px; color: var(--text-secondary); }
        .lottery-container {
            margin: 20px 15px;
            background-color: var(--bg-secondary);
            border-radius: 12px;
            height: 200px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .lottery-wrapper {
            animation: scrollUp 25s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }
        .lottery-user { color: var(--brand-primary); font-weight: 600; }
        .lottery-win { color: var(--semantic-success); color: #10B981; font-weight: 700; }
        .provider-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 15px 25px;
        }
        .provider-item {
            background-color: var(--bg-surface);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }
        .reviews-section { padding: 0 15px 25px; }
        .review-card {
            background-color: var(--bg-secondary);
            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-avatar { width: 35px; height: 35px; background: var(--bg-surface); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-primary); }
        .review-name { font-weight: 600; font-size: 14px; }
        .review-stars { color: var(--brand-variant); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 0 15px 25px; }
        .faq-item { background-color: var(--bg-secondary); border-radius: 8px; padding: 15px; margin-bottom: 10px; border: 1px solid var(--border-default); }
        .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 {
            padding: 25px 15px;
            text-align: center;
            background-color: var(--bg-surface);
            margin-bottom: 80px;
        }
        .security-icons { font-size: 30px; color: var(--brand-primary); display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-text { font-size: 13px; color: var(--text-secondary); max-width: 300px; margin: 0 auto; }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            gap: 4px;
        }
        .nav-item i { font-size: 18px; }
        .nav-item:nth-child(3) { color: var(--brand-primary); }
        footer {
            background-color: var(--bg-primary);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }