:root {
            --bg-primary: #0D1117;
            --bg-secondary: #161B22;
            --bg-tertiary: #21262D;
            --brand-primary: #FFD700;
            --brand-secondary: #B8860B;
            --brand-accent: #00C853;
            --brand-highlight: #FF4500;
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #8B949E;
            --border-default: #30363D;
            --border-active: #FFD700;
            --radius: 12px;
        }
        * { 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.6;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--bg-secondary);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--brand-primary); color: #000; }
        .hero-banner { width: 100%; display: block; aspect-ratio: 2 / 1; object-fit: cover; cursor: pointer; }
        .jackpot-container {
            background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
            padding: 20px;
            text-align: center;
            margin: 15px;
            border-radius: var(--radius);
            border: 1px solid var(--brand-secondary);
        }
        .jackpot-label { color: var(--brand-primary); font-size: 18px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-value { font-family: 'Roboto', sans-serif; font-size: 32px; font-weight: 700; color: var(--brand-accent); letter-spacing: 2px; }
        .intro-section { padding: 20px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; }
        .intro-section p { color: var(--text-secondary); font-size: 15px; }
        .section-title { padding: 0 20px; margin: 20px 0 10px; font-size: 20px; color: var(--brand-primary); border-left: 4px solid var(--brand-primary); margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 15px; }
        .game-card { background: var(--bg-secondary); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-default); 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); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { padding: 15px; display: flex; flex-direction: column; gap: 12px; }
        .article-card { background: var(--bg-secondary); border-radius: var(--radius); display: flex; overflow: hidden; border: 1px solid var(--border-default); height: 100px; }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 10px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
        .article-content h3 { font-size: 14px; line-height: 1.3; margin-bottom: 5px; color: var(--brand-primary); }
        .article-content p { font-size: 12px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-section { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item { background: var(--bg-tertiary); padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 20px; color: var(--brand-primary); margin-bottom: 5px; }
        .payment-item span { font-size: 10px; display: block; color: var(--text-secondary); }
        .lottery-section { padding: 15px; background: var(--bg-secondary); margin: 15px; border-radius: var(--radius); }
        .lottery-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { color: var(--brand-primary); }
        .lottery-amount { color: var(--brand-accent); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-item { background: var(--bg-tertiary); padding: 15px; text-align: center; border-radius: 8px; font-weight: 600; color: var(--brand-primary); border: 1px solid var(--border-default); }
        .review-section { padding: 15px; }
        .review-card { background: var(--bg-secondary); padding: 15px; border-radius: var(--radius); 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: 24px; color: var(--text-muted); }
        .review-info h4 { font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; text-align: right; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-secondary); border-radius: 8px; margin-bottom: 10px; border: 1px solid var(--border-default); overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; color: var(--brand-primary); 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; text-align: center; background: var(--bg-tertiary); margin: 20px 15px; border-radius: var(--radius); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-accent); }
        .security-text { font-size: 13px; color: var(--text-muted); }
        .security-link { color: var(--brand-primary); text-decoration: underline; font-size: 13px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-secondary); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-default); z-index: 1000; }
        .nav-item { text-align: center; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; color: var(--text-muted); }
        .nav-item span { font-size: 12px; color: var(--text-muted); }
        footer { padding: 30px 15px 100px; background: #000; text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .footer-copyright { font-size: 12px; color: var(--text-disabled); border-top: 1px solid var(--bg-tertiary); padding-top: 15px; }