Skip to content
Coming soon~The Warfare games
Are you ready to battle the darkeness?
Let the war begin…
Enter now
document.addEventListener('DOMContentLoaded', function () {
const video = document.querySelector('.banner video');
if (!video) return;
video.muted = false;
video.defaultMuted = false;
video.removeAttribute('muted');
video.volume = 1;
document.body.addEventListener('click', function enableAudio() {
video.muted = false;
video.volume = 1;
video.play();
}, { once: true });
});