:root {
            --primary-gold: #FFD700;
            --secondary-gold: #C5A059;
            --accent-green: #00C853;
            --vibrant-red: #FF3D00;
            --bg-main: #050505;
            --bg-surface: #121212;
            --bg-elevated: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border-default: #2C2C2C;
            --font-main: '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-main);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        header {
            height: 60px;
            background: var(--bg-surface);
            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: 10px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            padding: 6px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-register { background: var(--primary-gold); color: #000; }
        main { max-width: 1000px; margin: 0 auto; padding: 10px; }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 20px;
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(145deg, #1e1e1e, #121212);
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--primary-gold); font-size: 1.2rem; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { font-size: 2.5rem; color: var(--accent-green); font-weight: 800; font-family: 'Inter', sans-serif; }
        .intro-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            border-left: 4px solid var(--primary-gold);
        }
        .intro-card h1 { font-size: 1.5rem; color: var(--primary-gold); margin-bottom: 10px; }
        .intro-card p { color: var(--text-secondary); font-size: 0.95rem; }
        .section-header { margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 1.25rem; color: var(--text-primary); border-bottom: 2px solid var(--primary-gold); padding-bottom: 5px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-elevated); border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 0.9rem; padding: 8px; text-align: center; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; }
        .payment-item { background: var(--bg-surface); padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 1.5rem; color: var(--secondary-gold); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 0.75rem; color: var(--text-secondary); }
        .guide-section { display: grid; gap: 15px; margin-bottom: 25px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 10px; border-top: 2px solid var(--secondary-gold); }
        .guide-card h3 { color: var(--primary-gold); margin-bottom: 8px; font-size: 1.1rem; }
        .guide-card p { font-size: 0.9rem; color: var(--text-secondary); }
        .lottery-container { background: var(--bg-surface); border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .lottery-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-default); font-size: 0.85rem; }
        .lottery-item:last-child { border-bottom: none; }
        .winner-name { color: var(--primary-gold); }
        .winner-amount { color: var(--accent-green); font-weight: 700; }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-box { background: linear-gradient(45deg, #1a1a1a, #252525); padding: 15px; text-align: center; border-radius: 8px; font-weight: 700; color: var(--secondary-gold); border: 1px solid var(--border-default); }
        .reviews-container { display: grid; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-elevated); padding: 15px; border-radius: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 1.5rem; color: var(--primary-gold); }
        .stars { color: #FFAB00; font-size: 0.8rem; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; color: var(--primary-gold); }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 0.9rem; }
        .security-box { background: #0a1a0a; border: 1px solid var(--accent-green); padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 25px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 1.5rem; color: var(--accent-green); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 0.7rem; color: var(--text-secondary); }
        .nav-item i { font-size: 1.2rem; margin-bottom: 4px; }
        footer {
            background: var(--bg-surface);
            padding: 30px 15px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
        .footer-contacts a { color: var(--primary-gold); font-size: 0.9rem; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; text-align: left; }
        .footer-links a { color: var(--text-secondary); font-size: 0.85rem; }
        .copyright { font-size: 0.8rem; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 15px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .payment-grid { grid-template-columns: repeat(8, 1fr); }
            .providers-wall { grid-template-columns: repeat(4, 1fr); }
        }