:root {
            --bg-primary: #0B0E11;
            --bg-secondary: #1E2329;
            --bg-surface: #2B3139;
            --brand-primary: #FCD535;
            --brand-secondary: #EAB308;
            --brand-accent: #FF4D4D;
            --gold-grad: linear-gradient(180deg, #FCD535 0%, #B78628 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #EAECEF;
            --text-muted: #848E9C;
            --border-default: #474D57;
            --radius: 12px;
            --font-main: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-secondary);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .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: 6px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--brand-primary); color: var(--bg-primary); }
        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: var(--bg-surface);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--brand-primary);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 14px; margin-bottom: 5px; }
        .jackpot-amount {
            font-size: 24px;
            font-weight: 700;
            color: #FFFFFF;
            font-family: 'Roboto', sans-serif;
            text-shadow: 0 0 10px rgba(252, 213, 53, 0.5);
        }
        .intro-section { padding: 20px 15px; }
        .intro-section h1 { font-size: 20px; color: var(--brand-primary); margin-bottom: 10px; }
        .intro-section p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: var(--brand-primary); display: flex; align-items: center; gap: 8px; }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 15px;
        }
        .game-card {
            background: var(--bg-secondary);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border-default);
            text-decoration: none;
            display: block;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 {
            padding: 8px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .article-list { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-card {
            display: flex;
            background: var(--bg-surface);
            border-radius: var(--radius);
            overflow: hidden;
            text-decoration: none;
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 10px; flex: 1; }
        .article-content h3 { font-size: 14px; color: var(--brand-primary); margin-bottom: 5px; }
        .article-content p { font-size: 12px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-section {
            padding: 15px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }
        .payment-item {
            background: var(--bg-secondary);
            padding: 10px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 10px;
            color: var(--text-muted);
        }
        .payment-item i { font-size: 20px; color: var(--brand-primary); margin-bottom: 5px; }
        .winners-section { background: var(--bg-surface); margin: 15px; border-radius: var(--radius); padding: 15px; }
        .winner-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-default);
            font-size: 13px;
        }
        .winner-name { color: var(--text-secondary); }
        .winner-amount { color: var(--semantic-success, #0ECB81); 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: var(--radius);
            font-weight: bold;
            color: var(--brand-primary);
            border-bottom: 2px solid var(--brand-primary);
        }
        .review-card {
            background: var(--bg-secondary);
            margin: 15px;
            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-muted); }
        .review-header div h4 { font-size: 14px; }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .review-body { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-secondary); 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: 13px; color: var(--text-secondary); }
        .security-section { padding: 20px 15px; text-align: center; background: var(--bg-surface); }
        .security-icons { font-size: 30px; display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; color: var(--brand-primary); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .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-muted); flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        footer { background: var(--bg-primary); padding: 30px 15px 80px; border-top: 1px solid var(--border-default); }
        .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: 12px; }
        .footer-bottom { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 15px; }
        @keyframes countUp {
            from { opacity: 0.8; }
            to { opacity: 1; transform: scale(1.02); }
        }
        .animated-jackpot { animation: countUp 0.5s infinite alternate; }