:root {
            --bg-main: #0B0E14;
            --bg-surface: #1A1F29;
            --bg-card: #242C3B;
            --primary-gold: #FFD700;
            --primary-gold-dark: #B8860B;
            --accent-red: #E11D48;
            --trust-blue: #3B82F6;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --border-default: #334155;
            --win-color: #FACC15;
        }
        * { 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;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background: 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; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary-gold); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 15px; }
        .banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .jackpot-container {
            background: linear-gradient(135deg, #1A1F29 0%, #242C3B 100%);
            border: 2px solid var(--primary-gold);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { color: var(--primary-gold); font-size: 18px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: var(--win-color); font-family: 'Inter', sans-serif; }
        .intro-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            border-left: 4px solid var(--primary-gold);
        }
        .intro-card h1 { font-size: 24px; color: var(--primary-gold); margin-bottom: 12px; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }
        .section-header { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 20px; color: var(--text-primary); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card {
            background: var(--bg-card);
            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-img-wrapper { width: 100%; aspect-ratio: 1/1; background: #000; position: relative; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-card h3 { padding: 8px; font-size: 14px; text-align: center; color: var(--text-primary); 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-surface);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .payment-item i { font-size: 20px; color: var(--primary-gold); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 11px; color: var(--text-secondary); }
        .guides-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .guide-box { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .guide-box h2 { font-size: 18px; color: var(--primary-gold); margin-bottom: 10px; }
        .guide-box p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .marquee-container {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 25px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .marquee-content { display: flex; flex-direction: column; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .win-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .win-user { color: var(--trust-blue); }
        .win-amount { color: var(--win-color); font-weight: bold; }
        .providers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .provider-pill {
            background: var(--bg-card);
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            border: 1px solid var(--border-default);
            background: linear-gradient(to right, #242C3B, #1A1F29);
        }
        .reviews-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-card); padding: 15px; border-radius: 12px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-surface); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-gold); border: 1px solid var(--border-default); }
        .review-info h3 { font-size: 15px; margin: 0; }
        .review-stars { color: #FACC15; font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; border: 1px solid var(--border-default); padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--primary-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { background: var(--bg-surface); padding: 20px; border-radius: 12px; text-align: center; border: 1px solid var(--border-default); }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; flex-wrap: wrap; }
        .security-icons i { font-size: 24px; color: var(--semantic-success, #22C55E); }
        .security-section p { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            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; display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 12px; }
        footer { background: var(--bg-surface); padding: 30px 15px 20px; border-top: 1px solid var(--border-default); text-align: center; }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: left; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; display: block; margin-bottom: 5px; }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 15px; }