+ {game.capsule_image ? (
+
+ ) : (
+
+
+
+ )}
+ {/* Discount badge */}
+ {discountPct > 0 && (
+
+ -{discountPct}%
+
+ )}
+ {game.playability_status &&
+ game.playability_status !== "unknown" && (
+
+ )}
+
+
+
+
+ {game.title}
+
+
+ {/* Pricing */}
+
+ {game.price_current !== undefined && (
+
+ {game.price_currency === "USD" ? "$" : ""}{(game.price_current / 100).toFixed(2)}
+
+ )}
+ {game.price_initial !== undefined && game.price_initial > (game.price_current ?? 0) && (
+
+ {(game.price_initial / 100).toFixed(2)}
+
+ )}
+
+
+ {/* Performance badges */}
+ {game.best_fps !== undefined && game.best_fps !== null && (
+
+ {game.best_fps >= 60 ? (
+
+ âš¡ RAW PERFORMER
+
+ ) : game.best_fps < 30 ? (
+
+ âš POOR PERFORMANCE
+
+ ) : null}
+
+ {Math.round(game.best_fps)}fps
+
+
+ )}
+
+ {game.steam_review_score !== undefined && game.steam_review_score !== null && (
+
+ {game.steam_review_score}% positive
+
+ )}
+
+