:root {
            --primary: #FFD700;
            --primary-variant: #C5A000;
            --secondary: #D32F2F;
            --accent: #00E676;
            --bg-default: #0B0E11;
            --bg-paper: #181A20;
            --bg-surface: #1E2329;
            --text-primary: #FFFFFF;
            --text-secondary: #EAECEF;
            --text-muted: #848E9C;
            --border-default: #2B3139;
            --border-focused: #F0B90B;
            --success: #0ECB81;
            --error: #F6465D;
            --font-main: 'Hind Siliguri', sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-paper);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        header .brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: inherit; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; }
        header .actions { display: flex; gap: 10px; }
        header .actions button {
            padding: 8px 16px;
            border-radius: 4px;
            border: none;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.2s;
        }
        header .login-btn { background-color: transparent; color: var(--primary); border: 1px solid var(--primary) !important; }
        header .register-btn { background-color: var(--primary); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
            background-color: var(--bg-surface);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #1e2329 0%, #0b0e11 100%);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 24px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
        }
        .jackpot-title { color: var(--primary); font-size: 18px; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--success); font-family: monospace; }
        .intro-card {
            background-color: var(--bg-paper);
            padding: 24px;
            border-radius: 12px;
            margin-bottom: 24px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 12px; }
        .intro-card p { font-size: 16px; color: var(--text-secondary); }
        .section-header { display: flex; align-items: center; margin: 24px 0 16px; gap: 10px; }
        .section-header h2 { font-size: 20px; color: var(--text-primary); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
        .game-card {
            background-color: var(--bg-paper);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card:hover { transform: translateY(-4px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; color: var(--text-secondary); }
        .payment-section {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 24px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }
        .payment-item i { font-size: 24px; color: var(--primary); }
        .info-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
        .info-box { background-color: var(--bg-paper); padding: 20px; border-radius: 12px; border-top: 2px solid var(--border-default); }
        .info-box h2 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .info-box p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .lottery-marquee {
            background-color: var(--bg-paper);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 24px;
            overflow: hidden;
            height: 150px;
            position: relative;
        }
        .lottery-track { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item { padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; display: flex; justify-content: space-between; }
        .lottery-item span { color: var(--success); font-weight: 600; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 24px; }
        .provider-item { background: var(--bg-surface); padding: 12px; border-radius: 8px; text-align: center; border: 1px solid var(--border-default); font-weight: 600; color: var(--primary); }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
        .review-card { background-color: var(--bg-paper); padding: 15px; border-radius: 12px; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 30px; color: var(--text-muted); }
        .stars { color: var(--primary); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 12px; color: var(--text-muted); }
        .faq-section { margin-bottom: 24px; }
        .faq-item { background-color: var(--bg-paper); border-radius: 8px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { background-color: var(--bg-surface); padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 24px; }
        .security-badges { display: flex; justify-content: center; gap: 15px; margin-top: 15px; flex-wrap: wrap; }
        .security-badge { font-size: 12px; color: var(--text-muted); border: 1px solid var(--border-default); padding: 5px 10px; border-radius: 4px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--bg-paper);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 12px; }
        footer { background-color: var(--bg-paper); padding: 30px 16px 20px; border-top: 1px solid var(--border-default); }
        footer .contact-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 30px; }
        footer .contact-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--bg-surface); padding: 10px; border-radius: 6px; text-decoration: none; color: var(--text-secondary); font-size: 14px; }
        footer .link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; }
        footer .link-grid a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        footer .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); pt: 20px; }