:root {
            --bg-primary: #05070A;
            --bg-secondary: #0F172A;
            --bg-tertiary: #1E293B;
            --brand-primary: #FACC15;
            --brand-secondary: #EAB308;
            --brand-accent: #FF3E3E;
            --brand-highlight: #22C55E;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --border-default: #334155;
            --border-active: #FACC15;
            --radius: 12px;
        }
        * { 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;
            padding-bottom: 70px;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background: 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);
        }
        .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: normal; color: var(--brand-primary); }
        .header-btns { display: flex; gap: 10px; }
        .btn {
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--brand-primary); color: #000; }
        main { max-width: 600px; margin: 0 auto; }
        .hero { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--brand-secondary);
            box-shadow: 0 0 15px rgba(250, 204, 21, 0.2);
        }
        .jackpot-title { font-size: 14px; color: var(--brand-primary); text-transform: uppercase; margin-bottom: 5px; font-weight: 700; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: var(--brand-highlight); letter-spacing: 1px; }
        .intro-section { padding: 20px 15px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 10px; }
        .intro-section p { font-size: 14px; color: var(--text-secondary); }
        .grid-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px 20px;
        }
        .game-card {
            background: var(--bg-secondary);
            border-radius: var(--radius);
            overflow: hidden;
            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 { font-size: 14px; padding: 10px; text-align: center; color: var(--text-primary); }
        .section-title { padding: 15px; font-size: 20px; color: var(--brand-primary); border-left: 4px solid var(--brand-primary); margin: 10px 15px; background: var(--bg-secondary); border-radius: 0 8px 8px 0; }
        .article-list { padding: 0 15px; }
        .article-item {
            background: var(--bg-secondary);
            border-radius: var(--radius);
            padding: 12px;
            margin-bottom: 12px;
            display: flex;
            gap: 12px;
            border: 1px solid var(--border-default);
        }
        .article-item img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; }
        .article-content h2 { font-size: 16px; margin-bottom: 5px; color: var(--brand-primary); }
        .article-content p { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 15px;
            background: var(--bg-secondary);
            margin: 15px;
            border-radius: var(--radius);
        }
        .payment-item { text-align: center; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--brand-primary); margin-bottom: 5px; display: block; }
        .lottery-container {
            background: var(--bg-secondary);
            margin: 15px;
            border-radius: var(--radius);
            height: 250px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-default);
        }
        .lottery-track {
            display: flex;
            flex-direction: column;
            animation: scrollUp 40s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .lottery-user { font-weight: 600; color: var(--text-primary); font-size: 14px; }
        .lottery-game { color: var(--text-secondary); font-size: 12px; }
        .lottery-win { color: var(--brand-highlight); font-weight: 700; }
        .provider-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }
        .provider-item {
            background: var(--bg-tertiary);
            padding: 20px;
            text-align: center;
            border-radius: var(--radius);
            font-weight: 600;
            color: var(--brand-primary);
            border: 1px solid var(--border-default);
        }
        .review-list { padding: 0 15px; }
        .review-card {
            background: var(--bg-secondary);
            padding: 15px;
            border-radius: var(--radius);
            margin-bottom: 12px;
            border: 1px solid var(--border-default);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-name { font-weight: 600; font-size: 15px; }
        .review-rating { color: var(--brand-primary); font-size: 12px; }
        .review-text { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-secondary); margin-bottom: 10px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; color: var(--brand-primary); cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .safety-section {
            background: var(--bg-tertiary);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--brand-primary); }
        .safety-text { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-secondary);
            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 { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item:hover { color: var(--brand-primary); }
        footer { padding: 30px 15px 100px; text-align: center; background: #000; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); font-size: 14px; }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--bg-tertiary); padding-top: 20px; }