
<script>
// Deadline (end date)
const deadline = new Date("November 30, 2025 23:59:59").getTime();

// Function to fade out entire site
function fadeWholeSite() {
    const now = new Date().getTime();
    const timeLeft = deadline - now;

    // If deadline passed → page fully transparent
    if (timeLeft <= 0) {
        document.body.style.opacity = 0;
        return;
    }

    // Total duration (from page load to deadline)
    const startTime = window.fadeStartTime || (window.fadeStartTime = now);
    const fullDuration = deadline - startTime;

    // Calculate opacity (1 → 0)
    const opacity = Math.max(0, timeLeft / fullDuration);

    // Apply opacity to entire page
    document.body.style.opacity = opacity;

    requestAnimationFrame(fadeWholeSite);
}

document.body.style.transition = "opacity 1s linear";
fadeWholeSite();
</script>

BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//OMNIA BLUE GENTLEMENS CLUB - ECPv6.17.1//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-WR-CALNAME:OMNIA BLUE GENTLEMENS CLUB
X-ORIGINAL-URL:https://omniabluegentlemensclubdtsp.com
X-WR-CALDESC:Events for OMNIA BLUE GENTLEMENS CLUB
REFRESH-INTERVAL;VALUE=DURATION:PT1H
X-Robots-Tag:noindex
X-PUBLISHED-TTL:PT1H
BEGIN:VTIMEZONE
TZID:UTC
BEGIN:STANDARD
TZOFFSETFROM:+0000
TZOFFSETTO:+0000
TZNAME:UTC
DTSTART:20240101T000000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=UTC:20251025T200000
DTEND;TZID=UTC:20251025T230000
DTSTAMP:20250821T152438Z
CREATED:20250821T152438Z
LAST-MODIFIED:20250821T152438Z
UID:21599-1761422400-1761433200@omniabluegentlemensclubdtsp.com
SUMMARY:Clover Cabaret Performance
DESCRIPTION:Get ready for a night of mystery\, magic\, and mesmerizing performances! 🎭 Join us on Saturday\, October 25th (the Saturday before Halloween) for a magically delicious Burlesque Show featuring belly dance\, contortion\, fire acts\, and so much more. \nIt’s the perfect way to kick off your Halloween weekend—sensual\, spooky\, and unforgettable. Don’t miss the chance to experience the enchanting Clover Cabaret at Omnia Blue!
URL:https://omniabluegentlemensclubdtsp.com/event/clover-cabaret-performance/
LOCATION:Omnia Blue Gentlemen’s Club\, 340 1st Ave N\, St. Petersburg\,\, FL\, 33701\, United States
CATEGORIES:Cabaret Performance
ATTACH;FMTTYPE=image/png:https://omniabluegentlemensclubdtsp.com/wp-content/uploads/2025/08/Cabaret-Performance.png
END:VEVENT
END:VCALENDAR