:root {
            --bg-primary: #0B0E11;
            --bg-secondary: #151A21;
            --bg-surface: #1E2329;
            --brand-primary: #FCD535;
            --brand-secondary: #EAB308;
            --brand-accent: #FFD700;
            --text-primary: #FFFFFF;
            --text-secondary: #929AA5;
            --border-default: #2B3139;
            --success: #0ECB81;
            --radius: 12px;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', 'Inter', sans-serif;
            line-height: 1.6;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--bg-primary);
            border-bottom: 1px solid var(--border-default);
            padding: 10px 15px;
            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; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background-color: var(--brand-primary); color: var(--bg-primary); }
        .hero { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero img { width: 100%; height: 100%; object-fit: cover; }
        .container { padding: 15px; }
        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-surface), var(--bg-secondary));
            border: 2px solid var(--brand-primary);
            border-radius: var(--radius);
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(252, 213, 53, 0.2);
        }
        .jackpot-label { font-size: 14px; color: var(--brand-primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--brand-accent); font-family: monospace; }
        .platform-intro { margin-bottom: 25px; }
        .platform-intro h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 10px; }
        .platform-intro p { font-size: 14px; color: var(--text-secondary); }
        .section-title { font-size: 20px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; color: var(--brand-primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .article-card { display: flex; gap: 12px; background: var(--bg-surface); padding: 10px; border-radius: var(--radius); align-items: center; }
        .article-card img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; }
        .article-info h2 { font-size: 16px; 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-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; }
        .payment-item { background: var(--bg-surface); padding: 15px 5px; border-radius: 8px; text-align: center; font-size: 10px; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 20px; color: var(--brand-primary); margin-bottom: 5px; display: block; }
        .lottery-container { background: var(--bg-secondary); border-radius: var(--radius); height: 200px; overflow: hidden; margin-bottom: 25px; border: 1px solid var(--border-default); }
        .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 var(--border-default); display: flex; justify-content: space-between; font-size: 13px; }
        .lottery-item .user { color: var(--brand-primary); }
        .lottery-item .win { color: var(--success); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-item { background: var(--bg-surface); padding: 15px; border-radius: var(--radius); text-align: center; border: 1px solid var(--border-default); }
        .review-slider { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: var(--radius); 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-secondary); }
        .stars { color: var(--brand-accent); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .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 { background: var(--bg-surface); padding: 20px; border-radius: var(--radius); text-align: center; margin-bottom: 25px; border: 1px dashed var(--brand-primary); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-surface); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-default); z-index: 1000; }
        .nav-item { text-align: center; font-size: 12px; color: var(--text-secondary); }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 2px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { background: var(--bg-secondary); padding: 30px 15px; border-top: 1px solid var(--border-default); text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .footer-copy { font-size: 12px; color: var(--text-disabled); margin-top: 20px; }