:root {
            --bg-primary: #0a0a0a;
            --bg-secondary: #141414;
            --bg-tertiary: #1f1f1f;
            --bg-surface: #252525;
            --brand-primary: #ffd700;
            --brand-secondary: #c5a000;
            --brand-accent: #ff4d4d;
            --gold-gradient: linear-gradient(180deg, #ffd700 0%, #b8860b 100%);
            --text-primary: #ffffff;
            --text-secondary: #b3b3b3;
            --text-muted: #757575;
            --border-default: #333333;
            --border-brand: #ffd700;
            --radius: 12px;
        }
        * { 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;
            font-size: 16px;
            line-height: 1.5;
            -webkit-tap-highlight-color: transparent;
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header {
            background: 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);
        }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: var(--brand-primary); }
        .header-btns { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            padding: 6px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        .hero-section { width: 100%; cursor: pointer; }
        .hero-section img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .jackpot-container {
            background: var(--bg-tertiary);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--border-default);
            position: relative;
            overflow: hidden;
        }
        .jackpot-label { font-size: 14px; color: var(--brand-primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
        .jackpot-value { font-size: 32px; font-weight: 700; color: var(--brand-primary); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: 'Roboto', sans-serif; }
        .intro-section { padding: 20px 15px; }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; line-height: 1.2; }
        .intro-section p { color: var(--text-secondary); font-size: 14px; }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
        .section-title h2 { font-size: 18px; font-weight: 600; }
        .section-title i { color: var(--brand-primary); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 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; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .article-list { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-card {
            background: var(--bg-tertiary);
            border-radius: var(--radius);
            display: flex;
            gap: 12px;
            padding: 10px;
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 100px; height: 70px; border-radius: 8px; object-fit: cover; }
        .article-content { flex: 1; }
        .article-content h3 { font-size: 14px; margin-bottom: 5px; line-height: 1.3; }
        .article-content p { font-size: 12px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 15px;
            background: var(--bg-surface);
            margin: 15px;
            border-radius: var(--radius);
        }
        .payment-item { text-align: center; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--brand-primary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; }
        .lottery-section { padding: 0 15px; margin-top: 20px; }
        .lottery-list { background: var(--bg-secondary); border-radius: var(--radius); padding: 10px; border: 1px solid var(--border-default); }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid var(--bg-surface);
        }
        .lottery-item:last-child { border-bottom: none; }
        .winner-name { font-size: 13px; font-weight: 500; }
        .winner-amount { color: var(--brand-primary); font-weight: bold; font-size: 13px; }
        .winner-game { font-size: 12px; color: var(--text-muted); }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 15px; }
        .provider-item {
            background: var(--bg-surface);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-weight: 600;
            border: 1px solid var(--border-default);
        }
        .review-section { padding: 0 15px; margin-top: 20px; }
        .review-card {
            background: var(--bg-tertiary);
            border-radius: var(--radius);
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid var(--border-default);
        }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 30px; color: var(--text-muted); }
        .review-rating { color: var(--brand-primary); font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); margin: 8px 0; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 0 15px; margin-top: 25px; }
        .faq-item { background: var(--bg-secondary); border-radius: 8px; margin-bottom: 10px; border: 1px solid var(--border-default); overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px 15px; font-size: 13px; color: var(--text-secondary); }
        .security-section { padding: 20px 15px; text-align: center; border-top: 1px solid var(--border-default); margin-top: 30px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--text-muted); }
        .security-text { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-secondary);
            height: 60px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); flex: 1; }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 12px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { padding: 30px 15px 80px 15px; 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: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--bg-surface); padding-top: 20px; }