:root {
            --primary: #FFD700;
            --primary-hover: #E6C200;
            --secondary: #00A86B;
            --accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-elevated: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #848E9C;
            --border-light: #2B3139;
            --font-primary: 'Hind Siliguri', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        .container { max-width: 800px; margin: 0 auto; padding: 0 15px; }
        header {
            background-color: var(--bg-main);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-light);
        }
        .nav-top { display: flex; justify-content: space-between; align-items: center; }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .auth-buttons { display: flex; gap: 8px; }
        .btn {
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background-color: var(--bg-elevated); color: var(--text-primary); }
        .btn-reg { background-color: var(--primary); color: #000; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; border-radius: 8px; margin: 15px 0; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, #1e2329 0%, #0b0e11 100%);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
        }
        .jackpot-title { color: var(--primary); font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: var(--text-primary); font-family: monospace; }
        .intro-section { margin-bottom: 30px; }
        .intro-section h1 { font-size: 24px; color: var(--primary); margin-bottom: 15px; }
        .intro-section p { color: var(--text-secondary); font-size: 15px; text-align: justify; }
        .section-title { font-size: 20px; color: var(--primary); margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-light); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; color: var(--text-primary); }
        .article-list { display: flex; flex-direction: column; gap: 15px; }
        .article-card { background: var(--bg-surface); border-radius: 10px; display: flex; gap: 15px; padding: 10px; border: 1px solid var(--border-light); }
        .article-card img { width: 80px; height: 80px; border-radius: 6px; object-fit: cover; }
        .article-content h3 { font-size: 15px; color: var(--primary); margin-bottom: 5px; }
        .article-content p { font-size: 12px; color: var(--text-muted); 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; margin-bottom: 20px; }
        .payment-item { background: var(--bg-surface); padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-light); }
        .payment-item i { font-size: 24px; color: var(--primary); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); }
        .winner-list { background: var(--bg-surface); border-radius: 10px; padding: 15px; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-light); font-size: 13px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-user { color: var(--primary); font-weight: 600; }
        .winner-amount { color: var(--secondary); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-block { background: var(--bg-elevated); padding: 20px; text-align: center; border-radius: 8px; font-weight: 700; color: var(--text-primary); }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 10px; border-left: 4px solid var(--primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-info h4 { font-size: 14px; }
        .review-rating { color: var(--primary); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 5px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { margin-top: 30px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { background: var(--bg-elevated); padding: 20px; border-radius: 10px; text-align: center; margin: 30px 0; }
        .security-icons { display: flex; justify-content: center; gap: 20px; font-size: 30px; margin-bottom: 15px; }
        .security-icons i { color: var(--secondary); }
        .security-section p { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .security-link { color: var(--primary); font-weight: 600; text-decoration: underline; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-nav); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-light); z-index: 1000; }
        .nav-item { text-align: center; color: var(--text-muted); font-size: 11px; flex: 1; }
        .nav-item i { font-size: 18px; display: block; margin-bottom: 3px; }
        .nav-item:nth-child(3) { color: var(--primary); }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-light); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-light); padding-top: 20px; }
        @media (min-width: 600px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .review-grid { grid-template-columns: 1fr 1fr; }
        }