@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');
        :root {
            --bg-primary: #0A0E17;
            --bg-secondary: #151B26;
            --bg-surface: #1E293B;
            --brand-primary: #FFD700;
            --brand-secondary: #F9A825;
            --text-primary: #FFFFFF;
            --text-secondary: #B0BEC5;
            --border-gold: rgba(255, 215, 0, 0.3);
            --win-color: #4CAF50;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'SolaimanLipi', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        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-gold);
        }
        .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(--brand-primary); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            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(--brand-primary); }
        .btn-register { background: linear-gradient(180deg, #FFD700, #B8860B); color: #000; }
        .hero { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .hero img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: var(--bg-surface);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-gold);
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
        #jackpot-amount { font-size: 32px; font-weight: 700; color: var(--brand-primary); font-family: 'Roboto', sans-serif; }
        .intro-section { padding: 20px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; }
        .intro-section p { color: var(--text-secondary); font-size: 16px; }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid #2D3748;
        }
        .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-card {
            background: var(--bg-secondary);
            border-radius: 8px;
            display: flex;
            gap: 12px;
            padding: 10px;
            text-decoration: none;
            border-left: 4px solid var(--brand-primary);
        }
        .article-card img { width: 80px; height: 80px; border-radius: 6px; object-fit: cover; }
        .article-info h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 5px; line-height: 1.3; }
        .article-info p { font-size: 12px; color: var(--text-secondary); height: 36px; overflow: hidden; }
        .payment-section {
            background: var(--bg-secondary);
            padding: 20px;
            margin: 20px 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 { display: block; font-size: 10px; color: var(--text-secondary); }
        .lottery-section {
            background: rgba(0,0,0,0.3);
            margin: 15px;
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
        }
        .lottery-scroll { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            padding: 10px 15px;
            border-bottom: 1px solid #1E293B;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }
        .win-amount { color: var(--win-color); font-weight: bold; }
        .providers-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 15px;
        }
        .provider-block {
            background: var(--bg-surface);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            color: var(--brand-primary);
            font-weight: bold;
        }
        .review-section { padding: 15px; }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid #2D3748;
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .stars { color: #FFAB00; font-size: 12px; }
        .faq-section { padding: 20px; background: var(--bg-secondary); }
        .faq-item { margin-bottom: 20px; }
        .faq-item h3 { color: var(--brand-primary); font-size: 16px; margin-bottom: 8px; }
        .faq-item p { color: var(--text-secondary); font-size: 14px; text-align: justify; }
        .security-section { padding: 20px; text-align: center; border-top: 1px solid var(--border-gold); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-secondary); }
        .responsible-text { font-size: 12px; color: var(--text-muted); margin-top: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-gold);
            z-index: 1000;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 12px; }
        footer { padding: 20px 20px 100px 20px; background: var(--bg-primary); }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid #1E293B; padding-top: 15px; }