:root {
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-elevated: #2B3139;
            --brand-primary: #FCD535;
            --brand-variant: #F0B90B;
            --brand-secondary: #DAA520;
            --brand-accent: #FFD700;
            --text-primary: #EAECEF;
            --text-secondary: #929AA5;
            --text-highlight: #FFFFFF;
            --semantic-success: #0ECB81;
            --border-default: #474D57;
            --font-primary: 'Hind Siliguri', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-main);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            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(--text-highlight); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: opacity 0.2s;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-reg { background: var(--brand-primary); color: var(--bg-main); }
        main { max-width: 1200px; margin: 0 auto; padding: 0; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: radial-gradient(circle, #2B3139 0%, #0B0E11 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-secondary);
        }
        .jackpot-title { color: var(--brand-accent); font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { font-size: 32px; color: var(--brand-primary); font-weight: 700; font-family: 'Inter', sans-serif; text-shadow: 0 0 10px rgba(252, 213, 53, 0.5); }
        .intro-card { padding: 20px; margin: 15px; background: var(--bg-surface); border-radius: 12px; border-left: 4px solid var(--brand-primary); }
        .intro-card h1 { font-size: 20px; margin-bottom: 12px; color: var(--brand-primary); }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 10px 15px; font-size: 18px; display: flex; align-items: center; gap: 8px; border-bottom: 2px solid var(--bg-elevated); margin-bottom: 15px; }
        .section-title i { color: var(--brand-primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px 20px; }
        .game-card { background: var(--bg-surface); border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; 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-card h3 { padding: 10px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; background: var(--bg-surface); margin: 15px; border-radius: 12px; }
        .pay-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 10px; color: var(--text-secondary); }
        .pay-item i { font-size: 20px; color: var(--brand-accent); }
        .guidelines { padding: 15px; }
        .guide-item { background: var(--bg-elevated); padding: 15px; border-radius: 8px; margin-bottom: 12px; }
        .guide-item h2 { font-size: 18px; color: var(--brand-primary); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .lottery-marquee { background: var(--bg-surface); margin: 15px; border-radius: 12px; height: 120px; overflow: hidden; position: relative; }
        .marquee-inner { position: absolute; width: 100%; animation: scrollUp 15s linear infinite; }
        @keyframes scrollUp { 0% { top: 0; } 100% { top: -400px; } }
        .marquee-item { padding: 10px 15px; border-bottom: 1px solid var(--bg-elevated); display: flex; justify-content: space-between; font-size: 13px; }
        .win-amount { color: var(--semantic-success); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-item { background: linear-gradient(135deg, #1E2329 0%, #2B3139 100%); padding: 15px; text-align: center; border-radius: 8px; font-weight: 600; color: var(--brand-accent); border: 1px solid var(--border-default); }
        .reviews { padding: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .stars { color: #FFD700; font-size: 12px; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .security-section { padding: 20px; background: var(--bg-elevated); margin: 15px; border-radius: 12px; text-align: center; }
        .security-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 15px; }
        .security-badge { font-size: 24px; color: var(--brand-primary); }
        .navigator { position: fixed; bottom: 0; width: 100%; height: 65px; background: var(--bg-surface); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1001; }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; font-size: 12px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        footer { background: var(--bg-main); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; justify-content: space-around; margin-bottom: 25px; flex-wrap: wrap; gap: 15px; }
        .footer-contacts a { color: var(--brand-primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-bottom { text-align: center; color: var(--text-disabled); font-size: 12px; border-top: 1px solid var(--bg-elevated); pt: 15px; }