:root {
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-overlay: #2B3139;
            --bg-card: #181A20;
            --primary: #FCD535;
            --secondary: #F0B90B;
            --accent: #C99400;
            --text-primary: #FFFFFF;
            --text-secondary: #EAECEF;
            --text-muted: #848E9C;
            --brand-contrast: #000000;
            --border-default: #2D343C;
            --border-active: #FCD535;
            --success: #0ECB81;
            --error: #F6465D;
            --font-primary: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            --font-secondary: 'Inter', 'Roboto', sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        header {
            background-color: var(--bg-main);
            padding: 10px 16px;
            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;
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: var(--font-secondary);
        }
        .btn-login {
            background-color: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-default);
        }
        .btn-register {
            background-color: var(--primary);
            color: var(--brand-contrast);
        }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            overflow: hidden;
        }
        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-section {
            background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%);
            padding: 20px 16px;
            text-align: center;
            border-bottom: 2px solid var(--primary);
        }
        .jackpot-title {
            color: var(--primary);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        .jackpot-amount {
            font-family: var(--font-secondary);
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            text-shadow: 0 0 10px rgba(252, 213, 53, 0.5);
        }
        .intro-section {
            padding: 24px 16px;
        }
        .intro-section h1 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .intro-section p {
            color: var(--text-secondary);
            font-size: 16px;
        }
        .section-title {
            padding: 16px 16px 8px;
            font-size: 20px;
            color: var(--primary);
            border-left: 4px solid var(--primary);
            margin: 10px 16px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 16px;
        }
        .game-card {
            background-color: var(--bg-card);
            border-radius: 12px;
            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 {
            padding: 8px;
            font-size: 14px;
            text-align: center;
            color: var(--text-secondary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .article-list {
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .article-card {
            display: flex;
            gap: 12px;
            background-color: var(--bg-card);
            padding: 10px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .article-card img {
            width: 100px;
            height: 70px;
            border-radius: 8px;
            object-fit: cover;
        }
        .article-info h3 {
            font-size: 16px;
            color: var(--primary);
            margin-bottom: 4px;
            line-height: 1.3;
        }
        .article-info p {
            font-size: 12px;
            color: var(--text-muted);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .payment-section {
            padding: 24px 16px;
            background-color: var(--bg-surface);
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            text-align: center;
        }
        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .payment-item i {
            font-size: 24px;
            color: var(--primary);
        }
        .payment-item span {
            font-size: 10px;
            color: var(--text-muted);
        }
        .win-records {
            height: 300px;
            overflow: hidden;
            background-color: var(--bg-card);
            margin: 16px;
            border-radius: 12px;
            position: relative;
            border: 1px solid var(--border-default);
        }
        .win-records-track {
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .win-item {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .win-user {
            color: var(--success);
            font-weight: 600;
        }
        .win-amount {
            color: var(--primary);
            font-weight: 700;
        }
        .win-meta {
            font-size: 12px;
            color: var(--text-muted);
            text-align: right;
        }
        .provider-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 16px;
        }
        .provider-item {
            background-color: var(--bg-overlay);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            color: var(--text-secondary);
        }
        .review-section {
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .review-card {
            background-color: var(--bg-card);
            padding: 16px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            background-color: var(--bg-overlay);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }
        .review-rating {
            color: var(--primary);
            font-size: 12px;
        }
        .faq-section {
            padding: 16px;
        }
        .faq-item {
            margin-bottom: 12px;
            background-color: var(--bg-card);
            border-radius: 8px;
            overflow: hidden;
        }
        .faq-question {
            padding: 16px;
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-default);
        }
        .faq-answer {
            padding: 16px;
            color: var(--text-secondary);
            font-size: 14px;
            background-color: var(--bg-surface);
        }
        .security-section {
            padding: 24px 16px;
            text-align: center;
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-default);
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 16px;
            font-size: 32px;
            color: var(--primary);
        }
        .security-text {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 8px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: var(--text-muted);
            font-size: 12px;
        }
        .nav-item i {
            font-size: 18px;
        }
        .nav-item.active {
            color: var(--primary);
        }
        footer {
            padding: 40px 16px 100px;
            background-color: var(--bg-main);
            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-muted);
            font-size: 14px;
        }
        .footer-copy {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }