:root {
            --primary-gold: #FFD700;
            --primary-gold-hover: #F0C800;
            --secondary-gold: #B8860B;
            --accent-vibrant: #00FF41;
            --bg-base: #0A0A0B;
            --surface-deep: #121214;
            --surface-elevated: #1E1E22;
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #9E9E9E;
            --border-low: #2C2C2E;
            --border-gold: #FFD700;
            --success: #00C853;
            --error: #FF3D00;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Inter', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-base); color: var(--text-primary); font-family: var(--font-main); line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        header { background-color: var(--surface-deep); padding: 12px 16px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border-low); display: flex; justify-content: space-between; align-items: center; }
        .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: 8px 16px; border-radius: 4px; font-weight: 600; cursor: pointer; border: none; font-family: var(--font-main); font-size: 14px; transition: 0.3s; }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-low); }
        .btn-register { background: var(--primary-gold); color: #000; }
        .btn-register:hover { background: var(--primary-gold-hover); }

        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section { background: radial-gradient(circle at center, #2c2c2e 0%, #121214 100%); margin: 20px 16px; padding: 25px; border-radius: 15px; border: 2px solid var(--secondary-gold); text-align: center; }
        .jackpot-title { font-size: 20px; color: var(--primary-gold); margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { font-family: var(--font-secondary); font-size: 32px; font-weight: 800; color: var(--accent-vibrant); text-shadow: 0 0 10px rgba(0,255,65,0.5); }

        .intro-card { margin: 20px 16px; padding: 20px; background: var(--surface-deep); border-radius: 12px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 24px; color: var(--primary-gold); margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { font-size: 16px; color: var(--text-secondary); text-align: justify; }

        section { padding: 0 16px 20px; }
        .section-title { font-size: 20px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border-low); padding-bottom: 8px; }
        .section-title i { color: var(--primary-gold); }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: var(--surface-elevated); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-low); transition: transform 0.2s; }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary-gold); }
        .game-img-wrapper { width: 100%; aspect-ratio: 1/1; position: relative; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .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-provider { font-size: 12px; color: var(--text-muted); }

        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 16px; }
        .payment-item { background: var(--surface-deep); padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-low); }
        .payment-item i { font-size: 24px; color: var(--primary-gold); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 11px; color: var(--text-secondary); }

        .guidelines { margin: 20px 16px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: var(--surface-deep); padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 18px; color: var(--primary-gold); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .winners-box { margin: 20px 16px; background: #000; border-radius: 10px; padding: 15px; height: 200px; overflow: hidden; position: relative; border: 1px solid var(--border-low); }
        .winners-scroll { animation: marquee-vertical 20s linear infinite; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #1a1a1a; font-size: 13px; }
        .win-amt { color: var(--accent-vibrant); font-weight: bold; }
        @keyframes marquee-vertical { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

        .providers-wall { display: flex; wrap: wrap; gap: 10px; justify-content: center; padding: 20px 16px; opacity: 0.7; }
        .provider-tag { background: var(--surface-elevated); padding: 5px 12px; border-radius: 20px; font-size: 12px; border: 1px solid var(--border-low); }

        .reviews { margin: 20px 16px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--surface-elevated); padding: 15px; border-radius: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-user h4 { font-size: 14px; }
        .stars { color: var(--primary-gold); font-size: 12px; }
        .review-text { font-size: 14px; color: var(--text-secondary); font-style: italic; }

        .faq-section { margin: 20px 16px; }
        .faq-item { background: var(--surface-deep); margin-bottom: 10px; border-radius: 8px; padding: 15px; border: 1px solid var(--border-low); }
        .faq-item h3 { font-size: 16px; color: var(--primary-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .security-footer { text-align: center; padding: 30px 16px; background: var(--surface-deep); margin-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary-gold); }
        .age-limit { display: inline-block; border: 2px solid var(--error); color: var(--error); border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: bold; margin-bottom: 10px; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(18, 18, 20, 0.95); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-low); backdrop-filter: blur(10px); z-index: 1001; }
        .nav-item { text-align: center; color: var(--text-muted); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item span { font-size: 12px; }

        footer { background: #000; padding: 30px 16px 100px; text-align: center; border-top: 1px solid var(--border-low); }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { color: var(--primary-gold); font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); font-size: 13px; }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid #1a1a1a; padding-top: 20px; }