:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-tertiary: #262626;
            --bg-surface: #121212;
            --brand-gold: #FFD700;
            --brand-gold-hover: #E6C200;
            --brand-emerald: #00C853;
            --brand-blue: #1A73E8;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #6C757D;
            --text-on-brand: #000000;
            --border-default: #333333;
            --border-focus: #FFD700;
            --success: #00E676;
            --error: #FF5252;
            --font-primary: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Noto Sans Bengali', sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--bg-surface);
            padding: 12px 16px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
            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: 400; color: var(--brand-gold); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--brand-gold); border: 1px solid var(--brand-gold); }
        .btn-register { background: var(--brand-gold); color: var(--text-on-brand); }
        .btn-register:hover { background: var(--brand-gold-hover); }
        .hero { width: 100%; cursor: pointer; }
        .hero img { width: 100%; height: auto; aspect-ratio: 2 / 1; display: block; }
        .jackpot-container {
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
            margin: 16px;
            padding: 20px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid var(--brand-gold);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { font-size: 18px; color: var(--brand-gold); margin-bottom: 10px; font-weight: 600; }
        #jackpot-amount { font-size: 32px; font-weight: 700; color: var(--success); letter-spacing: 1px; }
        .section-intro { padding: 24px 16px; text-align: center; }
        .section-intro h1 { font-size: 24px; color: var(--brand-gold); margin-bottom: 12px; }
        .section-intro p { font-size: 16px; color: var(--text-secondary); max-width: 800px; margin: 0 auto; }
        .grid-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 16px;
        }
        .game-card {
            background: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            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; color: var(--text-primary); }
        .section-title { padding: 16px 16px 0; font-size: 20px; color: var(--brand-gold); display: flex; align-items: center; gap: 8px; }
        .article-list { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
        .article-card {
            display: flex;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 12px; flex: 1; }
        .article-content h3 { font-size: 16px; margin-bottom: 4px; color: var(--brand-gold); }
        .article-content p { font-size: 12px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .methods-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 16px;
        }
        .method-item {
            background: var(--bg-secondary);
            padding: 12px 4px;
            border-radius: 8px;
            text-align: center;
            font-size: 10px;
            border: 1px solid var(--border-subtle);
        }
        .method-item i { font-size: 20px; color: var(--brand-gold); margin-bottom: 6px; display: block; }
        .winner-list { padding: 16px; background: var(--bg-surface); margin: 16px; border-radius: 12px; border: 1px solid var(--border-default); }
        .winner-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 13px;
        }
        .winner-item:last-child { border-bottom: none; }
        .winner-name { color: var(--brand-emerald); }
        .winner-amount { color: var(--brand-gold); font-weight: 600; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
        .provider-block { background: var(--bg-tertiary); padding: 20px; border-radius: 10px; text-align: center; font-weight: 600; border: 1px solid var(--border-default); }
        .review-card {
            background: var(--bg-secondary);
            margin: 16px;
            padding: 16px;
            border-radius: 16px;
            border-left: 4px solid var(--brand-gold);
        }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-info h4 { font-size: 16px; }
        .review-stars { color: var(--brand-gold); font-size: 12px; }
        .review-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); text-align: right; }
        .faq-section { padding: 16px; }
        .faq-item { background: var(--bg-secondary); border-radius: 8px; margin-bottom: 12px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; cursor: pointer; color: var(--brand-gold); border-bottom: 1px solid var(--border-default); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
        .security-section { padding: 24px 16px; text-align: center; background: var(--bg-surface); border-top: 2px solid var(--border-default); }
        .security-icons { display: flex; justify-content: center; gap: 20px; font-size: 30px; color: var(--brand-gold); margin-bottom: 15px; }
        .security-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .security-link { color: var(--brand-blue); text-decoration: underline; font-size: 14px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            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; color: var(--text-secondary); font-size: 12px; flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        footer { padding: 30px 16px 100px; background: var(--bg-primary); border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 14px; color: var(--text-muted); text-align: center; }
        .footer-bottom { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }
        @media (min-width: 768px) {
            .grid-container { grid-template-columns: repeat(4, 1fr); }
            .methods-grid { grid-template-columns: repeat(8, 1fr); }
            .provider-grid { grid-template-columns: repeat(4, 1fr); }
        }