* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .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: normal; color: #f3c15b; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #f3c15b; }
        .btn-register { background: linear-gradient(180deg, #f3c15b 0%, #d4a017 100%); color: #000; }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .announcement { background: #242932; padding: 8px 15px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: #f3c15b; overflow: hidden; }
        .announcement i { font-size: 16px; }
        .marquee { white-space: nowrap; animation: marquee 20s linear infinite; }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-container { padding: 20px 15px; }
        .section-title { font-size: 18px; margin-bottom: 15px; border-left: 4px solid #f3c15b; padding-left: 10px; display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 1px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: transform 0.2s; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card .game-info { padding: 8px; text-align: center; }
        .game-card h3 { font-size: 13px; font-weight: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-box { background: #1a1d24; border-radius: 12px; padding: 20px; margin: 10px 0; border: 1px solid #2d333e; }
        .intro-box h1 { font-size: 20px; color: #f3c15b; margin-bottom: 15px; text-align: center; }
        .intro-box p { font-size: 14px; color: #b0b8c1; margin-bottom: 12px; }
        .winning-records { background: #1a1d24; border-radius: 12px; height: 300px; overflow-y: auto; padding: 10px; }
        .winning-item { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid #2d333e; font-size: 13px; }
        .winning-item span:first-child { color: #f3c15b; }
        .winning-item span:last-child { color: #4caf50; font-weight: bold; }
        .review-card { background: #242932; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid #f3c15b; }
        .review-user { font-weight: bold; font-size: 14px; margin-bottom: 5px; display: flex; justify-content: space-between; }
        .review-stars { color: #ffcc00; font-size: 12px; }
        .review-text { font-size: 13px; color: #b0b8c1; font-style: italic; }
        .faq-item { background: #1a1d24; margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h4 { color: #f3c15b; font-size: 15px; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #b0b8c1; }
        .navigater { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); z-index: 1000; border-top: 1px solid #2d333e; }
        .nav-item { text-align: center; font-size: 11px; color: #b0b8c1; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; color: #f3c15b; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; font-size: 13px; color: #666; }
        .footer-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
        .footer-links a { color: #b0b8c1; }
        .copyright { margin-top: 15px; color: #444; }
        .stats-bar { display: flex; justify-content: space-around; background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 20px; text-align: center; }
        .stat-item span { display: block; font-size: 12px; color: #666; }
        .stat-item strong { font-size: 16px; color: #f3c15b; }