* { margin: 0; padding: 0; box-sizing: border-box; }
        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; }
        header { background: #1a1d24; padding: 12px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; display: flex; justify-content: space-between; align-items: center; }
        .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: #f1f1f1; letter-spacing: 0.5px; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.3s; border: none; }
        .btn-login { background: transparent; color: #ffcc00; border: 1px solid #ffcc00; }
        .btn-register { background: linear-gradient(180deg, #ffcc00 0%, #d49a00 100%); color: #000; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; padding: 8px 15px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #2d323d; }
        .announcement i { color: #ffcc00; }
        .marquee { overflow: hidden; white-space: nowrap; width: 100%; }
        .marquee p { display: inline-block; animation: scroll 20s linear infinite; font-size: 13px; color: #ccc; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        main { padding: 15px; }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #ffcc00; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1e232d; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.3); 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 .game-info { padding: 10px; text-align: center; }
        .game-card .game-info h3 { font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #e0e0e0; }
        .intro-content { background: #1a1d24; border-radius: 15px; padding: 20px; margin: 25px 0; border: 1px solid #2d323d; }
        .intro-content h1 { font-size: 20px; color: #ffcc00; margin-bottom: 15px; }
        .intro-content p { font-size: 14px; color: #b0b0b0; margin-bottom: 15px; }
        .winning-list { background: #1a1d24; border-radius: 15px; padding: 15px; height: 250px; overflow: hidden; position: relative; border: 1px solid #2d323d; }
        .winning-track { animation: slideUp 30s linear infinite; }
        @keyframes slideUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winning-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #262c38; font-size: 13px; }
        .winning-item span:first-child { color: #b0b0b0; }
        .winning-item span:last-child { color: #4caf50; font-weight: bold; }
        .reviews-section { margin: 25px 0; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 12px; border: 1px solid #2d323d; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-name { font-weight: 600; font-size: 14px; color: #ffcc00; }
        .review-stars { color: #ffcc00; font-size: 12px; }
        .review-text { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { margin: 25px 0; }
        .faq-item { background: #1a1d24; border-radius: 10px; padding: 15px; margin-bottom: 10px; border: 1px solid #2d323d; }
        .faq-item h4 { font-size: 15px; color: #ffcc00; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #b0b0b0; }
        .stats-bar { display: flex; justify-content: space-around; background: #1a1d24; padding: 20px 10px; border-radius: 15px; margin: 20px 0; text-align: center; }
        .stat-box i { font-size: 24px; color: #ffcc00; margin-bottom: 8px; }
        .stat-box div:nth-child(2) { font-size: 18px; font-weight: bold; }
        .stat-box div:nth-child(3) { font-size: 12px; color: #888; }
        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323d; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #888; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #ffcc00; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #888; transition: color 0.3s; }
        .footer-links a:hover { color: #ffcc00; }
        .copyright { font-size: 12px; color: #555; margin-top: 20px; }