:root {
            --primary-bg: #11141a;
            --secondary-bg: #1a1d24;
            --card-bg: #242831;
            --accent-gold: #f3c26d;
            --accent-green: #2ecc71;
            --text-main: #ffffff;
            --text-dim: #a0a8b7;
            --nav-bg: rgba(26, 29, 36, 0.95);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: var(--primary-bg); color: var(--text-main); line-height: 1.5; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header { background: var(--secondary-bg); height: 56px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: var(--accent-gold); }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 14px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: var(--accent-gold); border: 1px solid var(--accent-gold); }
        .btn-reg { background: linear-gradient(135deg, #f3c26d, #d4a34d); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #242831; height: 35px; display: flex; align-items: center; padding: 0 15px; border-bottom: 1px solid #333; overflow: hidden; }
        .announcement i { color: var(--accent-gold); margin-right: 10px; }
        .marquee { white-space: nowrap; animation: scroll 20s linear infinite; font-size: 13px; color: var(--text-dim); }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 15px; display: flex; align-items: center; justify-content: space-between; }
        .section-title h2 { font-size: 16px; border-left: 4px solid var(--accent-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px 15px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info p { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-dim); }
        .intro-box { background: var(--secondary-bg); margin: 15px; padding: 20px; border-radius: 15px; }
        .intro-box h1 { font-size: 18px; margin-bottom: 10px; color: var(--accent-gold); }
        .intro-box p { font-size: 14px; color: var(--text-dim); margin-bottom: 10px; }
        .winners-section { background: var(--secondary-bg); margin: 15px; padding: 15px; border-radius: 15px; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #333; font-size: 13px; }
        .winner-name { color: var(--text-main); }
        .winner-amount { color: var(--accent-green); font-weight: bold; }
        .reviews-section { padding: 15px; }
        .review-card { background: var(--card-bg); padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid var(--accent-gold); }
        .review-user { font-weight: 600; font-size: 14px; margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
        .review-user i { color: var(--accent-gold); font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-dim); font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--secondary-bg); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-q { padding: 12px 15px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-a { padding: 0 15px 12px; font-size: 13px; color: var(--text-dim); }
        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--nav-bg); height: 60px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333; backdrop-filter: blur(10px); z-index: 1000; }
        .nav-item { text-align: center; color: var(--text-dim); }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 3px; }
        .nav-item span { font-size: 11px; }
        .nav-item.active { color: var(--accent-gold); }
        footer { background: var(--secondary-bg); padding: 30px 15px 80px; text-align: center; border-top: 1px solid #333; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-dim); font-size: 13px; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; font-size: 18px; color: var(--accent-gold); }
        .copyright { font-size: 12px; color: #666; }
        .badge-list { display: flex; justify-content: center; gap: 15px; margin: 20px 0; opacity: 0.6; }
        .badge-list i { font-size: 24px; }