} else {
// ===== POPUNDER PC =====
const links = [
'https://elementarywhole.com/h95S8Y',
'https://crypotential.com/du4hki1ibn?key=af5aa1f4970ae8f25f16bc7554f6e8b4'
];
const cooldown = 30000;
document.addEventListener('click', function() {
const last = parseInt(localStorage.getItem('pc_popunder') || '0');
const now = Date.now();
if (now - last < cooldown) {
return;
}
localStorage.setItem('pc_popunder', now);
const url = links[Math.floor(Math.random() * links.length)];
const win = window.open(url, '_blank');
if (win) {
try {
win.blur();
window.focus();
} catch(e) {}
}
}, { passive: true });
}
})();