:root {
            --bg-primary: #0B0E11;
            --bg-secondary: #151A21;
            --bg-tertiary: #1E2329;
            --brand-primary: #FCD535;
            --brand-hover: #FFE066;
            --brand-accent: #FFD700;
            --text-primary: #EAECEF;
            --text-secondary: #848E9C;
            --text-highlight: #FCD535;
            --border-default: #2B3139;
            --border-active: #FCD535;
            --radius-md: 12px;
            --radius-sm: 8px;
        }

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

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', system-ui, -apple-system, sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }

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

        .header-right {
            display: flex;
            gap: 10px;
        }

        .btn {
            border: none;
            border-radius: 4px;
            padding: 6px 12px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

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

        .btn-register {
            background: var(--brand-primary);
            color: #000;
        }

        .hero-banner {
            width: 100%;
            cursor: pointer;
            display: block;
        }

        .hero-banner img {
            width: 100%;
            aspect-ratio: 2 / 1;
            object-fit: cover;
            display: block;
        }

        .jackpot-section {
            background: var(--bg-tertiary);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius-md);
            text-align: center;
            border: 1px solid var(--border-default);
        }

        .jackpot-amount {
            font-size: 28px;
            font-weight: 700;
            color: var(--brand-primary);
            margin-top: 10px;
        }

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

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

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

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

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

        .game-card {
            background: var(--bg-secondary);
            border-radius: var(--radius-sm);
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-default);
            transition: 0.3s;
        }

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

        .game-card h3 {
            padding: 8px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
        }

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

        .article-item {
            background: var(--bg-tertiary);
            border-radius: var(--radius-md);
            overflow: hidden;
            display: flex;
            text-decoration: none;
            border: 1px solid var(--border-default);
        }

        .article-img {
            width: 100px;
            height: 100px;
            flex-shrink: 0;
        }

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

        .article-content {
            padding: 10px;
        }

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

        .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: 15px 16px;
            border-radius: var(--radius-md);
        }

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

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

        .scrolling-wins {
            height: 200px;
            overflow: hidden;
            background: var(--bg-tertiary);
            margin: 15px 16px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-default);
            position: relative;
        }

        .win-list {
            position: absolute;
            width: 100%;
            animation: scrollUp 20s linear infinite;
        }

        @keyframes scrollUp {
            0% { top: 0; }
            100% { top: -100%; }
        }

        .win-item {
            padding: 10px 15px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            font-size: 12px;
        }

        .win-user { color: var(--brand-primary); }
        .win-amount { color: #0ECB81; font-weight: bold; }

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

        .provider-block {
            background: var(--bg-tertiary);
            padding: 15px;
            text-align: center;
            border-radius: var(--radius-sm);
            font-weight: 600;
            color: var(--text-primary);
            border: 1px solid var(--border-default);
        }

        .reviews-section {
            padding: 0 16px;
        }

        .review-card {
            background: var(--bg-secondary);
            padding: 15px;
            border-radius: var(--radius-md);
            margin-bottom: 15px;
            border: 1px solid var(--border-default);
        }

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

        .review-user-icon {
            width: 35px;
            height: 35px;
            background: var(--bg-tertiary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-primary);
        }

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

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

        .review-date {
            font-size: 11px;
            color: var(--text-disabled);
            margin-top: 8px;
            text-align: right;
        }

        .faq-section {
            padding: 0 16px 20px;
        }

        .faq-item {
            margin-bottom: 12px;
            background: var(--bg-secondary);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-default);
        }

        .faq-question {
            padding: 12px 15px;
            font-weight: 600;
            color: var(--brand-primary);
            cursor: pointer;
            font-size: 15px;
        }

        .faq-answer {
            padding: 0 15px 12px;
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .safety-section {
            margin: 20px 16px;
            padding: 20px;
            background: var(--bg-tertiary);
            border-radius: var(--radius-md);
            text-align: center;
            border: 1px solid var(--border-default);
        }

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

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

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

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

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

        footer {
            padding: 30px 16px 100px;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-default);
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
        }

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