:root {
            --brand-primary: #FFD700;
            --brand-secondary: #C0C0C0;
            --brand-accent: #D4AF37;
            --brand-cta: #E63946;
            --bg-main: #0B0E11;
            --bg-surface: #151921;
            --bg-modal: #1E2329;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #707A8A;
            --text-link: #F0B90B;
            --semantic-success: #0ECB81;
            --border-default: #2B2F36;
            --font-primary: 'Hind Siliguri', sans-serif;
            --font-display: 'Galada', cursive;
        }
        * { 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;
        }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            background: var(--bg-main);
            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-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(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--brand-primary); color: var(--bg-main); }

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

        .jackpot-container {
            background: linear-gradient(180deg, #1e2329 0%, #0b0e11 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-accent);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-primary);
            font-family: monospace;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

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

        .section-header { margin: 20px 15px 10px; border-left: 3px solid var(--brand-primary); padding-left: 10px; }
        .section-header h2 { font-size: 20px; font-weight: 600; color: var(--text-primary); }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; transition: transform 0.2s; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 8px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-secondary); }

        .payment-section { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; background: var(--bg-surface); margin: 15px; border-radius: 12px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-muted); }
        .payment-item i { font-size: 24px; color: var(--brand-accent); }
        .payment-item span { font-size: 10px; }

        .guides-section { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-box { background: var(--bg-surface); padding: 15px; border-radius: 10px; }
        .guide-box h2 { font-size: 18px; color: var(--brand-primary); margin-bottom: 8px; }
        .guide-box p { font-size: 14px; color: var(--text-secondary); text-align: justify; }

        .lottery-ticker { background: var(--bg-surface); margin: 15px; border-radius: 10px; height: 150px; overflow: hidden; position: relative; }
        .lottery-scroll { position: absolute; width: 100%; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { top: 0; } 100% { top: -400px; } }
        .lottery-item { padding: 10px 15px; border-bottom: 1px solid var(--border-default); display: flex; justify-content: space-between; font-size: 13px; }
        .lottery-user { color: var(--brand-primary); }
        .lottery-win { color: var(--semantic-success); font-weight: bold; }

        .providers-wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 15px; }
        .provider-item { background: linear-gradient(45deg, #1e2329, #2b2f36); padding: 15px; text-align: center; border-radius: 8px; font-weight: 600; color: var(--brand-secondary); border: 1px solid var(--border-default); }

        .reviews-section { display: flex; flex-direction: column; gap: 15px; padding: 0 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user i { font-size: 20px; color: var(--brand-primary); }
        .stars { color: #ffc107; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin: 8px 0; }
        .review-date { font-size: 11px; color: var(--text-muted); text-align: right; }

        .faq-section { padding: 0 15px; display: flex; flex-direction: column; gap: 10px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 15px; color: var(--brand-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .safety-section { margin: 15px; padding: 20px; background: #0e1217; border-radius: 12px; text-align: center; border: 1px dashed var(--text-muted); }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--semantic-success); }
        .safety-section p { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
        .safety-links a { color: var(--text-link); font-size: 12px; margin: 0 5px; text-decoration: underline; }

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-navigation);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }

        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { font-size: 14px; color: var(--text-link); border: 1px solid var(--text-link); padding: 5px 15px; border-radius: 20px; }
        .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-muted); }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }