SUPER SHORT / LOW ODDS

No products were found matching your selection.
document.addEventListener("DOMContentLoaded", function () { const lastShown = localStorage.getItem('referralModalLastShown'); const now = new Date().getTime(); const fourHours = 4 * 60 * 60 * 1000; // 4 hours in ms if (!lastShown || now - lastShown > fourHours) { setTimeout(function () { var modal = document.querySelector("#wpgen-ra-modal"); if (modal) { modal.style.display = "block"; localStorage.setItem('referralModalLastShown', now); } }, 5000); // 5 second delay } });