:root {
            --bg-primary: #0a0b0d;
            --bg-secondary: #16181d;
            --bg-surface: #1e2128;
            --brand-primary: #ffcc00;
            --brand-secondary: #d4af37;
            --brand-accent: #ff3e3e;
            --gold-gradient: linear-gradient(180deg, #ffecb3 0%, #d4af37 100%);
            --text-primary: #ffffff;
            --text-secondary: #b0b3b8;
            --text-muted: #65676b;
            --border-default: #2d3139;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Inter', 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;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { padding: 0 15px; width: 100%; max-width: 1200px; margin: 0 auto; }
        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);
        }
        .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); text-transform: uppercase; }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background: var(--bg-surface); color: var(--text-primary); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        .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: 20px 15px;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-secondary);
        }
        .jackpot-title { color: var(--brand-secondary); font-size: 14px; font-weight: 600; margin-bottom: 5px; }
        .jackpot-amount {
            font-family: var(--font-secondary);
            font-size: 32px;
            font-weight: 800;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .intro-section { padding: 25px 15px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; line-height: 1.25; }
        .intro-section p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-header { display: flex; align-items: center; justify-content: space-between; margin: 20px 15px 10px; }
        .section-header h2 { font-size: 18px; color: var(--text-primary); border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-secondary); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-default); }
        .game-card img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { display: flex; flex-direction: column; gap: 15px; padding: 15px; }
        .article-item { display: flex; gap: 12px; background: var(--bg-surface); padding: 10px; border-radius: 8px; }
        .article-item img { width: 100px; height: 70px; border-radius: 6px; object-fit: cover; }
        .article-content h3 { font-size: 14px; color: var(--brand-primary); margin-bottom: 5px; }
        .article-content p { font-size: 12px; color: var(--text-muted); height: 36px; overflow: hidden; }
        .payment-section { padding: 20px 15px; background: var(--bg-secondary); margin: 20px 0; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--brand-secondary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-secondary); }
        .winning-records { background: var(--bg-surface); margin: 15px; border-radius: 10px; height: 180px; overflow: hidden; border: 1px solid var(--border-default); }
        .records-scroll { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .record-row { padding: 8px 12px; border-bottom: 1px solid var(--border-default); display: flex; justify-content: space-between; align-items: center; }
        .record-row .user { color: var(--brand-primary); font-size: 12px; }
        .record-row .amount { color: var(--brand-accent); font-weight: bold; font-size: 12px; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-block { background: var(--bg-surface); padding: 15px; text-align: center; border-radius: 8px; font-weight: bold; color: var(--brand-secondary); border: 1px solid var(--border-default); }
        .reviews-section { padding: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; 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: 20px; color: var(--brand-primary); }
        .review-stars { color: var(--brand-primary); font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); margin-top: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); text-align: right; margin-top: 5px; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--brand-primary); display: flex; justify-content: space-between; border-bottom: 1px solid var(--border-default); cursor: pointer; }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section { padding: 25px 15px; text-align: center; background: var(--bg-surface); margin-top: 20px; border-top: 2px solid var(--brand-secondary); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-primary); }
        .security-text { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-secondary); 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); flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { padding: 30px 15px 100px; background: var(--bg-primary); border-top: 1px solid var(--border-default); text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 15px; }