document.addEventListener('DOMContentLoaded', function () {
var player = document.getElementById('template--18672230236395__178715887857f4d0bf__ai_gen_block_9d66c24_wbFaxf');
if (!player) player = document.querySelector('[id*="ai_gen_block_9d66c24_wbFaxf"]');
if (!player) return;
var audio = player.querySelector('audio');
if (!audio) return;
var firstInteraction = false;
function startOnFirstInteraction() {
if (firstInteraction) return;
firstInteraction = true;
setTimeout(function () {
if (audio.paused) audio.play().catch(function () {});
}, 0);
}
document.addEventListener('click', startOnFirstInteraction, true);
document.addEventListener('pointerdown', startOnFirstInteraction, true);
});