diff --git a/static/difficulty-select.html b/static/difficulty-select.html
index 1e57e67..d8d1d3b 100644
--- a/static/difficulty-select.html
+++ b/static/difficulty-select.html
@@ -607,19 +607,6 @@
window.location.href = '/game-modes';
}
});
-
- // Add hover sound effects (you'd need actual audio files)
- document.querySelectorAll('.difficulty-card').forEach(card => {
- card.addEventListener('mouseenter', () => {
- // Play hover sound
- console.log('🔊 Hover sound effect');
- });
-
- card.addEventListener('click', () => {
- // Play click sound
- console.log('🔊 Click sound effect');
- });
- });