:root {
            --bg-primary: #0F1115;
            --bg-secondary: #1A1D23;
            --bg-surface: #242830;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --brand-primary: #FFD700;
            --brand-secondary: #B8860B;
            --brand-accent: #FF4500;
            --brand-gradient: linear-gradient(180deg, #FFD700 0%, #D4AF37 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #65676B;
            --text-brand: #FFD700;
            --border-default: #2D323A;
            --border-active: #FFD700;
            --success: #00C853;
            --info: #2979FF;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'SolaimanLipi', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: var(--bg-secondary);
            border-bottom: 1px solid var(--border-default);
            height: 60px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo-area img {
            width: 25px;
            height: 25px;
        }
        .logo-area strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-brand);
        }
        .auth-btns {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-default);
        }
        .btn-register {
            background: var(--brand-gradient);
            color: var(--bg-primary);
        }
        .hero {
            margin-top: 10px;
            cursor: pointer;
        }
        .hero img {
            width: 100%;
            aspect-ratio: 2 / 1;
            object-fit: cover;
            border-radius: 12px;
            display: block;
        }
        .jackpot-section {
            background: var(--bg-surface);
            margin: 20px 0;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-secondary);
        }
        .jackpot-title {
            color: var(--brand-primary);
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        .jackpot-amount {
            font-family: 'Inter', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-section {
            margin: 30px 0;
        }
        h1 {
            font-size: 1.5rem;
            color: var(--brand-primary);
            margin-bottom: 15px;
            line-height: 1.25;
        }
        .intro-section p {
            color: var(--text-secondary);
            font-size: 1rem;
        }
        h2 {
            font-size: 1.25rem;
            margin: 25px 0 15px;
            color: var(--brand-primary);
            border-left: 4px solid var(--brand-primary);
            padding-left: 10px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 10px;
            font-size: 0.875rem;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .article-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .article-card {
            display: flex;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .article-img {
            width: 100px;
            min-width: 100px;
            height: 100px;
            object-fit: cover;
        }
        .article-content {
            padding: 12px;
        }
        .article-content h3 {
            font-size: 0.95rem;
            margin-bottom: 5px;
            color: var(--brand-primary);
        }
        .article-content p {
            font-size: 0.8rem;
            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;
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
        }
        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            font-size: 0.75rem;
            color: var(--text-secondary);
        }
        .payment-item i {
            font-size: 1.5rem;
            color: var(--brand-primary);
        }
        .lottery-container {
            height: 300px;
            overflow: hidden;
            background: var(--bg-surface);
            border-radius: 12px;
            position: relative;
            border: 1px solid var(--border-default);
        }
        .lottery-scroll {
            animation: scrollUp 40s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .winner-row {
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .winner-info {
            font-size: 0.875rem;
        }
        .winner-name {
            color: var(--brand-primary);
            font-weight: 600;
        }
        .winner-game {
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .winner-amount {
            color: var(--success);
            font-weight: 700;
        }
        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .provider-block {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            border: 1px solid var(--border-default);
        }
        .reviews-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            border-left: 4px solid var(--brand-primary);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        .user-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .review-stars {
            color: var(--brand-primary);
            font-size: 0.8rem;
        }
        .review-text {
            font-size: 0.875rem;
            color: var(--text-secondary);
            font-style: italic;
        }
        .faq-section {
            margin-bottom: 30px;
        }
        .faq-item {
            background: var(--bg-surface);
            border-radius: 8px;
            margin-bottom: 10px;
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 1rem;
            color: var(--brand-primary);
            margin-bottom: 10px;
        }
        .faq-item p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .security-box {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px dashed var(--text-muted);
            margin-bottom: 80px;
        }
        .security-box i {
            font-size: 2rem;
            color: var(--info);
            margin-bottom: 10px;
        }
        .age-limit {
            display: inline-block;
            border: 2px solid var(--brand-accent);
            color: var(--brand-accent);
            padding: 2px 8px;
            border-radius: 50%;
            font-weight: 700;
            margin: 10px 0;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 600px;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            font-size: 0.75rem;
            color: var(--text-secondary);
        }
        .nav-item i {
            font-size: 1.25rem;
        }
        .nav-item.active {
            color: var(--brand-primary);
        }
        footer {
            background: var(--bg-secondary);
            padding: 30px 15px 100px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        .footer-links a {
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .copyright {
            font-size: 0.75rem;
            color: var(--text-muted);
        }