diff --git a/templates/player.html b/templates/player.html
index 9e1e3fa..606d454 100644
--- a/templates/player.html
+++ b/templates/player.html
@@ -118,9 +118,8 @@
🎵 Song Lyrics
{% for line in req.suno_lyrics.splitlines() %}
- {% if line.startswith('[') and line.endswith(']') %}
- {{ line }}
- {% elif line.strip() %}
+ {% set line = line.strip() %}
+ {% if line and not (line.startswith('[') and line.endswith(']')) %}
{{ line }}
{% endif %}
{% endfor %}