





Sign up to hear from us about specials, sales, and events.
<!DOCTYPE html>:
<html lang="en">
<style>
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
body.age-blur {
filter: blur(6px);
pointer-events: none;
}
</style>
<script>
// Create popup dynamically so GoDaddy can't strip it
function createAgePopup() {
const overlay = document.createElement("div");
overlay.id = "agePopupOverlay";
overlay.style.cssText = `
position: fixed;
top: 0; left: 0;
width: 100vw;
height: 100vh;
backdrop-filter: blur(8px);
background: rgba(0,0,0,0.75);
display: flex;
justify-content: center;
align-items: center;
z-index: 999999999;
animation: fadeIn 0.6s ease-out;
`;
const box = document.createElement("div");
box.id = "agePopupBox";
box.style.cssText = `
background: #1a0000;
border: 2px solid #ff0000;
color: #fff;
padding: 25px;
max-width: 420px;
text-align: center;
border-radius: 14px;
box-shadow: 0 0 25px rgba(255,0,0,0.4);
animation: fadeIn 0.8s ease-out;
`;
box.innerHTML = `
<h2 style="color:#ff0000;">Adult Content Warning</h2>
<p>This website contains adult material and is intended for individuals 18 years or older.</p>
<button id="enterBtn" style="
background:#ff0000; color:white; padding:12px 22px; font-size:17px;
border:none; border-radius:8px; cursor:pointer; margin-top:15px;
">Enter</button>
<button id="leaveBtn" style="
background:#333; color:white; padding:12px 22px; font-size:17px;
border:none; border-radius:8px; cursor:pointer; margin-left:10px;
">Leave</button>
`;
overlay.appendChild(box);
document.body.appendChild(overlay);
// Button logic
document.getElementById("enterBtn").onclick = function() {
setAgeCookie();
hideAgePopup();
};
document.getElementById("leaveBtn").onclick = function() {
window.location.href = "https://www.google.com";
};
}
function shouldShowPopup() {
return !document.cookie.includes("ageVerified=true");
}
function showAgePopup() {
document.body.classList.add("age-blur");
document.getElementById("agePopupOverlay").style.display = "flex";
}
function hideAgePopup() {
document.body.classList.remove("age-blur");
document.getElementById("agePopupOverlay").remove();
}
function setAgeCookie() {
const expiry = new Date();
expiry.setTime(expiry.getTime() + (24 * 60 * 60 * 1000));
document.cookie = "ageVerified=true; expires=" + expiry.toUTCString() + "; path=/";
}
// Initialize AFTER page loads
window.addEventListener("load", function() {
if (shouldShowPopup()) {
createAgePopup();
showAgePopup();
}
});
</script>
</html>
We use cookies to analyze website traffic and optimize your website experience. By accepting our use of cookies, your data will be aggregated with all other user data.