diff --git a/portprotonqt/game_card.py b/portprotonqt/game_card.py
index bb76a63..00e9e35 100644
--- a/portprotonqt/game_card.py
+++ b/portprotonqt/game_card.py
@@ -170,7 +170,7 @@ class GameCard(QFrame):
         self.steamLabel.setVisible(self.steam_visible)
 
         # Epic Games Store бейдж
-        egs_icon = self.theme_manager.get_icon("steam")
+        egs_icon = self.theme_manager.get_icon("epic_games")
         self.egsLabel = ClickableLabel(
             "Epic Games",
             icon=egs_icon,
diff --git a/portprotonqt/main_window.py b/portprotonqt/main_window.py
index 119ad04..1d3b0d3 100644
--- a/portprotonqt/main_window.py
+++ b/portprotonqt/main_window.py
@@ -1558,7 +1558,7 @@ class MainWindow(QMainWindow):
         steamLabel.clicked.connect(lambda: QDesktopServices.openUrl(QUrl(f"https://steamcommunity.com/app/{appid}")))
 
         # Epic Games Store бейдж
-        egs_icon = self.theme_manager.get_icon("steam")
+        egs_icon = self.theme_manager.get_icon("epic_games")
         egsLabel = ClickableLabel(
             "Epic Games",
             icon=egs_icon,