:root {
            --bg-primary: #0A0E17;
            --bg-secondary: #161B28;
            --bg-tertiary: #1E2533;
            --brand-primary: #FFD700;
            --brand-secondary: #FFB800;
            --accent: #00E676;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B8C1;
            --text-muted: #6C757D;
            --border-default: #2D3748;
            --gradient-gold: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
        }
        * { 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;
            overflow-x: hidden;
        }
        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);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            text-decoration: none;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--gradient-gold); color: #000; }
        .hero { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .hero img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: var(--bg-tertiary);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-primary);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 14px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--accent); font-family: sans-serif; }
        .section-intro { padding: 20px 15px; text-align: center; }
        .section-intro h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; line-height: 1.25; }
        .section-intro p { font-size: 16px; color: var(--text-secondary); text-align: justify; }
        .game-section { padding: 15px; }
        .section-title { font-size: 20px; margin-bottom: 15px; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card {
            background: var(--bg-secondary);
            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; color: var(--text-primary); text-align: center; }
        .article-list { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-card {
            display: flex;
            background: var(--bg-secondary);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-default);
        }
        .article-image { width: 100px; min-width: 100px; }
        .article-image img { width: 100%; height: 100%; object-fit: cover; }
        .article-content { padding: 12px; }
        .article-content h3 { font-size: 14px; color: var(--brand-primary); margin-bottom: 5px; }
        .article-content p { font-size: 12px; color: var(--text-secondary); height: 36px; overflow: hidden; }
        .payment-section { padding: 15px; background: var(--bg-secondary); margin: 15px 0; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .payment-item i { font-size: 24px; color: var(--brand-secondary); }
        .payment-item span { font-size: 10px; color: var(--text-muted); }
        .winners-section { padding: 15px; background: #000; height: 300px; overflow: hidden; position: relative; }
        .winners-scroll { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .winner-row {
            display: flex;
            justify-content: space-between;
            padding: 10px;
            border-bottom: 1px solid var(--bg-tertiary);
            font-size: 13px;
        }
        .winner-name { color: var(--brand-primary); }
        .winner-amount { color: var(--accent); font-weight: bold; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-block { background: var(--bg-tertiary); padding: 15px; border-radius: 8px; text-align: center; font-weight: bold; border: 1px solid var(--border-default); }
        .reviews-section { padding: 15px; }
        .review-card { background: var(--bg-secondary); padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 4px solid var(--brand-primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-secondary); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--brand-primary); cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section { padding: 20px 15px; text-align: center; background: var(--bg-tertiary); border-top: 1px solid var(--border-default); }
        .security-icons { font-size: 30px; display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; color: var(--brand-primary); }
        .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-align: center; text-decoration: none; color: var(--text-secondary); flex: 1; }
        .nav-item i { font-size: 18px; display: block; margin-bottom: 2px; }
        .nav-item span { font-size: 12px; }
        footer { padding: 30px 15px 100px; background: #05070a; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 12px; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--bg-tertiary); }