document.addEventListener('DOMContentLoaded', function () { var video = document.querySelector('video'); if (video) { video.muted = false; // Unmute the video video.volume = 1; // Set volume to max (1 = full volume) video.play(); // Ensure the video plays } });