body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f9f9f9; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #ff5722; color: white; padding: 15px 0; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
        nav ul { list-style: none; padding: 0; display: flex; justify-content: center; gap: 20px; }
        nav ul li { display: inline; }
        nav ul li a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-menu-btn { display: none; position: absolute; right: 20px; top: 15px; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        h1 { font-size: 32px; margin-top: 30px; color: #ff5722; }
        h2 { font-size: 24px; margin-top: 25px; color: #444; border-bottom: 2px solid #ff5722; padding-bottom: 5px; }
        h3 { font-size: 20px; margin-top: 20px; color: #666; }
        p { margin-bottom: 15px; }
        .download-btn, .login-btn { display: inline-block; background-color: #ff5722; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; margin: 10px 0; font-weight: bold; }
        .download-btn:hover, .login-btn:hover { background-color: #e64a19; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .table-container { overflow-x: auto; margin: 20px 0; }
        table { width: 100%; border-collapse: collapse; margin: 20px 0; }
        th, td { border: 1px solid #ddd; padding: 12px; text-align: left; }
        th { background-color: #ff5722; color: white; }
        tr:nth-child(even) { background-color: #f2f2f2; }
        .community-section { background-color: #fff; padding: 20px; border-radius: 8px; margin: 20px 0; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
        footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 30px; }
        .tag-list { margin: 20px 0; }
        .tag-list a { display: inline-block; background-color: #666; color: white; padding: 5px 10px; margin: 5px; border-radius: 3px; text-decoration: none; }
        .tag-list a:hover { background-color: #888; }
        @media (max-width: 768px) {
            nav ul { flex-direction: column; align-items: center; display: none; }
            nav ul.active { display: flex; }
            .mobile-menu-btn { display: block; }
            h1 { font-size: 28px; }
            h2 { font-size: 22px; }
            h3 { font-size: 18px; }
        }
