:root {
            --bg-primary: #0B0E11;
            --bg-secondary: #161A1E;
            --bg-tertiary: #1E2329;
            --bg-elevated: #2B3139;
            --brand-primary: #FCD535;
            --brand-secondary: #F0B90B;
            --brand-accent: #FFD700;
            --trust-badge: #28A745;
            --text-primary: #EAECEF;
            --text-secondary: #929AA5;
            --text-muted: #707A8A;
            --text-brand: #FCD535;
            --success: #0ECB81;
            --error: #F6465D;
            --border-subtle: #2F3336;
            --border-active: #FCD535;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Inter', sans-serif;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        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-subtle);
        }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: 500; color: var(--brand-primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 6px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-subtle); }
        .btn-register { background: var(--brand-primary); color: #000; }
        .hero { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--brand-primary);
            box-shadow: 0 0 15px rgba(252, 213, 53, 0.1);
        }
        .jackpot-label { font-size: 14px; color: var(--brand-primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: var(--brand-accent); font-family: 'Inter', sans-serif; }
        .content-section { padding: 20px 15px; }
        h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; line-height: 1.3; }
        h2 { font-size: 20px; color: var(--text-primary); margin-bottom: 15px; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        h3 { font-size: 16px; margin-top: 8px; font-weight: 600; }
        .grid-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 25px; }
        .card { background: var(--bg-secondary); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .card-info { padding: 10px; text-align: center; }
        .article-card { background: var(--bg-tertiary); margin-bottom: 12px; border-radius: var(--radius); padding: 10px; display: flex; gap: 12px; align-items: center; }
        .article-card img { width: 80px; height: 60px; border-radius: 8px; object-fit: cover; }
        .article-card-body h3 { font-size: 14px; margin: 0; color: var(--brand-primary); }
        .article-card-body p { font-size: 12px; color: var(--text-secondary); height: 34px; overflow: hidden; }
        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; background: var(--bg-tertiary); padding: 20px; border-radius: var(--radius); }
        .payment-item i { font-size: 24px; color: var(--brand-secondary); display: block; margin-bottom: 5px; }
        .payment-item span { font-size: 10px; color: var(--text-muted); }
        .winners-box { background: var(--bg-secondary); padding: 15px; border-radius: var(--radius); margin-bottom: 25px; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-subtle); font-size: 13px; }
        .winner-row span:last-child { color: var(--success); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .provider-item { background: var(--bg-elevated); padding: 15px; text-align: center; border-radius: 8px; font-weight: bold; color: var(--text-primary); }
        .review-card { background: var(--bg-tertiary); padding: 15px; border-radius: var(--radius); margin-bottom: 15px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-meta h4 { font-size: 14px; }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); }
        .faq-item { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: var(--bg-tertiary); color: var(--brand-primary); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); border-top: 1px solid var(--border-subtle); }
        .responsible-gaming { text-align: center; padding: 30px 15px; background: var(--bg-tertiary); border-radius: var(--radius); margin-top: 20px; }
        .responsible-gaming i { font-size: 40px; color: var(--error); margin-bottom: 15px; }
        .responsible-gaming h2 { border: none; padding: 0; justify-content: center; display: flex; }
        .navigator { position: fixed; bottom: 0; width: 100%; height: 60px; background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-around; align-items: center; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; margin-bottom: 2px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { background: var(--bg-primary); padding: 40px 15px 100px; text-align: center; border-top: 1px solid var(--border-subtle); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { font-size: 14px; color: var(--text-muted); }
        .footer-bottom { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 20px; }