:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-tertiary: #262626;
            --brand-primary: #FFD700;
            --brand-secondary: #B8860B;
            --brand-accent: #00E676;
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #A0A0A0;
            --border-default: #333333;
            --border-active: #FFD700;
            --win-color: #00FF00;
        }
        * { 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.5;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-secondary);
            border-bottom: 1px solid var(--border-default);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .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: 400; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 20px;
            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; }
        .hero-banner { width: 100%; cursor: pointer; display: block; line-height: 0; }
        .hero-banner img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(145deg, #1A1A1A, #262626);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-secondary);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 14px; margin-bottom: 5px; text-transform: uppercase; }
        .jackpot-amount { font-size: 28px; font-weight: 700; color: var(--win-color); font-family: 'system-ui'; }
        .section-intro { padding: 20px 15px; text-align: center; }
        .section-intro h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; font-family: 'Tiro Bangla', serif; }
        .section-intro p { font-size: 16px; color: var(--text-secondary); text-align: justify; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card {
            background: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            text-decoration: none;
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-card h3 { padding: 8px; font-size: 14px; color: var(--text-primary); text-align: center; }
        .article-list { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-item {
            display: flex;
            background: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            text-decoration: none;
        }
        .article-image { width: 100px; height: 100px; flex-shrink: 0; }
        .article-image img { width: 100%; height: 100%; object-fit: cover; }
        .article-content { padding: 10px; display: flex; flex-direction: column; justify-content: center; }
        .article-content h3 { font-size: 14px; color: var(--brand-primary); margin-bottom: 5px; }
        .article-content p { font-size: 12px; 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; }
        .payment-item {
            background: var(--bg-tertiary);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
            border: 1px solid var(--border-default);
        }
        .payment-item i { font-size: 20px; color: var(--brand-primary); margin-bottom: 5px; display: block; }
        .lottery-section {
            background: var(--bg-secondary);
            margin: 15px;
            border-radius: 12px;
            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-default);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .user-info { font-size: 14px; color: var(--brand-primary); }
        .win-info { text-align: right; }
        .win-amt { color: var(--win-color); font-weight: 700; font-size: 14px; }
        .win-time { font-size: 11px; color: var(--text-muted); }
        .providers-section { padding: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-block {
            background: var(--bg-tertiary);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            font-weight: 600;
            color: var(--brand-primary);
            border: 1px solid var(--border-default);
        }
        .reviews-section { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card {
            background: var(--bg-secondary);
            padding: 15px;
            border-radius: 12px;
            border-left: 4px solid var(--brand-primary);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .review-name { font-weight: 600; font-size: 14px; }
        .review-rating { color: #FFC107; font-size: 12px; }
        .review-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-secondary); padding: 15px; border-radius: 8px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .responsible-gaming {
            margin: 20px 15px;
            padding: 20px;
            background: rgba(255, 61, 0, 0.05);
            border: 1px solid #FF3D00;
            border-radius: 12px;
            text-align: center;
        }
        .responsible-gaming i { font-size: 30px; color: #FF3D00; margin-bottom: 10px; }
        .responsible-gaming h2 { font-size: 18px; margin-bottom: 10px; }
        .responsible-gaming p { font-size: 13px; color: var(--text-secondary); margin-bottom: 15px; }
        .age-badge { display: inline-block; padding: 5px 10px; border: 2px solid #FF3D00; color: #FF3D00; border-radius: 50%; font-weight: 700; margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-default);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 1000;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-muted); flex: 1; }
        .nav-item i { font-size: 18px; display: block; margin-bottom: 3px; }
        .nav-item span { font-size: 11px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { background: var(--bg-secondary); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }