diff --git a/app/views/break_escape/games/show.html.erb b/app/views/break_escape/games/show.html.erb
new file mode 100644
index 0000000..7e6ddd4
--- /dev/null
+++ b/app/views/break_escape/games/show.html.erb
@@ -0,0 +1,33 @@
+
+
+
+
+ <% @missions.each do |mission| %>
+ <%= link_to mission_path(mission), class: 'mission-card' do %>
+
<%= mission.display_name %>
+
+ <%= mission.description || "An exciting escape room challenge awaits..." %>
+
+
+ Difficulty: <%= "⭐" * mission.difficulty_level %>
+
+ <% end %>
+ <% end %>
+
+
+