:root {
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --primary: #FFD700;
            --secondary: #00E676;
            --accent: #FF3D00;
            --grad-gold: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-pri: #FFFFFF;
            --text-sec: #B0B0B0;
            --border: #333333;
            --font-pri: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            --font-sec: 'Inter', sans-serif;
            --font-dis: 'Galada', cursive;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-pri);
            font-family: var(--font-pri);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background: var(--bg-surface);
            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);
        }
        .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(--primary); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-pri); border: 1px solid var(--primary); }
        .btn-reg { background: var(--grad-gold); color: #000; }
        .hero { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            margin: 15px;
            background: var(--bg-elevated);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
        }
        .jackpot-title { font-size: 14px; color: var(--secondary); text-transform: uppercase; margin-bottom: 5px; }
        #jackpot { font-size: 28px; font-weight: 700; color: var(--primary); font-family: var(--font-sec); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-sec { padding: 20px 15px; text-align: center; }
        .intro-sec h1 { font-family: var(--font-dis); font-size: 28px; color: var(--primary); margin-bottom: 12px; line-height: 1.2; }
        .intro-sec p { font-size: 16px; color: var(--text-sec); }
        .section-title { padding: 15px; font-size: 22px; color: var(--primary); display: flex; align-items: center; gap: 10px; }
        .grid-container { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px 20px; }
        .card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); transition: 0.3s; text-decoration: none; display: block; }
        .card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-bottom: 1px solid var(--border); }
        .card h3 { padding: 10px; font-size: 14px; color: var(--text-pri); text-align: center; }
        .article-list { padding: 0 15px 20px; display: flex; flex-direction: column; gap: 15px; }
        .article-card { background: var(--bg-surface); border-radius: 12px; display: flex; gap: 12px; padding: 10px; border: 1px solid var(--border); text-decoration: none; }
        .article-card img { width: 100px; height: 80px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
        .article-info h3 { font-size: 16px; color: var(--primary); margin-bottom: 5px; line-height: 1.3; }
        .article-info p { font-size: 13px; color: var(--text-sec); height: 3.6em; overflow: hidden; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 0 15px 20px; }
        .pay-item { background: var(--bg-surface); height: 60px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid var(--border); }
        .pay-item i { font-size: 20px; color: var(--secondary); margin-bottom: 4px; }
        .pay-item span { font-size: 10px; color: var(--text-sec); }
        .winners-box { margin: 0 15px 20px; background: var(--bg-surface); border-radius: 12px; padding: 10px; height: 200px; overflow-y: hidden; position: relative; border: 1px solid var(--border); }
        .win-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--bg-elevated); font-size: 13px; }
        .win-row .amount { color: var(--secondary); font-weight: bold; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px 20px; }
        .prov-block { background: var(--bg-elevated); padding: 15px; text-align: center; border-radius: 8px; font-weight: bold; color: var(--primary); border: 1px solid var(--border); }
        .reviews-container { padding: 0 15px 20px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-surface); border-radius: 12px; padding: 15px; border: 1px solid var(--border); }
        .rev-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .rev-top i { font-size: 24px; color: var(--text-sec); }
        .rev-name { font-weight: bold; font-size: 15px; }
        .rev-stars { color: var(--primary); font-size: 12px; }
        .rev-text { font-size: 14px; color: var(--text-sec); font-style: italic; margin-bottom: 8px; }
        .rev-date { font-size: 11px; color: var(--muted); text-align: right; }
        .faq-sec { padding: 0 15px 20px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; border: 1px solid var(--border); }
        .faq-q { padding: 15px; font-size: 16px; font-weight: 600; color: var(--primary); cursor: pointer; }
        .faq-a { padding: 0 15px 15px; font-size: 14px; color: var(--text-sec); line-height: 1.6; }
        .security-sec { padding: 20px 15px; text-align: center; background: var(--bg-surface); margin-top: 20px; border-top: 1px solid var(--border); }
        .sec-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--secondary); }
        .sec-text { font-size: 14px; color: var(--text-sec); margin-bottom: 10px; }
        .sec-links { font-size: 14px; color: var(--primary); text-decoration: underline; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: var(--bg-surface); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--primary); z-index: 1001; }
        .nav-item { text-decoration: none; color: var(--text-sec); text-align: center; flex: 1; display: flex; flex-direction: column; align-items: center; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 12px; }
        .nav-item:nth-child(3) { margin-top: -30px; background: var(--grad-gold); width: 60px; height: 60px; border-radius: 50%; color: #000; justify-content: center; box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4); border: 3px solid var(--bg-main); flex: none; }
        footer { padding: 30px 15px 90px; text-align: center; border-top: 1px solid var(--border); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-sec); font-size: 13px; text-decoration: none; }
        .copy-info { font-size: 12px; color: var(--text-sec); opacity: 0.8; }