:root {
            --primary: #D4AF37;
            --primary-hover: #F2D272;
            --primary-active: #996515;
            --secondary: #00875A;
            --accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-elevated: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #707A8A;
            --text-link: #F0B90B;
            --border-subtle: #2B3139;
            --border-default: #474D57;
            --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);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        header .brand { 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(--text-primary); }
        header .actions { display: flex; gap: 10px; }
        header button {
            padding: 6px 14px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
        }
        .btn-login { background-color: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background-color: var(--primary); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 20px; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, #1e2329 0%, #0b0e11 100%);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { color: var(--primary); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #FFFFFF; font-family: 'Roboto', sans-serif; letter-spacing: 1px; }
        .intro-card { background-color: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 20px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 20px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-title { font-size: 24px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 24px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .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:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 14px; text-align: center; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 20px; }
        .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; font-size: 12px; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--primary); }
        .info-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .info-card { background: var(--bg-surface); padding: 15px; border-radius: 10px; }
        .info-card h2 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .info-card p { font-size: 14px; color: var(--text-secondary); }
        .lottery-container { background: #161a1e; border-radius: 10px; padding: 10px; margin-bottom: 20px; height: 150px; overflow: hidden; position: relative; }
        .lottery-scroll { animation: scrollList 20s linear infinite; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid var(--border-subtle); font-size: 13px; }
        .lottery-user { color: var(--text-link); }
        .lottery-win { color: var(--semantic-success, #0ECB81); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
        .provider-item { background: linear-gradient(90deg, #2B3139, #1E2329); padding: 15px; border-radius: 8px; text-align: center; font-weight: 700; color: var(--primary); border: 1px solid var(--border-subtle); }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-meta h3 { font-size: 16px; margin: 0; }
        .stars { color: #F0B90B; 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: 20px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; }
        .security-section { background: var(--bg-elevated); padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--primary); }
        .security-text { font-size: 13px; color: var(--text-secondary); }
        .security-text a { color: var(--primary); text-decoration: none; }
        .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-subtle); z-index: 1001; }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); font-size: 12px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        footer { background: var(--bg-main); padding: 30px 15px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { color: var(--text-link); 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-secondary); text-decoration: none; font-size: 13px; text-align: center; }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 15px; }