:root {
            --primary: #FFD700;
            --secondary: #B8860B;
            --accent: #00E676;
            --highlight: #FFAB00;
            --bg-main: #0D1117;
            --bg-surface: #161B22;
            --bg-overlay: #21262D;
            --bg-card: #1C2128;
            --text-primary: #FFFFFF;
            --text-secondary: #8B949E;
            --text-muted: #484F58;
            --text-action: #FFD700;
            --border-default: #30363D;
            --border-focused: #FFD700;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .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;
            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;
            transition: 0.3s;
        }
        .btn-login {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        .btn-register {
            background: var(--primary);
            color: var(--bg-main);
        }
        .hero {
            width: 100%;
            cursor: pointer;
        }
        .hero img {
            width: 100%;
            aspect-ratio: 2/1;
            display: block;
            object-fit: cover;
        }
        .jackpot-container {
            background: var(--bg-card);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--secondary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
        }
        .jackpot-title {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 5px;
            text-transform: uppercase;
        }
        .jackpot-amount {
            color: var(--primary);
            font-size: 32px;
            font-weight: 700;
            font-family: monospace;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); text-shadow: 0 0 0px var(--primary); }
            50% { transform: scale(1.05); text-shadow: 0 0 10px var(--primary); }
            100% { transform: scale(1); text-shadow: 0 0 0px var(--primary); }
        }
        .intro-section {
            padding: 20px 15px;
        }
        .intro-section h1 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .intro-section p {
            color: var(--text-secondary);
            font-size: 14px;
        }
        .section-title {
            padding: 0 15px;
            margin: 20px 0 10px;
            font-size: 20px;
            border-left: 4px solid var(--primary);
            margin-left: 15px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 15px;
        }
        .game-card {
            background: var(--bg-card);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: 0.3s;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .article-list {
            padding: 15px;
        }
        .article-item {
            display: flex;
            gap: 15px;
            background: var(--bg-surface);
            padding: 10px;
            border-radius: 8px;
            margin-bottom: 12px;
            border: 1px solid var(--border-default);
        }
        .article-item img {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            object-fit: cover;
        }
        .article-info h2 {
            font-size: 16px;
            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;
            border: 1px solid var(--border-default);
        }
        .payment-item i {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 8px;
            display: block;
        }
        .payment-item span {
            font-size: 10px;
            color: var(--text-secondary);
        }
        .records-list {
            padding: 15px;
        }
        .record-item {
            background: var(--bg-card);
            margin-bottom: 8px;
            padding: 10px 15px;
            border-radius: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            border-left: 3px solid var(--accent);
        }
        .record-user { color: var(--text-secondary); }
        .record-win { color: var(--accent); font-weight: bold; }
        .providers-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 15px;
        }
        .provider-block {
            background: linear-gradient(135deg, var(--bg-surface), var(--bg-overlay));
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border-default);
            font-weight: 600;
            color: var(--text-primary);
        }
        .reviews-container {
            padding: 15px;
        }
        .review-card {
            background: var(--bg-card);
            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-header i {
            font-size: 30px;
            color: var(--text-muted);
        }
        .review-user-info span {
            display: block;
            font-weight: bold;
            font-size: 14px;
        }
        .stars { color: var(--highlight); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 15px; }
        .faq-item {
            background: var(--bg-surface);
            border-radius: 8px;
            margin-bottom: 10px;
            border: 1px solid var(--border-default);
            overflow: hidden;
        }
        .faq-question {
            padding: 15px;
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 0 15px 15px;
            font-size: 14px;
            color: var(--text-secondary);
        }
        .security-section {
            padding: 20px 15px;
            background: var(--bg-surface);
            text-align: center;
            margin-bottom: 80px;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 30px;
            color: var(--accent);
        }
        .security-text { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 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: 1000;
        }
        .nav-item {
            text-align: center;
            color: var(--text-secondary);
            font-size: 11px;
        }
        .nav-item i {
            display: block;
            font-size: 20px;
            margin-bottom: 4px;
        }
        .nav-item.active { color: var(--primary); }
        footer {
            padding: 30px 15px 100px;
            background: var(--bg-main);
            border-top: 1px solid var(--border-default);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: var(--text-secondary);
            font-size: 13px;
            transition: 0.2s;
        }
        .footer-links a:hover { color: var(--primary); }
        .footer-copy {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }