:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-tertiary: #262626;
            --brand-primary: #FFD700;
            --brand-secondary: #C5A021;
            --brand-accent: #FF4500;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #9E9E9E;
            --border-default: #333333;
            --border-active: #FFD700;
        }
        * { 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;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-secondary);
            border-bottom: 1px solid var(--border-default);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        header .logo-area { display: flex; align-items: center; gap: 8px; }
        header img { width: 25px; height: 25px; object-fit: contain; }
        header strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            text-decoration: none;
            transition: opacity 0.2s;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        main { max-width: 800px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; border: 1px solid var(--border-default); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: var(--bg-tertiary);
            border: 2px solid var(--brand-primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 18px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: #fff; font-family: 'Inter', sans-serif; }
        .intro-card { background: var(--bg-secondary); padding: 20px; border-radius: 12px; margin-bottom: 25px; border-left: 4px solid var(--brand-primary); }
        .intro-card h1 { font-size: 22px; color: var(--brand-primary); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { font-size: 22px; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; border-bottom: 2px solid var(--bg-tertiary); padding-bottom: 5px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: var(--brand-primary); display: inline-block; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-secondary); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 14px; padding: 8px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background: var(--bg-secondary); padding: 15px; border-radius: 12px; margin-bottom: 25px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 10px; color: var(--text-muted); }
        .payment-item i { font-size: 20px; color: var(--brand-primary); }
        .guides-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: var(--bg-tertiary); padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 18px; color: var(--brand-primary); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .lottery-box { background: #000; border: 1px solid var(--border-default); border-radius: 10px; height: 200px; overflow: hidden; position: relative; margin-bottom: 25px; }
        .lottery-track { position: absolute; width: 100%; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { top: 0; } 100% { top: -100%; } }
        .lottery-item { padding: 10px 15px; border-bottom: 1px solid var(--bg-tertiary); display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
        .winner-name { color: var(--brand-primary); }
        .winner-amount { color: var(--semantic-success, #00C853); font-weight: bold; }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-tag { background: var(--bg-secondary); padding: 12px; text-align: center; border-radius: 8px; font-weight: bold; color: var(--brand-secondary); border: 1px solid var(--border-default); }
        .reviews-grid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-secondary); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .user-info { display: flex; align-items: center; gap: 8px; }
        .stars { color: #FFAB00; font-size: 12px; }
        .faq-container { margin-bottom: 25px; }
        .faq-item { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { background: #111; padding: 20px; border-radius: 12px; text-align: center; border: 1px dashed var(--brand-primary); margin-bottom: 25px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-primary); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #111; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-default); z-index: 1000; }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-muted); font-size: 12px; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }
        footer { background: #000; padding: 30px 15px; text-align: center; border-top: 2px solid var(--bg-tertiary); }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { color: var(--brand-primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--bg-tertiary); padding-top: 15px; }