WELCOME TO THE DEMO V0.1
THE COUNTDOWN HAS BEGUN…
Days Hours Minutes Seconds
// Set end date (change to your event)
var countDownDate = new Date("Dec 19, 2025 22:00:00").getTime();
var x = setInterval(function() {
var now = new Date().getTime();
var distance = countDownDate - now;
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
document.getElementById("days").innerHTML = days;
document.getElementById("hours").innerHTML = hours;
document.getElementById("minutes").innerHTML = minutes;
document.getElementById("seconds").innerHTML = seconds;
if (distance < 0) { clearInterval(x); document.getElementById("countdown").innerHTML = "Event Live!"; }
}, 1000);
THE FUTURE HAS ARRIVED.
A TICKET IS YOUR KEY — UNLOCK A CLUBBING EXPERIENCE UNLIKE ANYTHING YOU’VE SEEN. FOR MONTHS, PEOPLE HAVE TRIED TO GUESS OUR SOUND, AND TONIGHT THE ANSWER FINALLY REVEALS ITSELF. ZAMANA IS WHAT YOU ALLOW IT TO BECOME, A WORLD WHERE THE AUDIENCE SHAPES THE JOURNEY. PHASE 1 AND PHASE 2 LIE IN YOUR HANDS, WHILE PHASE 3 IS OURS — AND IT CHANGES EVERYTHING. LADIES AND GENTLEMEN, WELCOME TO ZAMANA’S OPENING PARTY: 2AM IN NYC EDITION.
.final-ticket-button {
display: block;
width: 100%;
max-width: 1100px;
margin: 0 auto;
background: #000000;
color: #ffffff;
font-weight: 900;
text-align: center;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 10px;
border: 5px solid #ffffff;
border-radius: 70px;
box-shadow: 0 40px 120px rgba(0,0,0,0.9);
transition: all 0.5s ease;
white-space: nowrap;
}
/* Desktop – massive */
.final-ticket-button {
font-size: 72px;
padding: 50px 20px;
}
/* Phone – 100% width, auto-reduced font, fits perfectly */
@media (max-width: 767px) {
.final-ticket-button {
font-size: 40px !important;
padding: 40px 20px !important;
}
}
/* Small phones – still full text */
@media (max-width: 480px) {
.final-ticket-button {
font-size: 25px !important;
padding: 25px 20px !important;
}
}
/* Hover animation */
.final-ticket-button:hover {
background: #111111;
transform: translateY(-18px);
box-shadow: 0 70px 180px rgba(0,0,0,0.95);
}
