:root {
            --bg-primary: #0a0b0d;
            --bg-secondary: #16181d;
            --bg-tertiary: #1e2126;
            --overlay: rgba(0, 0, 0, 0.85);
            --brand-primary: #ffbf00;
            --brand-secondary: #d4af37;
            --brand-accent: #ff4d4d;
            --brand-gradient: linear-gradient(180deg, #ffbf00 0%, #b8860b 100%);
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --text-muted: #6b7280;
            --text-contrast: #000000;
            --border-subtle: #2d3436;
            --border-default: #3f444e;
            --border-active: #ffbf00;
            --success: #00c853;
            --error: #ff3d00;
            --font-main: '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-main);
            line-height: 1.5;
            overflow-x: hidden;
        }

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

        .header-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: var(--brand-primary);
        }

        .header-logo img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

        .header-logo strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-primary);
        }

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

        .btn {
            border: none;
            border-radius: 6px;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

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

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

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

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

        .jackpot-container {
            background: var(--bg-tertiary);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-default);
            position: relative;
            overflow: hidden;
        }

        .jackpot-label {
            color: var(--brand-primary);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: block;
        }

        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: var(--font-secondary);
        }

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

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

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

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

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

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

        .game-card:active {
            transform: scale(0.95);
        }

        .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-card {
            display: flex;
            gap: 12px;
            background: var(--bg-secondary);
            border-radius: 10px;
            padding: 10px;
            text-decoration: none;
            align-items: center;
        }

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

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

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

        .payment-section {
            padding: 20px 15px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .payment-item {
            background: var(--bg-tertiary);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 8px;
            border: 1px solid var(--border-subtle);
        }

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

        .payment-item span {
            font-size: 10px;
            color: var(--text-muted);
        }

        .lottery-wrapper {
            margin: 20px 15px;
            background: var(--bg-secondary);
            border-radius: 12px;
            height: 250px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-subtle);
        }

        .lottery-scroll {
            position: absolute;
            width: 100%;
            animation: scrollUp 40s linear infinite;
        }

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

        .lottery-item {
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .lottery-info div:first-child {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
        }

        .lottery-info div:last-child {
            font-size: 12px;
            color: var(--text-muted);
        }

        .lottery-amount {
            color: var(--success);
            font-weight: 700;
            font-size: 14px;
        }

        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
        }

        .provider-block {
            background: var(--bg-tertiary);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            font-weight: 700;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }

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

        .review-card {
            background: var(--bg-secondary);
            padding: 15px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }

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

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

        .review-meta h4 {
            font-size: 14px;
        }

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

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

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

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

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

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

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

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

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

        .security-text {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.6;
        }

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

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1001;
        }

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

        .nav-item i {
            font-size: 18px;
        }

        .nav-item:nth-child(3) {
            color: var(--brand-primary);
        }

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

        .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-muted);
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
        }

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