{# Game Card Component Parameters: - game: The game object with all properties - view_mode: 'grid', 'list', or 'covers' (optional, defaults to 'grid') - show_completion: Whether to show completion progress (optional, defaults to true) - show_platforms: Whether to show platform badges (optional, defaults to true) - show_genres: Whether to show genre tags (optional, defaults to true) - show_playtime: Whether to show playtime (optional, defaults to true) #} {% set view_mode = view_mode|default('grid') %} {% set show_completion = show_completion|default(true) %} {% set show_platforms = show_platforms|default(true) %} {% set show_genres = show_genres|default(true) %} {% set show_playtime = show_playtime|default(true) %} {% if view_mode == 'list' %}