
<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:20250921T130000
DTEND;TZID=UTC:20250921T160000
DTSTAMP:20250821T151115Z
CREATED:20211027T144837Z
LAST-MODIFIED:20250821T151115Z
UID:18229-1758459600-1758470400@omniabluegentlemensclubdtsp.com
SUMMARY:🏈 Bucs Home Opener vs. Jets – 2025 Season at Omnia Blue
DESCRIPTION:The wait is over—Bucs football is back in Tampa Bay! Join us on Sunday\, September 21st at 1:00 PM as the Buccaneers host the New York Jets in their 2025 home opener at Raymond James Stadium. \nThis one’s extra special: the Bucs will be suiting up in their classic 1976-inspired throwback uniforms\, honoring 50 seasons of Buccaneers football with a bold mix of white\, orange\, and red. It’s history in the making\, and there’s no better place to watch than Omnia Blue—your DTSP Bucs bar.
URL:https://omniabluegentlemensclubdtsp.com/event/exotic-dance-show/
LOCATION:Omnia Blue Gentlemen’s Club\, 340 1st Ave N\, St. Petersburg\,\, FL\, 33701\, United States
CATEGORIES:Bucs Football Game
ATTACH;FMTTYPE=image/jpeg:https://omniabluegentlemensclubdtsp.com/wp-content/uploads/2021/10/07-15-2025_Bucs_1976_Uniform.jpg
END:VEVENT
END:VCALENDAR