{{ translations['question_artist'] }}

{{ translations['songs_in_playlist'] if translations.get('songs_in_playlist') else 'Songs in Playlist' }}
{{ total_questions }}
{{ translations['score'] if translations.get('score') else 'Score' }}
{{ score }} / {{ answered if answered > 0 else 1 }}
{{ translations['accuracy'] if translations.get('accuracy') else 'Accuracy' }}
{{ ((score / (answered if answered > 0 else 1)) * 100) | round(0) if answered > 0 else 0 }}%
{% if game_mode == 'artist' %}

{{ translations['tip_artist'] if translations.get('tip_artist') else 'Tip: Start typing to search for artists' }}

{% elif game_mode == 'title' %}

{{ translations['tip_title'] if translations.get('tip_title') else 'Tip: Start typing to search for song titles' }}

{% elif game_mode == 'year' %}

{{ translations['tip_year'] if translations.get('tip_year') else 'Tip: Enter the release year' }}

{% endif %}
{{ translations['end_quiz'] if translations.get('end_quiz') else '🏁 End Quiz' }} {{ translations['back_to_playlists'] if translations.get('back_to_playlists') else '⬅️ Back to Playlists' }}