:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-tertiary: #262626;
            --surface: #121212;
            --overlay: rgba(0, 0, 0, 0.85);
            --gold: #FFD700;
            --gold-dark: #B8860B;
            --red: #D40000;
            --yellow: #FFF000;
            --grad-gold: linear-gradient(180deg, #FFD700 0%, #D4AF37 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --border-default: #333333;
            --font-main: 'Hind Siliguri', 'Kohinoor Bangla', 'SolaimanLipi', sans-serif;
            --font-alt: 'Roboto', 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            background: 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; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--gold); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 6px 14px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
        .btn-register { background: var(--grad-gold); color: #000; }

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

        .jackpot-section {
            background: var(--surface);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--gold-dark);
        }
        .jackpot-label { color: var(--gold); font-size: 18px; margin-bottom: 10px; font-weight: 600; }
        .jackpot-amount {
            font-family: var(--font-alt);
            font-size: 32px;
            font-weight: 700;
            color: var(--yellow);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

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

        .section-title { padding: 15px 15px 5px; font-size: 20px; color: var(--gold); border-left: 4px solid var(--gold); margin-left: 15px; }
        
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 15px;
        }
        .game-card {
            background: var(--bg-tertiary);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.95); }
        .game-card img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
        .game-card h3 { font-size: 14px; padding: 8px; text-align: center; color: var(--text-primary); }

        .article-list { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-card {
            display: flex;
            background: var(--bg-secondary);
            border-radius: 8px;
            overflow: hidden;
            gap: 12px;
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 100px; height: 80px; object-fit: cover; flex-shrink: 0; }
        .article-info { padding: 10px; display: flex; flex-direction: column; justify-content: center; }
        .article-info h2 { font-size: 14px; color: var(--gold); margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
        .article-info p { font-size: 12px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        .payment-license {
            background: var(--surface);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .pl-item i { font-size: 24px; color: var(--gold); margin-bottom: 5px; }
        .pl-item span { font-size: 10px; display: block; color: var(--text-secondary); }

        .win-records {
            background: var(--bg-secondary);
            margin: 15px;
            padding: 15px;
            border-radius: 10px;
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .win-scroll {
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100%); }
        }
        .win-item {
            padding: 8px 0;
            border-bottom: 1px solid var(--border-default);
            font-size: 12px;
            display: flex;
            justify-content: space-between;
        }
        .win-item span:first-child { color: var(--gold); }

        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }
        .provider-block {
            background: var(--bg-tertiary);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            border: 1px solid var(--border-default);
            color: var(--gold);
            font-weight: bold;
        }

        .review-list { padding: 15px; }
        .review-card {
            background: var(--bg-tertiary);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
            border: 1px solid var(--border-default);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-header .name { font-weight: 600; color: var(--gold); }
        .stars { color: var(--yellow); 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-secondary); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; color: var(--gold); font-weight: 600; font-size: 15px; cursor: pointer; border-bottom: 1px solid var(--border-default); }
        .faq-answer { padding: 15px; color: var(--text-secondary); font-size: 14px; }

        .security-section {
            background: var(--surface);
            margin: 15px;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }
        .security-section i { font-size: 40px; color: var(--gold); margin-bottom: 15px; }
        .security-section p { font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }
        .security-links { display: flex; justify-content: center; gap: 15px; font-size: 12px; color: var(--gold); }

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-default);
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; color: var(--gold); }

        footer {
            background: var(--bg-tertiary);
            padding: 30px 15px 80px;
            text-align: center;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        .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); }