Watch & Earn - Live Event
`,
``,
``,
``,
`
`,
``
];
// Inject random ads every 60s
function shuffleAds() {
const container = document.getElementById('adContainer');
container.innerHTML = '';
const shuffled = adScripts.sort(() => 0.5 - Math.random());
shuffled.slice(0, 4).forEach(ad => {
const div = document.createElement('div');
div.classList.add('ad-block');
div.innerHTML = ad;
container.appendChild(div);
});
}
shuffleAds();
setInterval(shuffleAds, 60000); // Refresh ad arrangement every 60 seconds
// Show popup after 60s
setTimeout(() => {
document.getElementById('popup').style.display = 'flex';
}, 60000);