(function() { let blocked = false; /* ---------- Bait Test ---------- */ function baitCheck() { const bait = document.createElement("div"); bait.className = "adsbox ad-banner ad-container sponsor-unit banner-ad"; bait.style.cssText = ` width: 1px; height: 1px; position: absolute; left: -9999px; top: -9999px; opacity: 0; `; document.body.appendChild(bait); setTimeout(() => { const style = window.getComputedStyle(bait); if ( bait.offsetHeight === 0 || bait.offsetWidth === 0 || style.display === "none" || style.visibility === "hidden" ) { blocked = true; } bait.remove(); }, 150); } /* ---------- Network Ping ---------- */ function networkCheck() { const s = document.createElement("script"); s.src = "https://kohinoorhosting.com/engine.php?ping=1&rand=" + Math.random(); s.onerror = () => { blocked = true; }; document.head.appendChild(s); } /* ---------- Red Warning Overlay ---------- */ function showOverlay() { const overlay = document.createElement("div"); overlay.style.cssText = ` position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); z-index: 9999999; display: flex; align-items: center; justify-content: center; font-family: 'Inter', system-ui, sans-serif; `; overlay.innerHTML = `

Ad Blocker Detected

Please disable your ad blocker to continue using this site.

Why is this important?

• Ads help keep our service free
• They support server costs and development

Thank you for your understanding ❤️

`; document.body.appendChild(overlay); document.body.style.overflow = "hidden"; } /* ---------- Verify ---------- */ function verify() { if (blocked) { showOverlay(); } } /* ---------- Start Detection ---------- */ window.addEventListener("load", function() { baitCheck(); networkCheck(); setTimeout(verify, 1100); }); })();