:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #00E676;
            --accent: #FF3D00;
            --bg-main: #0B0E11;
            --bg-surface: #151A21;
            --bg-card: #1E232B;
            --bg-modal: #121212;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-disabled: #65676B;
            --text-inverse: #000000;
            --border-default: #2D333B;
            --border-light: #3E444D;
            --border-gold: rgba(255, 215, 0, 0.3);
            --success: #00C853;
            --error: #FF5252;
            --warning: #FFAB00;
            --info: #2979FF;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header {
            background-color: var(--bg-surface);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            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); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-light); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        main { max-width: 600px; margin: 0 auto; padding: 10px; }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 15px;
            cursor: pointer;
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-card), var(--bg-surface));
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 20px;
            border: 1px solid var(--border-gold);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
        }
        .jackpot-label { color: var(--primary); font-size: 14px; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--primary); font-family: 'Inter', sans-serif; }
        .intro-card {
            background-color: var(--bg-card);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 20px;
        }
        .intro-card h1 { font-size: 20px; color: var(--primary); margin-bottom: 10px; font-weight: 600; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { font-size: 18px; margin: 20px 0 15px; color: var(--text-primary); border-left: 4px solid var(--primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card {
            background-color: var(--bg-card);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 12px; color: var(--text-secondary); }
        .payments-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 25px;
        }
        .payment-item { text-align: center; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 20px; display: block; margin-bottom: 5px; color: var(--primary); }
        .guidelines-grid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .guide-card { background: var(--bg-card); padding: 15px; border-radius: 12px; }
        .guide-card h2 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }
        .winners-marquee {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 25px;
            border: 1px solid var(--border-default);
        }
        .marquee-content { display: flex; flex-direction: column; gap: 10px; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .winner-row { display: flex; justify-content: space-between; font-size: 13px; border-bottom: 1px solid var(--border-default); padding-bottom: 5px; }
        .winner-row .user { color: var(--primary); }
        .winner-row .amount { color: var(--secondary); font-weight: 600; }
        .providers-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            padding: 15px;
            background: var(--bg-surface);
            border-radius: 12px;
            margin-bottom: 25px;
        }
        .provider-tag { padding: 5px 12px; background: var(--bg-card); border-radius: 5px; font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border-light); }
        .reviews-grid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-card); padding: 15px; border-radius: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .review-meta h3 { font-size: 14px; }
        .stars { color: var(--primary); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-disabled); float: right; }
        .review-body { font-size: 13px; color: var(--text-secondary); }
        .faq-section { display: flex; flex-direction: column; gap: 10px; margin-bottom: 25px; }
        .faq-item { background: var(--bg-card); border-radius: 10px; padding: 15px; }
        .faq-item h2 { font-size: 15px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-section {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border-top: 2px solid var(--primary);
            margin-bottom: 25px;
        }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin: 15px 0; 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-default);
            z-index: 1000;
        }
        .nav-item { text-align: center; font-size: 11px; color: var(--text-secondary); }
        .nav-item i { font-size: 18px; display: block; margin-bottom: 3px; }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-social a { font-size: 20px; color: var(--text-secondary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-disabled); border-top: 1px solid var(--border-default); padding-top: 20px; }