body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; margin: 0; padding: 0; line-height: 1.6; }
        header { background: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #d4af37; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .logo-box { display: flex; align-items: center; text-decoration: none; color: #fff; }
        .logo-box img { width: 25px; height: 25px; margin-right: 8px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; text-transform: uppercase; letter-spacing: 1px; }
        .header-btns { display: flex; gap: 8px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-weight: bold; font-size: 14px; cursor: pointer; border: none; text-decoration: none; transition: 0.3s; }
        .btn-login { background: transparent; border: 1px solid #d4af37; color: #d4af37; }
        .btn-register { background: linear-gradient(180deg, #f3d078 0%, #d4af37 100%); color: #000; }
        main { padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .announcement { background: #1a1d24; padding: 8px 10px; display: flex; align-items: center; border-bottom: 1px solid #2a2e35; }
        .announcement i { color: #d4af37; margin-right: 10px; }
        .scrolling-text { white-space: nowrap; overflow: hidden; width: 100%; }
        .scrolling-text p { display: inline-block; padding-left: 100%; animation: scroll-left 15s linear infinite; margin: 0; font-size: 13px; color: #ccc; }
        @keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 20px 15px 10px; font-size: 18px; color: #d4af37; display: flex; align-items: center; gap: 8px; }
        .section-title i { font-size: 16px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; border: 1px solid #2a2e35; transition: 0.3s; box-shadow: 0 4px 6px rgba(0,0,0,0.2); }
        .game-card:hover { transform: translateY(-3px); border-color: #d4af37; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { margin: 0; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .intro-section { padding: 20px 15px; background: #161920; margin: 20px 0; border-radius: 15px; margin-left: 15px; margin-right: 15px; border: 1px solid #2a2e35; }
        .intro-section h1 { font-size: 20px; color: #d4af37; margin-top: 0; }
        .intro-section p { font-size: 14px; color: #b0b0b0; }
        .winning-records { padding: 0 15px; }
        .record-list { background: #1a1d24; border-radius: 12px; height: 200px; overflow-y: auto; padding: 10px; border: 1px solid #2a2e35; }
        .record-item { display: flex; justify-content: space-between; font-size: 12px; padding: 8px 0; border-bottom: 1px solid #2a2e35; }
        .record-item span:first-child { color: #d4af37; }
        .record-item span:last-child { color: #4caf50; font-weight: bold; }
        .review-section { padding: 20px 15px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border-left: 4px solid #d4af37; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .user-name { font-weight: bold; font-size: 14px; }
        .stars { color: #ffc107; font-size: 12px; }
        .review-content { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { padding: 20px 15px; }
        .faq-item { background: #1a1d24; margin-bottom: 10px; border-radius: 12px; padding: 15px; border: 1px solid #2a2e35; }
        .faq-q { font-weight: bold; font-size: 14px; color: #d4af37; margin-bottom: 8px; display: block; }
        .faq-a { font-size: 13px; color: #b0b0b0; }
        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid #d4af37; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { text-decoration: none; color: #b0b0b0; display: flex; flex-direction: column; align-items: center; font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 3px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; font-size: 13px; color: #666; }
        .footer-links { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-links a { color: #b0b0b0; text-decoration: none; }
        .footer-socials { margin-bottom: 20px; display: flex; justify-content: center; gap: 20px; }
        .footer-socials a { color: #d4af37; font-size: 20px; text-decoration: none; }
        .copyright { border-top: 1px solid #222; padding-top: 20px; margin-top: 10px; font-size: 12px; }