:root {
            --primary: #FFD700;
            --primary-variant: #C5A000;
            --secondary: #1A73E8;
            --accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #161A1E;
            --bg-elevated: #21262C;
            --text-primary: #FFFFFF;
            --text-secondary: #9BA3AF;
            --text-muted: #6B7280;
            --on-brand: #000000;
            --border-subtle: #2D3139;
            --border-default: #3F444E;
            --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;
        }
        header {
            background-color: var(--bg-surface);
            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);
        }
        .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(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background-color: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background-color: var(--primary); color: var(--on-brand); }
        .banner { width: 100%; cursor: pointer; display: block; }
        .banner img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
        .container { padding: 15px; }
        .jackpot-card {
            background: linear-gradient(135deg, var(--bg-surface) 0%, #2a2200 100%);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--primary); font-size: 18px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--text-primary); }
        .intro-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 20px; border: 1px solid var(--border-subtle); }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 12px; line-height: 1.25; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        section h2 { font-size: 20px; margin: 20px 0 15px; padding-left: 10px; border-left: 4px solid var(--primary); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-subtle); 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; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0; }
        .payment-item { background: var(--bg-elevated); padding: 10px; border-radius: 8px; text-align: center; font-size: 10px; }
        .payment-item i { font-size: 20px; color: var(--primary); display: block; margin-bottom: 5px; }
        .info-section { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 20px; }
        .info-section h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .info-section p { font-size: 14px; color: var(--text-secondary); margin-bottom: 15px; }
        .lottery-box { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); height: 200px; position: relative; }
        .lottery-marquee { position: absolute; width: 100%; animation: scrollUp 30s linear infinite; }
        @keyframes scrollUp { 0% { top: 100%; } 100% { top: -1000%; } }
        .lottery-item { padding: 12px 15px; border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; font-size: 13px; }
        .lottery-item span { color: var(--primary); }
        .provider-wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 20px; }
        .provider-item { background: var(--bg-elevated); padding: 15px; text-align: center; border-radius: 8px; font-weight: 600; color: var(--primary-variant); border: 1px solid var(--border-subtle); }
        .review-card { background: var(--bg-elevated); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .stars { color: #FFAB00; font-size: 12px; }
        .faq-item { background: var(--bg-surface); padding: 15px; border-radius: 8px; margin-bottom: 10px; border: 1px solid var(--border-subtle); }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { text-align: center; background: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; color: var(--primary); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-surface); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-subtle); z-index: 1000; }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-subtle); }
        .footer-contacts { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-contacts a { color: var(--primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-copy { font-size: 12px; color: var(--text-muted); }