:root {
            --primary: #FFD700;
            --primary-hover: #E6C200;
            --secondary: #00A859;
            --accent: #FF4500;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #0B0E11;
            --bg-surface: #1B1F23;
            --bg-card: #24292E;
            --text-primary: #FFFFFF;
            --text-secondary: #9BA3AF;
            --border-default: #2D333B;
            --font-main: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
        }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-main);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            line-height: 1.5;
        }
        header {
            background-color: var(--bg-surface);
            padding: 10px 15px;
            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: 10px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .jackpot-section {
            background: var(--bg-card);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary);
        }
        .jackpot-title { color: var(--primary); font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-card { padding: 20px; margin: 15px; background: var(--bg-surface); border-radius: 12px; }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 0 15px; margin-top: 25px; font-size: 20px; border-left: 4px solid var(--primary); margin-left: 15px; }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 15px;
        }
        .game-card {
            background: var(--bg-card);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; margin: 0; }
        .payment-section {
            padding: 20px 15px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            background: var(--bg-surface);
        }
        .payment-item { text-align: center; font-size: 12px; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--primary); display: block; margin-bottom: 5px; }
        .guide-section { padding: 15px; }
        .guide-item { margin-bottom: 20px; background: var(--bg-card); padding: 15px; border-radius: 8px; }
        .guide-item h2 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .lottery-container {
            margin: 15px;
            background: var(--bg-card);
            border-radius: 8px;
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .lottery-list {
            position: absolute;
            width: 100%;
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            padding: 10px 15px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }
        .lottery-item .user { color: var(--primary); }
        .lottery-item .amount { color: var(--secondary); font-weight: bold; }
        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }
        .provider-item {
            background: linear-gradient(45deg, #24292E, #1B1F23);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            color: var(--primary);
            border: 1px solid var(--border-default);
        }
        .review-section { padding: 15px; }
        .review-card {
            background: var(--bg-card);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-secondary); }
        .stars { color: #FFC107; font-size: 12px; }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section {
            padding: 20px 15px;
            text-align: center;
            background: var(--bg-surface);
            margin-bottom: 70px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--secondary); }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        footer { background: var(--bg-main); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contacts a { color: var(--primary); text-decoration: none; font-size: 14px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 25px;
        }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; text-align: center; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-secondary); }