:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-elevated: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #EAECEF;
            --text-muted: #848E9C;
            --success: #02C076;
            --error: #CF304A;
            --border-default: #333333;
            --radius: 12px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: 'Hind Siliguri', 'Roboto', sans-serif;
            background-color: var(--bg-main);
            color: var(--text-primary);
            line-height: 1.5;
            padding-bottom: 70px;
        }

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

        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-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(--primary); }

        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; border: 1px solid var(--primary); color: var(--primary); }
        .btn-register { background: var(--primary); color: var(--bg-main); }

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

        .jackpot-container {
            margin: 20px 15px;
            background: linear-gradient(135deg, #1e2329 0%, #2b3139 100%);
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--primary); font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }

        .intro-card {
            margin: 0 15px 25px;
            padding: 20px;
            background: var(--bg-surface);
            border-radius: var(--radius);
        }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 12px; }
        .intro-card p { font-size: 16px; color: var(--text-secondary); text-align: justify; }

        .section-title {
            margin: 25px 15px 15px;
            font-size: 20px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

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

        .guidelines {
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .guide-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
        }
        .guide-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--primary); }
        .guide-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }

        .winners-marquee {
            background: var(--bg-elevated);
            margin: 20px 0;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 30s linear infinite;
        }
        .winner-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-right: 30px;
            font-size: 13px;
            color: var(--text-secondary);
        }
        .winner-amount { color: var(--success); font-weight: bold; }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .providers-wall {
            padding: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .provider-tag {
            background: var(--bg-elevated);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            color: var(--secondary);
            border: 1px solid var(--border-default);
        }

        .reviews { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: var(--radius); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .review-meta h4 { font-size: 15px; }
        .review-stars { color: var(--primary); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); float: right; }
        .review-body { font-size: 14px; color: var(--text-secondary); font-style: italic; }

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

        .security-section {
            background: var(--bg-elevated);
            margin-top: 30px;
            padding: 30px 15px;
            text-align: center;
        }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-badges i { font-size: 30px; color: var(--primary); }
        .security-section p { font-size: 13px; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 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-align: center; color: var(--text-muted); font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--primary); }

        footer {
            background: var(--bg-main);
            padding: 40px 15px 20px;
            border-top: 1px solid var(--border-default);
        }
        .footer-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
        .contact-link { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
        .contact-link i { color: var(--primary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .footer-bottom { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .payments-grid { grid-template-columns: repeat(8, 1fr); }
            .footer-links { grid-template-columns: repeat(5, 1fr); }
        }