:root {
            --primary: #FFD700;
            --secondary: #B8860B;
            --accent: #FF4500;
            --luxury-gold: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #0A0B0D;
            --bg-surface: #161A1E;
            --bg-card: #1E2329;
            --bg-modal: #12161C;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --border-subtle: #2B3139;
            --border-active: #FFD700;
            --success: #00C853;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        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-subtle);
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header button {
            padding: 6px 15px;
            border-radius: 4px;
            border: none;
            font-family: 'Hind Siliguri', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }
        header .login-btn { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        header .reg-btn { background: var(--luxury-gold); color: #000; }
        main { max-width: 600px; margin: 0 auto; padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: var(--bg-card);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--secondary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
        }
        .jackpot-title { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-family: 'Orbitron', sans-serif; font-size: 28px; color: var(--primary); font-weight: 700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { background: var(--bg-surface); margin: 15px; padding: 20px; border-radius: 12px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 20px; color: var(--primary); margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: var(--primary); display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-card); border-radius: 10px; overflow: hidden; text-decoration: none; transition: 0.3s; border: 1px solid var(--border-subtle); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; color: var(--text-primary); padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item { background: var(--bg-surface); padding: 10px; border-radius: 8px; text-align: center; border: 1px solid var(--border-subtle); }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); display: block; }
        .guide-section { padding: 15px; }
        .guide-item { background: var(--bg-card); padding: 15px; border-radius: 10px; margin-bottom: 12px; border: 1px solid var(--border-subtle); }
        .guide-item h2 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .winners-list { background: var(--bg-surface); margin: 15px; border-radius: 12px; padding: 10px; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid var(--border-subtle); font-size: 13px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: var(--text-primary); font-weight: 500; }
        .winner-amount { color: var(--success); font-weight: 700; font-family: 'Orbitron', sans-serif; }
        .providers-wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 15px; }
        .provider-btn { background: var(--bg-card); padding: 12px; text-align: center; border-radius: 8px; border: 1px solid var(--border-subtle); color: var(--primary); font-weight: 600; font-size: 14px; }
        .review-grid { padding: 15px; }
        .review-card { background: var(--bg-card); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .review-info h3 { font-size: 15px; color: var(--text-primary); }
        .stars { color: var(--primary); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-placeholder); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-subtle); }
        .faq-question { padding: 15px; cursor: pointer; color: var(--primary); font-weight: 600; font-size: 15px; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; text-align: justify; }
        .security-section { background: var(--bg-modal); margin: 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px dashed var(--secondary); }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-top: 15px; font-size: 24px; color: var(--primary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        .nav-item:nth-child(3) i { color: var(--primary); font-size: 24px; margin-top: -10px; background: var(--bg-surface); border-radius: 50%; padding: 5px; }
        footer {
            background-color: var(--bg-surface);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--border-subtle);
        }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-social a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; transition: 0.3s; }
        .footer-links a:hover { color: var(--primary); }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-placeholder); border-top: 1px solid var(--border-subtle); padding-top: 20px; }