:root {
            --brand-primary: #FFD700;
            --brand-primary-light: #FFE44D;
            --brand-primary-dark: #B8860B;
            --brand-secondary: #E63946;
            --brand-accent: #00E676;
            --bg-base: #0B0E11;
            --bg-surface: #151921;
            --bg-elevated: #1F232B;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border-low: #2C2F36;
            --border-high: #4E535A;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.6;
            padding-bottom: 70px;
        }
        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-low);
        }
        header .logo-box { display: flex; align-items: center; gap: 8px; }
        header img { width: 25px; height: 25px; object-fit: contain; }
        header strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            text-decoration: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-reg { background: var(--brand-primary); color: #000; }
        main { max-width: 800px; margin: 0 auto; padding: 0 10px; }
        .banner { width: 100%; aspect-ratio: 2/1; margin: 10px 0; border-radius: 12px; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, var(--brand-primary-dark), #000);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin: 20px 0;
            border: 2px solid var(--brand-primary);
        }
        .jackpot-title { font-size: 18px; color: var(--brand-primary); margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: #fff; font-family: 'Roboto', sans-serif; text-shadow: 0 0 10px var(--brand-primary); }
        .intro-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin: 20px 0; border: 1px solid var(--border-low); }
        .intro-card h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { font-size: 15px; color: var(--text-secondary); }
        .section-header { margin: 25px 0 15px; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        .section-header h2 { font-size: 20px; color: var(--text-primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-low); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; color: var(--text-primary); }
        .payment-section { background: var(--bg-elevated); padding: 20px; border-radius: 12px; margin: 20px 0; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--brand-primary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-secondary); }
        .guidelines { display: flex; flex-direction: column; gap: 15px; margin: 20px 0; }
        .guide-box { background: var(--bg-surface); padding: 15px; border-radius: 10px; border-left: 3px solid var(--brand-accent); }
        .guide-box h3 { font-size: 16px; margin-bottom: 8px; color: var(--brand-accent); }
        .lottery-ticker { background: var(--bg-surface); border-radius: 12px; height: 200px; overflow: hidden; position: relative; border: 1px solid var(--border-low); }
        .lottery-track { animation: slideUp 20s linear infinite; padding: 10px; }
        .lottery-item { padding: 8px; border-bottom: 1px solid var(--border-low); display: flex; justify-content: space-between; font-size: 13px; }
        .lottery-item span:first-child { color: var(--brand-primary); }
        .lottery-item span:last-child { color: var(--brand-accent); font-weight: bold; }
        @keyframes slideUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
        .provider-tag { background: var(--bg-elevated); padding: 12px; text-align: center; border-radius: 8px; color: var(--brand-primary-light); font-weight: 600; border: 1px solid var(--border-low); }
        .reviews-container { display: flex; flex-direction: column; gap: 15px; margin: 20px 0; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-low); }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user i { color: var(--brand-primary); font-size: 20px; }
        .stars { color: #FFAB00; font-size: 12px; }
        .faq-section { margin: 20px 0; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 8px; }
        .security-box { background: var(--bg-elevated); padding: 20px; border-radius: 12px; text-align: center; margin: 20px 0; border-top: 3px solid var(--brand-secondary); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-icons i { font-size: 30px; color: var(--brand-accent); }
        .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-high); z-index: 1001; }
        .nav-item { text-align: center; color: var(--text-secondary); text-decoration: none; font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        footer { background: #000; padding: 30px 15px 100px; text-align: center; color: var(--text-secondary); border-top: 2px solid var(--border-low); }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 20px; }
        .footer-contacts a { color: var(--brand-primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; border-top: 1px solid var(--border-low); padding-top: 15px; }