:root {
            --primary: #FFD700;
            --secondary: #00A36C;
            --accent: #FF4500;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-default: #0B0E11;
            --bg-surface: #1E2329;
            --bg-elevated: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #707A8A;
            --text-brand: #F0B90B;
            --success: #0ECB81;
            --warning: #F3BA2F;
            --error: #F6465D;
            --border-subtle: #2B3139;
            --border-default: #474D57;
            --border-active: #F0B90B;
            --font-main: 'Hind Siliguri', 'SolaimanLipi', sans-serif;
            --font-sec: 'Inter', 'Roboto', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { padding: 0 15px; max-width: 1200px; margin: 0 auto; }
        header {
            background-color: var(--bg-surface);
            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-subtle);
        }
        .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(--text-brand); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: opacity 0.2s;
        }
        .btn-login { background-color: transparent; border: 1px solid var(--primary); color: var(--primary); }
        .btn-reg { background: var(--gold-gradient); color: #000; }
        .hero { width: 100%; cursor: pointer; }
        .hero img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .jackpot-box {
            background: var(--bg-surface);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-default);
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .jackpot-title { color: var(--primary); font-size: 18px; margin-bottom: 10px; display: flex; justify-content: center; align-items: center; gap: 8px; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--success);
            font-family: var(--font-sec);
            text-shadow: 0 0 10px rgba(14, 203, 129, 0.4);
        }
        .section-title { padding: 20px 15px 10px; font-size: 20px; border-left: 4px solid var(--primary); margin: 15px 0; }
        .intro-text { padding: 0 15px 20px; color: var(--text-secondary); font-size: 14px; }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            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; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-primary); }
        .article-list { padding: 0 15px; }
        .article-card {
            display: flex;
            gap: 12px;
            background: var(--bg-surface);
            margin-bottom: 12px;
            padding: 10px;
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
        }
        .article-card img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; }
        .article-info h3 { font-size: 15px; margin-bottom: 5px; color: var(--text-brand); }
        .article-info p { font-size: 12px; color: var(--text-secondary); height: 36px; overflow: hidden; }
        .payment-section {
            background: var(--bg-surface);
            padding: 20px 15px;
            margin: 20px 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .payment-item i { font-size: 24px; color: var(--text-secondary); display: block; margin-bottom: 5px; }
        .payment-item span { font-size: 10px; color: var(--text-muted); }
        .lottery-container {
            height: 250px;
            overflow: hidden;
            background: var(--bg-surface);
            margin: 15px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
            position: relative;
        }
        .lottery-scroll { position: absolute; width: 100%; animation: scrollUp 40s linear infinite; }
        @keyframes scrollUp {
            0% { top: 0; }
            100% { top: -1000px; }
        }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            border-bottom: 1px solid var(--bg-elevated);
        }
        .lottery-item span { font-size: 13px; }
        .winner-name { color: var(--primary); font-weight: 500; }
        .winner-amount { color: var(--success); font-weight: 600; }
        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 15px;
        }
        .provider-block {
            background: var(--bg-elevated);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-weight: bold;
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
        }
        .reviews-section { padding: 0 15px; }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border-subtle);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .stars { color: var(--warning); 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 { padding: 0 15px; }
        .faq-item {
            background: var(--bg-surface);
            border-radius: 8px;
            margin-bottom: 10px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; cursor: pointer; color: var(--text-brand); display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section {
            background: var(--bg-surface);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px dotted var(--border-default);
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; }
        .age-badge { display: inline-block; padding: 4px 12px; border: 2px solid var(--error); color: var(--error); border-radius: 50%; font-weight: bold; margin-bottom: 10px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            padding: 20px 15px;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
        }
        .footer-links a { color: var(--text-muted); font-size: 13px; text-align: center; }
        .footer-bottom { text-align: center; padding: 20px 15px 100px; font-size: 12px; color: var(--text-muted); background: var(--bg-default); }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1001;
        }
        .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.active { color: var(--primary); }