:root {
            --bg-primary: #0F0F0F;
            --bg-secondary: #1A1A1B;
            --bg-tertiary: #252526;
            --overlay: rgba(0, 0, 0, 0.85);
            --brand-primary: #FFD700;
            --brand-secondary: #DAA520;
            --brand-accent: #FF4500;
            --brand-highlight: #FFFFFF;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --text-on-brand: #000000;
            --border-default: #333333;
            --border-active: #FFD700;
            --font-primary: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Noto Sans Bengali', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 600px; margin: 0 auto; padding: 0 15px; }
        header {
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-default);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 10px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 15px;
        }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; border: 1px solid var(--brand-primary); color: var(--brand-primary); }
        .btn-register { background: var(--brand-primary); color: var(--text-on-brand); }
        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
            margin: 20px 0;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-secondary);
        }
        .jackpot-label { color: var(--brand-primary); font-size: 14px; font-weight: 600; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--brand-highlight);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            font-family: var(--font-secondary);
        }
        .intro-section { padding: 20px 0; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; line-height: 1.25; }
        .intro-section p { color: var(--text-secondary); font-size: 16px; }
        .section-title {
            font-size: 20px;
            color: var(--brand-primary);
            margin: 25px 0 15px;
            padding-left: 10px;
            border-left: 4px solid var(--brand-accent);
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        .game-card {
            background: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: border-color 0.3s;
        }
        .game-card:hover { border-color: var(--brand-primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .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 { display: flex; flex-direction: column; gap: 15px; }
        .article-card {
            display: flex;
            background: var(--bg-secondary);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .article-img { width: 100px; height: 100px; flex-shrink: 0; }
        .article-img img { width: 100%; height: 100%; object-fit: cover; }
        .article-info { padding: 10px; }
        .article-info h3 { font-size: 14px; margin-bottom: 5px; color: var(--brand-primary); }
        .article-info p { font-size: 12px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-section {
            background: var(--bg-tertiary);
            padding: 20px;
            border-radius: 12px;
            margin: 25px 0;
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .payment-item i { font-size: 24px; color: var(--brand-secondary); margin-bottom: 5px; }
        .payment-item span { font-size: 10px; display: block; color: var(--text-muted); }
        .lottery-section { background: var(--bg-secondary); padding: 15px; border-radius: 12px; margin-bottom: 25px; }
        .lottery-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 13px;
        }
        .lottery-row:last-child { border-bottom: none; }
        .lottery-user { color: var(--brand-primary); font-weight: 600; }
        .lottery-win { color: var(--brand-accent); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .provider-block { background: var(--bg-tertiary); padding: 15px; text-align: center; border-radius: 8px; border: 1px solid var(--border-default); font-weight: 600; font-size: 14px; }
        .review-card {
            background: var(--bg-secondary);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border-left: 3px solid var(--brand-primary);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 20px; color: var(--text-muted); }
        .review-stars { color: var(--brand-primary); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); text-align: right; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-secondary); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 15px; color: var(--brand-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section {
            text-align: center;
            padding: 25px 15px;
            background: var(--bg-tertiary);
            border-radius: 12px;
            margin-bottom: 80px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-secondary); }
        .security-text { font-size: 13px; 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 { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item:hover { color: var(--brand-primary); }
        footer { background: var(--bg-primary); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
            text-align: center;
        }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--border-subtle); }