:root {
            --bg-primary: #0A0E17;
            --bg-secondary: #161B22;
            --bg-tertiary: #1F2937;
            --brand-primary: #FFD700;
            --brand-secondary: #B8860B;
            --brand-accent: #FF4500;
            --text-primary: #FFFFFF;
            --text-secondary: #9CA3AF;
            --gold: #FFD700;
            --border-default: #374151;
            --border-active: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        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);
        }
        .logo-container { display: flex; align-items: center; gap: 8px; }
        .logo-img { width: 25px; height: 25px; object-fit: contain; }
        .platform-name { font-size: 16px; font-weight: normal; color: var(--gold); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 6px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--brand-primary); 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: linear-gradient(180deg, #161B22 0%, #0A0E17 100%);
            padding: 20px 15px;
            text-align: center;
            border-bottom: 1px solid var(--border-default);
        }
        .jackpot-title { color: var(--gold); font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount {
            font-family: 'Tiro Bangla', serif;
            font-size: 32px;
            color: var(--brand-primary);
            font-weight: 700;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-section { padding: 25px 15px; background: var(--bg-secondary); }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; line-height: 1.2; }
        .intro-section p { font-size: 16px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 20px 15px 10px; font-size: 20px; color: var(--gold); border-left: 4px solid var(--brand-primary); margin-left: 15px; margin-top: 20px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card {
            background: var(--bg-tertiary);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            text-decoration: none;
            transition: transform 0.2s;
        }
        .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; 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: 10px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            text-decoration: none;
        }
        .article-image { width: 100px; height: 100px; flex-shrink: 0; }
        .article-image img { width: 100%; height: 100%; object-fit: cover; }
        .article-info { padding: 10px; }
        .article-info h3 { font-size: 16px; color: var(--gold); margin-bottom: 5px; }
        .article-info p { font-size: 13px; color: var(--text-secondary); height: 40px; overflow: hidden; }
        .payment-section { padding: 20px 15px; background: var(--bg-tertiary); margin: 20px 0; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 11px; }
        .payment-item i { font-size: 24px; color: var(--gold); }
        .win-ticker {
            height: 200px;
            overflow: hidden;
            background: #000;
            margin: 15px;
            border-radius: 8px;
            border: 1px solid var(--border-default);
            position: relative;
        }
        .win-scroll { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .win-item {
            padding: 10px 15px;
            border-bottom: 1px solid #1a1d24;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }
        .win-user { color: var(--gold); }
        .win-amount { color: #22C55E; font-weight: bold; }
        .providers-section { padding: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-block { background: var(--bg-tertiary); padding: 15px; border-radius: 8px; text-align: center; border: 1px solid var(--border-default); font-weight: bold; }
        .reviews-section { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-secondary); padding: 15px; border-radius: 12px; 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-secondary); }
        .stars { color: #F59E0B; font-size: 12px; }
        .faq-section { padding: 20px 15px; }
        .faq-item { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--gold); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; }
        .security-section { padding: 20px 15px; background: #000; text-align: center; border-top: 2px solid var(--brand-primary); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--gold); }
        .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: 1000;
        }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; font-size: 12px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { padding: 30px 15px 80px; background: #05070a; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }