:root {
            --bg-primary: #0B0E11;
            --bg-secondary: #161A1E;
            --bg-tertiary: #1E2329;
            --bg-surface: #2B3139;
            --brand-primary: #FCD535;
            --brand-secondary: #EAB308;
            --brand-accent: #C5A059;
            --gold-gradient: linear-gradient(180deg, #FCD535 0%, #C5A059 100%);
            --text-primary: #EAECEF;
            --text-secondary: #929AA5;
            --border-subtle: #2F3336;
            --success: #0ECB81;
            --font-primary: 'Hind Siliguri', sans-serif;
            --font-display: 'Galada', cursive;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            -webkit-tap-highlight-color: transparent;
        }

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

        header {
            background-color: var(--bg-secondary);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .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: 6px 16px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }

        .btn-login {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--brand-primary);
        }

        .btn-register {
            background: var(--gold-gradient);
            color: var(--bg-primary);
        }

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

        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jackpot-container {
            background: var(--bg-surface);
            margin: 15px;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-accent);
        }

        .jackpot-label {
            color: var(--brand-primary);
            font-size: 14px;
            text-transform: uppercase;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .jackpot-amount {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            text-shadow: 0 0 10px rgba(252, 213, 53, 0.5);
            font-family: 'Inter', sans-serif;
        }

        .section-intro {
            padding: 20px 16px;
        }

        .section-intro h1 {
            font-size: 24px;
            color: var(--brand-primary);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .section-intro p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 16px 20px;
        }

        .game-card {
            background: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: transform 0.2s;
        }

        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            display: block;
            object-fit: cover;
        }

        .game-card h3 {
            padding: 8px;
            font-size: 14px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .section-title {
            padding: 10px 16px;
            font-size: 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .section-title::before {
            content: "";
            width: 4px;
            height: 18px;
            background: var(--brand-primary);
            border-radius: 2px;
        }

        .article-list {
            padding: 0 16px 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .article-card {
            display: flex;
            gap: 12px;
            background: var(--bg-tertiary);
            padding: 10px;
            border-radius: 8px;
        }

        .article-card img {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            object-fit: cover;
        }

        .article-content h3 {
            font-size: 15px;
            margin-bottom: 5px;
            color: var(--brand-primary);
        }

        .article-content 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: 16px;
            background: var(--bg-secondary);
            margin: 0 16px 20px;
            border-radius: 12px;
        }

        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 10px;
            color: var(--text-secondary);
            gap: 5px;
        }

        .payment-item i {
            font-size: 20px;
            color: var(--brand-accent);
        }

        .winners-list {
            margin: 0 16px 20px;
            background: var(--bg-tertiary);
            border-radius: 12px;
            padding: 10px;
            height: 200px;
            overflow-y: hidden;
            position: relative;
        }

        .winner-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 13px;
        }

        .winner-amount {
            color: var(--success);
            font-weight: 700;
        }

        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 16px;
        }

        .provider-block {
            background: var(--bg-surface);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            border: 1px solid var(--border-subtle);
        }

        .review-card {
            background: var(--bg-tertiary);
            padding: 15px;
            border-radius: 12px;
            margin: 0 16px 15px;
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .review-header i {
            font-size: 24px;
            color: var(--text-secondary);
        }

        .review-stars {
            color: var(--brand-primary);
            font-size: 12px;
        }

        .review-content {
            font-size: 13px;
            color: var(--text-secondary);
            font-style: italic;
        }

        .faq-section {
            padding: 16px;
        }

        .faq-item {
            margin-bottom: 15px;
            background: var(--bg-secondary);
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            padding: 12px 15px;
            font-weight: 600;
            color: var(--brand-primary);
            border-bottom: 1px solid var(--border-subtle);
        }

        .faq-answer {
            padding: 12px 15px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .security-box {
            margin: 20px 16px;
            padding: 20px;
            background: linear-gradient(135deg, #161A1E 0%, #0B0E11 100%);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            text-align: center;
        }

        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 30px;
            color: var(--brand-accent);
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            color: var(--text-secondary);
        }

        .nav-item i {
            font-size: 20px;
            margin-bottom: 2px;
        }

        .nav-item.active {
            color: var(--brand-primary);
        }

        footer {
            background: var(--bg-primary);
            padding: 30px 16px 80px;
            border-top: 1px solid var(--border-subtle);
        }

        .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;
        }

        .footer-bottom {
            text-align: center;
            font-size: 12px;
            color: var(--text-disabled);
            padding-top: 20px;
            border-top: 1px solid var(--border-subtle);
        }

        @keyframes jackpotFloat {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .jackpot-amount {
            animation: jackpotFloat 3s infinite ease-in-out;
        }