:root {
            --bg-primary: #0A0E14;
            --bg-secondary: #151B24;
            --bg-surface: #1C242F;
            --brand-primary: #FFD700;
            --brand-secondary: #C5A021;
            --accent: #00E676;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B8C1;
            --text-muted: #6C757D;
            --border-default: #2D3748;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            line-height: 1.6;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-secondary);
            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-default);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: linear-gradient(180deg, #FFD700 0%, #B8860B 100%); color: #000; }
        .hero-banner { width: 100%; aspect-ratio: 2 / 1; cursor: pointer; overflow: hidden; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: var(--bg-surface);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-primary);
        }
        .jackpot-label { color: var(--brand-primary); font-size: 1.2rem; font-weight: bold; margin-bottom: 10px; }
        .jackpot-amount { font-size: 2rem; color: var(--accent); font-weight: 700; letter-spacing: 2px; }
        .intro-section { padding: 20px; text-align: center; }
        .intro-section h1 { font-size: 1.5rem; color: var(--brand-primary); margin-bottom: 15px; }
        .intro-section p { color: var(--text-secondary); font-size: 0.95rem; }
        .section-title { padding: 15px; font-size: 1.25rem; border-left: 4px solid var(--brand-primary); margin: 10px 0; background: var(--bg-secondary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 0.9rem; color: var(--text-primary); text-align: center; }
        .article-list { padding: 15px; }
        .article-card { display: flex; gap: 15px; background: var(--bg-secondary); margin-bottom: 15px; border-radius: 10px; overflow: hidden; text-decoration: none; border-bottom: 2px solid var(--border-default); }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-info { padding: 10px; flex: 1; }
        .article-info h3 { font-size: 1rem; color: var(--brand-primary); margin-bottom: 5px; }
        .article-info p { font-size: 0.8rem; color: var(--text-muted); height: 40px; overflow: hidden; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item { background: var(--bg-surface); padding: 15px 5px; border-radius: 8px; text-align: center; font-size: 12px; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 24px; color: var(--brand-primary); margin-bottom: 8px; display: block; }
        .win-ticker { height: 250px; overflow: hidden; margin: 15px; background: var(--bg-secondary); border-radius: 12px; padding: 10px; border: 1px solid var(--border-default); }
        .win-item { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid var(--border-default); font-size: 0.85rem; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-500px); } }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-block { background: var(--bg-surface); padding: 20px; text-align: center; border-radius: 10px; border-left: 3px solid 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-top: 2px solid var(--accent); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-secondary); }
        .rating { color: var(--brand-primary); font-size: 0.8rem; }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-secondary); border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; color: var(--brand-primary); border-bottom: 1px solid var(--border-default); }
        .faq-answer { padding: 15px; font-size: 0.9rem; color: var(--text-secondary); }
        .security-section { padding: 20px; background: var(--bg-surface); margin: 15px; border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--accent); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-secondary); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-default); z-index: 1001; }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item:nth-child(3) { color: var(--brand-primary); margin-top: -10px; }
        .nav-item:nth-child(3) i { font-size: 30px; background: var(--bg-primary); border-radius: 50%; padding: 5px; border: 2px solid var(--brand-primary); }
        footer { background: var(--bg-secondary); padding: 30px 15px 100px 15px; text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .copy-text { color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-default); padding-top: 20px; }