:root {
            --primary: #FCD535;
            --primary-hover: #FFE066;
            --secondary: #D4AF37;
            --accent: #FFD700;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-elevated: #2B3139;
            --text-primary: #EAECEF;
            --text-secondary: #929AA5;
            --border-default: #474D57;
            --success: #0ECB81;
            --error: #F6465D;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-surface);
            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; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: inherit;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: #000; }
        main { max-width: 1000px; margin: 0 auto; padding: 10px; }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #1e2329 0%, #2b3139 100%);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--secondary);
            margin-bottom: 20px;
        }
        .jackpot-title { color: var(--primary); font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--accent); text-shadow: 0 0 10px rgba(252, 213, 53, 0.5); }
        .intro-card {
            background: var(--bg-surface);
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 12px; }
        .intro-card p { font-size: 16px; color: var(--text-secondary); }
        .section-title { font-size: 20px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; color: var(--primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; }
        .payment-item {
            background: var(--bg-elevated);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
        }
        .payment-item i { font-size: 24px; display: block; margin-bottom: 8px; color: var(--primary); }
        .guidance-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-box { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-default); }
        .guide-box h2 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .guide-box p { font-size: 14px; color: var(--text-secondary); }
        .marquee-container {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 25px;
            border: 1px solid var(--border-default);
        }
        .marquee-list { height: 150px; overflow-y: auto; }
        .marquee-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-default);
            font-size: 13px;
        }
        .win-amt { color: var(--success); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-item {
            background: linear-gradient(45deg, #1e2329, #2b3139);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            color: var(--primary);
            border: 1px solid var(--border-default);
        }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-secondary); }
        .review-user { font-weight: 600; font-size: 15px; }
        .stars { color: var(--primary); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 12px; color: var(--text-secondary); opacity: 0.7; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section {
            background: var(--bg-elevated);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 30px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; color: var(--primary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 2px; }
        .nav-item span { font-size: 12px; }
        footer {
            background: var(--bg-surface);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--border-default);
        }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-contacts a { color: var(--text-primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-bottom { text-align: center; font-size: 12px; color: var(--text-secondary); border-top: 1px solid var(--border-default); padding-top: 20px; }