:root {
            --bg-primary: #0A0E17;
            --bg-secondary: #161B28;
            --bg-tertiary: #1E2533;
            --surface: #121212;
            --brand-primary: #FFD700;
            --brand-variant: #C5A021;
            --brand-secondary: #00FF41;
            --brand-accent: #FF4500;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #6C757D;
            --border-default: #2D3442;
            --border-focused: #FFD700;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-accent: 'Tiro Bangla', serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        header {
            background-color: 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);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .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: 4px;
            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(--brand-primary); color: #000; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
            padding: 20px 15px;
            text-align: center;
            border-bottom: 2px solid var(--brand-primary);
        }
        .jackpot-label { color: var(--brand-accent); font-weight: 700; font-size: 18px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-value { font-size: 32px; font-weight: 700; color: var(--brand-primary); font-family: monospace; letter-spacing: 2px; }
        .intro-section { padding: 30px 15px; text-align: center; }
        h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; font-family: var(--font-accent); }
        h2 { font-size: 22px; color: var(--brand-primary); margin: 25px 0 15px; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        h3 { font-size: 16px; margin: 10px 0; }
        .grid-container { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-secondary); border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); text-align: center; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .article-list { padding: 15px; }
        .article-item { display: flex; gap: 12px; background: var(--bg-tertiary); border-radius: 8px; margin-bottom: 15px; padding: 10px; border: 1px solid var(--border-default); }
        .article-item img { width: 80px; height: 80px; border-radius: 6px; object-fit: cover; }
        .article-content { flex: 1; }
        .article-content h3 { font-size: 14px; margin-top: 0; color: var(--brand-primary); }
        .article-content p { font-size: 12px; color: var(--text-secondary); height: 40px; overflow: hidden; }
        .payment-section { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 20px 15px; background: var(--bg-secondary); }
        .payment-item { text-align: center; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--brand-primary); display: block; margin-bottom: 5px; }
        .lottery-container { height: 250px; overflow: hidden; background: var(--surface); margin: 20px 15px; border-radius: 8px; border: 1px solid var(--border-default); position: relative; }
        .lottery-scroll { position: absolute; width: 100%; animation: scrollUp 40s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .lottery-item { padding: 10px; border-bottom: 1px solid var(--border-default); display: flex; justify-content: space-between; font-size: 13px; }
        .lottery-item span { color: var(--brand-secondary); font-weight: 600; }
        .provider-section { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-box { background: var(--bg-tertiary); padding: 15px; text-align: center; border-radius: 8px; font-weight: 600; border: 1px solid var(--border-default); }
        .review-card { background: var(--bg-secondary); border-radius: 12px; padding: 15px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .review-stars { color: var(--brand-primary); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-tertiary); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-question { font-weight: 600; color: var(--brand-primary); margin-bottom: 8px; display: block; }
        .faq-answer { font-size: 14px; color: var(--text-secondary); }
        .responsible-gaming { padding: 20px 15px; text-align: center; background: var(--surface); margin-top: 20px; }
        .responsible-gaming i { font-size: 30px; color: var(--brand-secondary); margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: var(--bg-secondary); 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; font-size: 12px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { padding: 30px 15px 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: 25px; }
        .footer-links a { font-size: 14px; color: var(--text-secondary); text-align: center; }
        .footer-bottom { text-align: center; font-size: 12px; color: var(--text-muted); padding-top: 15px; border-top: 1px solid var(--border-default); }