:root {
            --bg-primary: #0B0E11;
            --bg-secondary: #15191E;
            --bg-tertiary: #1C2127;
            --brand-primary: #FFD700;
            --brand-secondary: #00A86B;
            --brand-accent: #FF4500;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --border-default: #2D3436;
            --win-color: #00FF41;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', system-ui, -apple-system, sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        h1, h2, h3 { font-family: 'Tiro Bangla', serif; color: var(--brand-primary); }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-secondary);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-default);
        }
        .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(--text-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: 'Hind Siliguri', sans-serif;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        .hero { width: 100%; cursor: pointer; }
        .hero img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
        .jackpot-container {
            background: var(--bg-tertiary);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--brand-primary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--brand-primary); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--win-color); font-family: 'monospace'; }
        .intro-section { padding: 20px; text-align: center; }
        .intro-section h1 { font-size: 24px; margin-bottom: 12px; line-height: 1.3; }
        .intro-section p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 0 15px; margin-top: 20px; margin-bottom: 15px; border-left: 4px solid var(--brand-primary); margin-left: 15px; font-size: 20px; }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--bg-secondary);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; color: var(--text-primary); font-family: 'Hind Siliguri', sans-serif; }
        .article-list { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-card {
            display: flex;
            background: var(--bg-secondary);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .article-img { width: 100px; height: 100px; flex-shrink: 0; }
        .article-img img { width: 100%; height: 100%; object-fit: cover; }
        .article-content { padding: 10px; }
        .article-content h3 { font-size: 16px; margin-bottom: 5px; color: var(--brand-primary); }
        .article-content p { font-size: 12px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-license {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 15px;
            background: var(--bg-secondary);
            margin: 20px 15px;
            border-radius: var(--radius);
        }
        .pl-item { text-align: center; font-size: 10px; color: var(--text-secondary); }
        .pl-item i { font-size: 24px; color: var(--brand-primary); margin-bottom: 5px; display: block; }
        .win-ticker {
            height: 200px;
            overflow: hidden;
            background: var(--bg-tertiary);
            margin: 15px;
            border-radius: var(--radius);
            position: relative;
        }
        .ticker-scroll {
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .win-item {
            padding: 10px 15px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }
        .win-user { color: var(--brand-primary); }
        .win-amount { color: var(--win-color); font-weight: bold; }
        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 15px;
        }
        .provider-block {
            background: var(--bg-tertiary);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }
        .review-section { padding: 0 15px; }
        .review-card {
            background: var(--bg-secondary);
            padding: 15px;
            border-radius: var(--radius);
            margin-bottom: 15px;
            border: 1px solid var(--border-default);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-avatar { font-size: 30px; color: var(--text-secondary); }
        .review-meta 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-disabled); }
        .faq-section { padding: 0 15px; }
        .faq-item { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--brand-primary); font-family: 'Hind Siliguri', sans-serif; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .safety-section {
            background: var(--bg-tertiary);
            margin: 20px 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
        }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-secondary); }
        .safety-section p { font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }
        .safety-section a { color: var(--brand-primary); text-decoration: underline; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-secondary);
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-align: center; padding: 10px 0; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { padding: 20px 15px 100px; background: var(--bg-primary); 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 { font-size: 13px; color: var(--text-secondary); }
        .copyright { text-align: center; font-size: 12px; color: var(--text-disabled); border-top: 1px solid var(--border-default); padding-top: 15px; }