:root {
            --bg-primary: #0A0D10;
            --bg-secondary: #161B22;
            --bg-surface: #1F2630;
            --brand-gold: #FFD700;
            --brand-gold-dark: #C5A021;
            --accent-red: #E63946;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border-default: #2D333B;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-accent: 'Tiro Bangla', 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.6;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: 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; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-gold); }
        .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(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--brand-gold); color: var(--bg-primary); }
        .hero-banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-surface) 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-gold-dark);
        }
        .jackpot-title { color: var(--brand-gold); font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: 'Courier New', monospace;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .section-container { padding: 20px 15px; }
        h1 { font-size: 28px; color: var(--brand-gold); margin-bottom: 15px; font-family: var(--font-accent); }
        h2 { font-size: 24px; color: var(--brand-gold); margin-bottom: 20px; border-left: 4px solid var(--brand-gold); padding-left: 10px; }
        h3 { font-size: 16px; color: var(--text-primary); margin: 10px 0; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .game-card {
            background: var(--bg-secondary);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .article-list { display: flex; flex-direction: column; gap: 15px; }
        .article-card {
            background: var(--bg-secondary);
            border-radius: 10px;
            display: flex;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-default);
        }
        .article-image { width: 100px; height: 100px; flex-shrink: 0; }
        .article-image img { width: 100%; height: 100%; object-fit: cover; }
        .article-content { padding: 10px; flex-grow: 1; }
        .article-content h3 { font-size: 14px; margin: 0 0 5px 0; color: var(--brand-gold); }
        .article-content 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; }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 10px;
            border: 1px solid var(--border-default);
        }
        .payment-item i { font-size: 20px; color: var(--brand-gold); margin-bottom: 5px; display: block; }
        .winning-ticker {
            height: 250px;
            overflow: hidden;
            background: var(--bg-secondary);
            border-radius: 10px;
            position: relative;
            border: 1px solid var(--border-default);
        }
        .winning-list {
            position: absolute;
            width: 100%;
            animation: scrollUp 40s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100%); }
        }
        .winning-item {
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }
        .winner-name { color: var(--brand-gold); font-weight: 600; }
        .winner-amount { color: var(--accent-red); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }
        .review-card {
            background: var(--bg-secondary);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 15px;
            border-left: 4px solid var(--brand-gold);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .review-name { font-weight: 600; font-size: 14px; }
        .stars { color: var(--brand-gold); font-size: 12px; }
        .review-body { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .faq-item {
            background: var(--bg-secondary);
            border-radius: 8px;
            margin-bottom: 10px;
            padding: 15px;
            border: 1px solid var(--border-default);
        }
        .faq-question { font-weight: 600; color: var(--brand-gold); margin-bottom: 8px; font-size: 16px; }
        .faq-answer { color: var(--text-secondary); font-size: 14px; }
        .security-box {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-top: 20px;
        }
        .security-box i { font-size: 30px; color: var(--brand-gold); margin-bottom: 10px; }
        .age-limit {
            display: inline-block;
            border: 2px solid var(--accent-red);
            color: var(--accent-red);
            padding: 2px 8px;
            border-radius: 50%;
            font-weight: 900;
            margin-bottom: 10px;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 10px; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 3px; }
        .nav-item:nth-child(3) i { color: var(--brand-gold); font-size: 24px; }
        footer {
            background: var(--bg-secondary);
            padding: 30px 15px 80px;
            text-align: center;
            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); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: var(--text-secondary); opacity: 0.8; }