:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-surface: #262626;
            --brand-primary: #FFD700;
            --brand-secondary: #C5A000;
            --brand-accent: #FF4500;
            --grad-gold: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #9E9E9E;
            --border-default: #333333;
            --border-brand: #D4AF37;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-display: 'Li Adorsho Lipi', 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;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; }
        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);
        }
        .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); }
        .header-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: var(--bg-surface); color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-reg { background: var(--grad-gold); color: #000; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-wrap {
            background: var(--bg-secondary);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-brand);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 18px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 700;
            color: var(--brand-primary);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-section { padding: 25px 15px; text-align: center; }
        .intro-section h1 { font-size: 28px; color: var(--brand-primary); margin-bottom: 15px; font-family: var(--font-display); }
        .intro-section p { font-size: 16px; color: var(--text-secondary); max-width: 800px; margin: 0 auto; }
        .section-title { padding: 20px 15px 10px; font-size: 24px; color: var(--brand-primary); 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: 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; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-card {
            background: var(--bg-secondary);
            border-radius: 12px;
            display: flex;
            gap: 12px;
            padding: 10px;
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 100px; height: 100px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
        .article-info h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 5px; }
        .article-info p { font-size: 13px; 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: 15px;
            background: var(--bg-secondary);
            margin: 15px;
            border-radius: 12px;
        }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 12px; color: var(--text-muted); }
        .payment-item i { font-size: 20px; color: var(--brand-primary); }
        .lottery-box {
            margin: 15px;
            background: var(--bg-secondary);
            border-radius: 12px;
            padding: 15px;
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-default);
            font-size: 13px;
        }
        .lottery-user { color: var(--brand-primary); }
        .lottery-win { color: var(--brand-accent); 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: 600; border: 1px solid var(--border-default); }
        .comment-grid { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .comment-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .user-meta { display: flex; align-items: center; gap: 8px; }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .comment-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
        .comment-date { font-size: 12px; color: var(--text-muted); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; color: var(--brand-primary); display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; }
        .security-section { padding: 25px 15px; text-align: center; background: var(--bg-secondary); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-primary); }
        .security-text { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            padding: 20px 15px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .footer-copy { padding: 20px 15px 100px; text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); }
        .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-brand);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-muted); font-size: 12px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: var(--brand-primary); }
        @keyframes countUp {
            from { opacity: 0.8; }
            to { opacity: 1; transform: scale(1.02); }
        }
        .jackpot-amount { animation: countUp 1s infinite alternate; }