Serena Lee

This website contains content and images not suitable for minors.

By entering, I confirm that I am 21 years of age or older and agree to release and discharge the owner of this website, as well as all parties involved in its creation, maintenance, and hosting, from any and all liability that may arise from my access to or use of this site.

Enter Site

// On DOM load, disable scrolling and hide header/footer
document.addEventListener(‘DOMContentLoaded’, function() {
document.documentElement.style.overflow = ‘hidden’;
document.body.style.overflow = ‘hidden’;
document.body.style.margin = ‘0’;
document.body.style.padding = ‘0’;

const header = document.querySelector(‘header’);
if(header) header.style.display = ‘none’;
const footer = document.querySelector(‘footer’);
if(footer) footer.style.display = ‘none’;
});

// On click, restore scrolling
document.querySelector(‘#age-gate a’).addEventListener(‘click’, function() {
document.documentElement.style.overflow = ”;
document.body.style.overflow = ”;
document.getElementById(‘age-gate’).style.display = ‘none’;

const header = document.querySelector(‘header’);
if(header) header.style.display = ”;
const footer = document.querySelector(‘footer’);
if(footer) footer.style.display = ”;

window.scrollTo({ top: 0, behavior: ‘smooth’ });
});

/* Reset box-sizing for all elements to prevent overflow caused by padding/borders */
*, *::before, *::after {
box-sizing: border-box;
}

html, body {
overflow: hidden !important; /* Prevent all scrollbars */
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
#age-gate h1 { font-size: 2rem !important; }
#age-gate p { font-size: 0.85rem !important; }
#age-gate a { font-size: 0.9rem !important; padding: 10px 28px !important; }
#age-gate div[style*=”padding:48px”] { padding: 24px !important; }
}