:root {
            --bg-primary: #0A0A0B;
            --bg-secondary: #141417;
            --bg-surface: #1F1F23;
            --brand-primary: #FFD700;
            --brand-cta: #00C853;
            --brand-accent: #E6B800;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --border-default: #333336;
            --win-gold: #FFD700;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: 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: 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 {
            padding: 6px 16px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background-color: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background-color: var(--brand-cta); color: #000; }
        .hero { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .hero img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(180deg, #1F1F23 0%, #0A0A0B 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--win-gold);
        }
        .jackpot-title { color: var(--win-gold); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
        .jackpot-amount {
            font-family: 'Roboto', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #FFFFFF;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-section { padding: 20px; text-align: center; }
        .intro-section h1 { font-size: 1.8rem; margin-bottom: 15px; color: var(--brand-primary); }
        .intro-section p { color: var(--text-secondary); font-size: 0.95rem; }
        .section-title { padding: 15px 20px 5px; font-size: 1.25rem; font-weight: 700; border-left: 4px solid var(--brand-primary); margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card {
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 0.9rem; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-item {
            display: flex;
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .article-item img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 10px; flex: 1; }
        .article-content h3 { font-size: 1rem; margin-bottom: 5px; color: var(--brand-primary); }
        .article-content p { font-size: 0.8rem; 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: 20px;
            background: var(--bg-secondary);
            margin: 15px;
            border-radius: 12px;
        }
        .payment-item { text-align: center; font-size: 0.7rem; color: var(--text-secondary); }
        .payment-item i { font-size: 1.5rem; color: var(--brand-primary); margin-bottom: 5px; display: block; }
        .lottery-box {
            height: 200px;
            overflow: hidden;
            background: var(--bg-surface);
            margin: 15px;
            border-radius: 12px;
            padding: 10px;
            position: relative;
            border: 1px solid var(--border-default);
        }
        .lottery-track {
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100%); }
        }
        .lottery-item {
            padding: 8px 0;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
        }
        .lottery-user { color: var(--brand-primary); }
        .lottery-win { color: var(--brand-cta); font-weight: 700; }
        .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;
            font-weight: 700;
            border: 1px solid var(--border-default);
        }
        .review-list { padding: 15px; }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border-left: 4px solid var(--brand-cta);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 1.5rem; color: var(--text-secondary); }
        .star-rating { color: #FFD700; font-size: 0.8rem; }
        .faq-section { padding: 20px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-surface); border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 1rem; color: var(--brand-primary); margin-bottom: 10px; }
        .faq-item p { font-size: 0.9rem; color: var(--text-secondary); }
        .security-section {
            background: #141417;
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
        }
        .security-icons { font-size: 2rem; margin-bottom: 15px; color: var(--brand-cta); display: flex; justify-content: center; gap: 20px; }
        .navigator {
            position: fixed;
            bottom: 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: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 0.7rem; flex: 1; }
        .nav-item i { font-size: 1.2rem; display: block; margin-bottom: 3px; }
        footer { background: var(--bg-primary); padding: 20px 20px 80px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { font-size: 0.85rem; color: var(--text-secondary); }
        .footer-copy { font-size: 0.8rem; color: var(--text-muted); }