:root {
            --bg-primary: #0D0F14;
            --bg-secondary: #1A1D26;
            --bg-surface: #242832;
            --bg-elevated: #2D323E;
            --brand-primary: #FFD700;
            --brand-secondary: #B8860B;
            --brand-accent: #FF4500;
            --grad-start: #F9B208;
            --grad-end: #D48806;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B8C1;
            --text-muted: #6B7280;
            --text-on-brand: #000000;
            --border-light: #2D323E;
            --border-focus: #FFD700;
            --success: #00E676;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            -webkit-tap-highlight-color: transparent;
        }
        h1, h2, h3 { font-family: 'Hind Siliguri', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            background-color: var(--bg-secondary);
            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-light);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; }
        .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: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: var(--bg-surface); color: var(--text-primary); }
        .btn-register { background: linear-gradient(to right, var(--grad-start), var(--grad-end)); color: var(--text-on-brand); }

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

        .jackpot-container {
            margin: 15px;
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-secondary);
        }
        .jackpot-label { color: var(--brand-primary); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--success);
            font-family: 'Inter', sans-serif;
            text-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
        }

        .section-intro { padding: 20px 15px; text-align: center; }
        .section-intro h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; line-height: 1.2; }
        .section-intro p { font-size: 14px; color: var(--text-secondary); }

        .section-title { padding: 0 15px; font-size: 20px; color: var(--brand-primary); margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: var(--brand-primary); border-radius: 2px; }

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

        .article-list { padding: 0 15px 25px; display: flex; flex-direction: column; gap: 15px; }
        .article-card { display: flex; background: var(--bg-surface); border-radius: 12px; overflow: hidden; height: 100px; }
        .article-card img { width: 100px; height: 100%; object-fit: cover; }
        .article-content { padding: 10px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
        .article-content h3 { font-size: 14px; line-height: 1.3; margin-bottom: 5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-content p { font-size: 12px; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

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

        .winners-list { margin: 0 15px 25px; background: var(--bg-secondary); border-radius: 12px; padding: 15px; border: 1px solid var(--border-light); }
        .winner-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--bg-surface); }
        .winner-row:last-child { border-bottom: none; }
        .winner-info { display: flex; flex-direction: column; }
        .winner-name { font-size: 13px; color: var(--text-primary); font-weight: 600; }
        .winner-game { font-size: 11px; color: var(--text-muted); }
        .winner-amount { font-size: 14px; color: var(--success); font-weight: 700; }

        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px 25px; }
        .provider-block { background: var(--bg-surface); height: 50px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--brand-secondary); border: 1px solid var(--border-light); }

        .review-list { padding: 0 15px 25px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-elevated); padding: 15px; border-radius: 12px; border-left: 4px solid var(--brand-primary); }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .user-meta { display: flex; align-items: center; gap: 8px; }
        .user-meta i { font-size: 24px; color: var(--text-muted); }
        .star-rating { color: var(--brand-primary); font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 10px; }
        .review-date { font-size: 11px; color: var(--text-muted); }

        .faq-section { padding: 0 15px 25px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-light); }
        .faq-item h3 { font-size: 15px; color: var(--brand-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

        .security-section { padding: 20px 15px; text-align: center; background: var(--bg-secondary); border-top: 1px solid var(--border-light); margin-bottom: 80px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; color: var(--brand-primary); font-size: 24px; }
        .security-text { font-size: 12px; color: var(--text-muted); max-width: 300px; margin: 0 auto 15px; }
        .age-limit { display: inline-block; border: 2px solid var(--brand-accent); color: var(--brand-accent); padding: 2px 8px; border-radius: 50%; font-weight: 700; font-size: 14px; margin-bottom: 10px; }
        .responsible-link { color: var(--brand-primary); font-size: 13px; text-decoration: underline; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-light);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); transition: color 0.2s; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 12px; }
        .nav-item:nth-child(3) { color: var(--brand-primary); transform: translateY(-5px); }
        .nav-item:nth-child(3) i { font-size: 28px; background: var(--bg-surface); padding: 10px; border-radius: 50%; border: 2px solid var(--brand-primary); }

        footer { background: var(--bg-primary); padding: 30px 15px 100px; border-top: 1px solid var(--border-light); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); text-align: center; }
        .footer-bottom { text-align: center; border-top: 1px solid var(--border-light); padding-top: 20px; }
        .footer-bottom p { font-size: 12px; color: var(--text-muted); }

        @keyframes jackpotFlow {
            0% { transform: translateY(0); }
            100% { transform: translateY(-5px); }
        }
        .jackpot-amount span { display: inline-block; animation: jackpotFlow 0.5s infinite alternate ease-in-out; }