* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1116; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #ffd700; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: #3a3f4b; color: #fff; }
        .btn-register { background: linear-gradient(135deg, #ffd700, #ff8c00); color: #000; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .announcement { background: #242933; padding: 8px 15px; display: flex; align-items: center; gap: 10px; overflow: hidden; white-space: nowrap; border-bottom: 1px solid #333; }
        .announcement i { color: #ffd700; }
        .marquee { display: inline-block; animation: scroll 20s linear infinite; font-size: 13px; color: #ccc; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .container { padding: 15px; }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #ffd700; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: 0.3s; border: 1px solid #2d323d; }
        .game-card img { width: 100%; display: block; transition: 0.3s; }
        .game-card:hover img { transform: scale(1.05); }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 12px; font-weight: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #e0e0e0; }
        .intro-box { background: #1a1d24; padding: 20px; border-radius: 15px; border: 1px solid #2d323d; margin: 20px 0; }
        .intro-box h1 { font-size: 20px; color: #ffd700; margin-bottom: 15px; }
        .intro-box h2 { font-size: 16px; margin: 15px 0 10px; color: #fff; }
        .intro-box p { font-size: 14px; color: #b0b0b0; margin-bottom: 10px; }
        .winning-list { background: #1a1d24; border-radius: 12px; height: 300px; overflow-y: auto; padding: 10px; border: 1px solid #2d323d; }
        .win-item { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid #2d323d; font-size: 12px; }
        .win-item span:first-child { color: #ffd700; }
        .win-item span:last-child { color: #4caf50; font-weight: bold; }
        .features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
        .feature-card { background: #242933; padding: 15px; border-radius: 10px; text-align: center; }
        .feature-card i { font-size: 24px; color: #ffd700; margin-bottom: 8px; display: block; }
        .feature-card span { font-size: 12px; color: #eee; }
        .reviews { margin: 20px 0; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid #2d323d; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
        .stars { color: #ffd700; }
        .review-content { font-size: 13px; color: #b0b0b0; font-style: italic; }
        .faq-section { margin: 20px 0; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 8px; padding: 12px; border: 1px solid #2d323d; }
        .faq-q { font-weight: bold; font-size: 14px; color: #ffd700; margin-bottom: 5px; }
        .faq-a { font-size: 13px; color: #b0b0b0; }
        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; border-top: 2px solid #ffd700; display: flex; justify-content: space-around; padding: 8px 0; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #ccc; }
        .nav-item i { font-size: 18px; color: #ffd700; }
        footer { background: #0f1116; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; font-size: 13px; color: #b0b0b0; }
        .copyright { font-size: 12px; color: #666; margin-top: 20px; }