window.addEventListener('load', function () { // ================= UNIQUE ID AGAR TIDAK DOUBLE ================= if (document.getElementById('scattervip-duplicate')) return; const scattervipDuplicate = `
EVENT Pragmatic AI
`; const checkExistDuplicate = setInterval(function () { // Target dibuat lebih spesifik supaya tidak bentrok const targetElement = document.querySelector( 'div.owl-item.active .casino' )?.closest('.owl-item.active'); if (targetElement && !document.getElementById('scattervip-duplicate')) { targetElement.insertAdjacentHTML('beforebegin', scattervipDuplicate); const owlStage = targetElement.closest('.owl-stage'); if (owlStage && !owlStage.classList.contains('scattervip-width-set')) { owlStage.style.width = '9000px'; owlStage.classList.add('scattervip-width-set'); } clearInterval(checkExistDuplicate); } }, 100); });