:root {
            --primary: #FFD700;
            --secondary: #00A859;
            --accent: #FF4500;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #0B0E11;
            --bg-surface: #151A21;
            --bg-overlay: #1E232B;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border-default: #2D333B;
            --font-main: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { padding: 0 15px; width: 100%; }

        header {
            background-color: #000000;
            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: 8px; }
        .logo-img { width: 25px; height: 25px; object-fit: contain; }
        .platform-name { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--gold-gradient); color: #000; }

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

        .jackpot-section {
            background: var(--bg-surface);
            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; text-transform: uppercase; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            font-family: monospace;
        }

        .intro-section { padding: 20px 15px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--primary); margin-bottom: 10px; }
        .intro-section p { font-size: 14px; color: var(--text-secondary); }

        .section-title {
            padding: 15px;
            font-size: 20px;
            border-left: 4px solid var(--primary);
            margin: 10px 15px;
            background: var(--bg-surface);
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 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 { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
        .game-card h3 {
            font-size: 14px;
            padding: 10px;
            text-align: center;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .article-list { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-card {
            display: flex;
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            gap: 10px;
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-info { padding: 10px; flex: 1; }
        .article-info h3 { font-size: 15px; margin-bottom: 5px; color: var(--primary); }
        .article-info 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: 15px;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 10px;
        }
        .payment-item i { font-size: 20px; margin-bottom: 5px; color: var(--primary); }

        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }
        .provider-block {
            background: var(--bg-overlay);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            font-weight: 600;
            border-bottom: 2px solid var(--secondary);
        }

        .records-list {
            padding: 15px;
            background: var(--bg-surface);
            margin: 15px;
            border-radius: 10px;
        }
        .record-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-default);
            font-size: 13px;
        }
        .record-user { color: var(--primary); }
        .record-amount { color: var(--secondary); font-weight: bold; }

        .review-grid { padding: 15px; }
        .review-card {
            background: var(--bg-overlay);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border-default);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user-icon { width: 40px; height: 40px; background: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .star-rating { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }

        .faq-section { padding: 15px; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 8px;
            padding: 15px;
        }
        .faq-item h3 { font-size: 15px; color: var(--primary); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .security-section {
            padding: 20px 15px;
            text-align: center;
            background: var(--bg-overlay);
            margin-top: 20px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--secondary); }
        .security-text { font-size: 12px; color: var(--text-secondary); }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-navigation);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item.active { color: var(--primary); }

        footer {
            padding: 30px 15px 100px;
            background: #000;
            text-align: center;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .footer-copy { font-size: 12px; color: var(--text-muted); padding-top: 15px; border-top: 1px solid var(--border-default); }