:root {
            --bg-primary: #0a0c10;
            --bg-secondary: #151921;
            --bg-surface: #1e232e;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --brand-primary: #ffd700;
            --brand-secondary: #ffcc00;
            --brand-accent: #bf953f;
            --grad-gold: linear-gradient(180deg, #bf953f 0%, #fcf6ba 50%, #b38728 100%);
            --text-primary: #ffffff;
            --text-secondary: #b0b3b8;
            --text-brand: #ffd700;
            --success: #00e676;
            --border-default: #2d3436;
            --border-active: #ffd700;
            --radius: 12px;
        }

        * {
            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;
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        a { text-decoration: none; color: inherit; }

        header {
            background: var(--bg-secondary);
            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-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(--text-brand); }

        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: 'Hind Siliguri', sans-serif;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-reg { background: var(--grad-gold); color: #000; }

        .hero { width: 100%; cursor: pointer; display: block; line-height: 0; }
        .hero img { width: 100%; height: auto; aspect-ratio: 2 / 1; object-fit: cover; }

        .jackpot-container {
            background: var(--bg-surface);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--brand-accent);
        }
        .jackpot-title { color: var(--text-brand); font-size: 14px; margin-bottom: 5px; text-transform: uppercase; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            background: var(--grad-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Inter', sans-serif;
        }

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

        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 20px; border-left: 4px solid var(--brand-primary); margin-left: 15px; }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border-default);
            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 { font-size: 14px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .article-list { padding: 0 15px; display: flex; flex-direction: column; gap: 12px; }
        .article-card {
            background: var(--bg-surface);
            display: flex;
            gap: 12px;
            border-radius: var(--radius);
            padding: 10px;
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
        .article-info h3 { font-size: 14px; margin-bottom: 5px; color: var(--text-brand); }
        .article-info p { font-size: 12px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 15px;
            background: var(--bg-secondary);
            margin: 15px;
            border-radius: var(--radius);
        }
        .payment-item { text-align: center; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--brand-accent); margin-bottom: 5px; display: block; }

        .winners-box {
            background: var(--bg-surface);
            margin: 15px;
            padding: 15px;
            border-radius: var(--radius);
            height: 250px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-default);
        }
        .winners-track {
            display: flex;
            flex-direction: column;
            gap: 10px;
            animation: scrollUp 40s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .winner-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px;
            background: var(--bg-primary);
            border-radius: 8px;
            font-size: 13px;
        }
        .winner-name { color: var(--text-brand); }
        .winner-amount { color: var(--success); font-weight: 700; }

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 15px;
        }
        .provider-item {
            background: var(--bg-surface);
            padding: 15px;
            text-align: center;
            border-radius: var(--radius);
            font-weight: 600;
            border: 1px solid var(--border-default);
        }

        .reviews-section { padding: 0 15px; }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: var(--radius);
            margin-bottom: 15px;
            border: 1px solid var(--border-default);
        }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .user-meta { display: flex; align-items: center; gap: 8px; }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }

        .faq-section { padding: 0 15px 20px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; color: var(--text-brand); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); border-top: 1px solid var(--border-default); padding-top: 10px; }

        .security-section {
            background: var(--bg-secondary);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--brand-accent); }
        .security-text { font-size: 12px; color: var(--text-secondary); }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item span { font-size: 11px; }
        .nav-item.active { color: var(--brand-primary); }

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

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .article-list { display: grid; grid-template-columns: 1fr 1fr; }
        }