:root {
            --bg-primary: #0A0B0C;
            --bg-secondary: #141618;
            --bg-surface: #1E2124;
            --bg-elevated: #2A2D32;
            --brand-primary: #FFD700;
            --brand-variant: #C5A000;
            --brand-secondary: #00E676;
            --brand-accent: #FF3D00;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #65676B;
            --text-brand: #000000;
            --border-default: #303338;
            --border-active: #FFD700;
            --font-primary: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Noto Sans Bengali', sans-serif;
        }

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

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-primary);
            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 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }

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

        .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-login, .btn-register {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }

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

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

        .btn-login:active, .btn-register:active {
            transform: scale(0.95);
        }

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

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

        .jackpot-container {
            margin: 20px 15px;
            background: linear-gradient(135deg, #1e2124 0%, #2a2d32 100%);
            border: 2px solid var(--brand-primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }

        .jackpot-title {
            color: var(--brand-primary);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--brand-secondary);
            font-family: var(--font-secondary);
            letter-spacing: 1px;
        }

        .platform-intro {
            padding: 25px 15px;
            text-align: center;
        }

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

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

        .section-title {
            padding: 0 15px;
            margin: 25px 0 15px;
            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-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-default);
            transition: border-color 0.3s;
        }

        .game-card:hover {
            border-color: var(--brand-primary);
        }

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

        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

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

        .article-item {
            display: flex;
            background: var(--bg-secondary);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            gap: 12px;
            padding: 10px;
            border: 1px solid var(--border-default);
        }

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

        .article-info h3 {
            font-size: 15px;
            color: var(--brand-primary);
            margin-bottom: 5px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-info p {
            font-size: 13px;
            color: var(--text-secondary);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .payment-license {
            margin: 30px 15px;
            background: var(--bg-secondary);
            padding: 20px;
            border-radius: 12px;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }

        .payment-item i {
            font-size: 24px;
            color: var(--brand-primary);
            margin-bottom: 5px;
        }

        .payment-item span {
            display: block;
            font-size: 11px;
            color: var(--text-secondary);
        }

        .lottery-section {
            background: var(--bg-secondary);
            margin: 20px 15px;
            border-radius: 12px;
            padding: 15px;
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .lottery-scroll {
            display: flex;
            flex-direction: column;
            gap: 10px;
            animation: scrollUp 40s linear infinite;
        }

        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        .lottery-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 12px;
            background: var(--bg-surface);
            border-radius: 8px;
            font-size: 13px;
        }

        .lottery-user { color: var(--brand-primary); }
        .lottery-amount { color: var(--brand-secondary); font-weight: bold; }

        .providers-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 0 15px;
        }

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

        .review-grid {
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .review-card {
            background: var(--bg-elevated);
            padding: 15px;
            border-radius: 12px;
            border-left: 3px solid var(--brand-primary);
        }

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

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

        .review-name { font-weight: 600; font-size: 15px; }

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

        .review-content {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .review-date {
            font-size: 11px;
            color: var(--text-muted);
        }

        .faq-section {
            padding: 0 15px;
            margin-bottom: 30px;
        }

        .faq-item {
            background: var(--bg-surface);
            border-radius: 8px;
            margin-bottom: 10px;
            padding: 15px;
        }

        .faq-item h3 {
            font-size: 16px;
            color: var(--brand-primary);
            margin-bottom: 10px;
        }

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

        .security-section {
            margin: 20px 15px;
            padding: 20px;
            background: var(--bg-elevated);
            border-radius: 12px;
            text-align: center;
        }

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

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

        .security-text a {
            color: var(--brand-primary);
            text-decoration: none;
        }

        .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 {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: var(--text-secondary);
        }

        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 12px; }

        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: 10px;
            margin-bottom: 25px;
        }

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

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

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .providers-grid { grid-template-columns: repeat(4, 1fr); }
            .hero-banner { aspect-ratio: 3 / 1; }
        }