:root {
            --bg-primary: #0D1117;
            --bg-secondary: #161B22;
            --bg-tertiary: #21262D;
            --overlay: rgba(0, 0, 0, 0.85);
            --brand-primary: #FFD700;
            --brand-variant: #FDB813;
            --brand-secondary: #00C853;
            --brand-accent: #FF3D00;
            --text-primary: #FFFFFF;
            --text-secondary: #B1B8C0;
            --text-muted: #8B949E;
            --border-default: #30363D;
            --border-active: #FFD700;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Anek Bangla', 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.6;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { padding: 0 15px; max-width: 1200px; margin: 0 auto; }
        header {
            background-color: var(--bg-secondary);
            border-bottom: 1px solid var(--border-default);
            height: 60px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 6px 16px;
            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-primary); color: var(--bg-primary); }
        .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: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
            padding: 20px 0;
            text-align: center;
            border-bottom: 2px solid var(--brand-primary);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--brand-primary);
            font-family: var(--font-secondary);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-section { padding: 30px 15px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; }
        .intro-section p { color: var(--text-secondary); font-size: 16px; }
        .section-title { font-size: 20px; margin: 25px 0 15px; padding-left: 10px; border-left: 4px solid var(--brand-primary); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 0 15px; }
        .game-card {
            background: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--brand-primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 14px; 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-tertiary);
            border-radius: 10px;
            overflow: hidden;
            gap: 12px;
            padding: 10px;
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; border-radius: 8px; }
        .article-info h3 { font-size: 16px; margin-bottom: 5px; color: var(--brand-primary); line-height: 1.3; }
        .article-info p { font-size: 13px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 20px 15px;
            background: var(--bg-secondary);
            margin-top: 20px;
        }
        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            color: var(--text-secondary);
            gap: 5px;
        }
        .payment-item i { font-size: 24px; color: var(--brand-primary); }
        .win-records {
            background: var(--bg-tertiary);
            margin: 20px 15px;
            padding: 15px;
            border-radius: 12px;
            height: 300px;
            overflow: hidden;
            position: relative;
        }
        .win-track { animation: scrollUp 40s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .win-item {
            padding: 10px 0;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }
        .win-item span:first-child { color: var(--brand-primary); }
        .providers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 15px; }
        .provider-block {
            background: var(--bg-tertiary);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            border: 1px solid var(--border-default);
        }
        .reviews { padding: 15px; }
        .review-card {
            background: var(--bg-secondary);
            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-rating { color: var(--brand-primary); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 12px; color: var(--text-muted); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; color: var(--brand-primary); display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; }
        .responsible-gaming {
            padding: 25px 15px;
            background: var(--bg-secondary);
            text-align: center;
            margin-top: 30px;
        }
        .age-badge {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            border: 2px solid var(--brand-accent);
            color: var(--brand-accent);
            border-radius: 50%;
            font-weight: bold;
            margin-bottom: 15px;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-tertiary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            color: var(--text-secondary);
            gap: 3px;
        }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--brand-primary); }
        footer {
            background: var(--bg-primary);
            padding: 30px 15px 80px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 15px; }