Given the current tragic situation in Hong Kong, we feel postponing the DT2 Listening Experience is the right thing. New arrangements will be announced in the near future. Stay safe.
- Wildstyle Records
(function() { const targetDate = new Date('2025-11-27T22:00:00+08:00').getTime(); const countdownEl = document.getElementById('countdown'); const ticketEl = document.getElementById('ticket-link'); function createUnit(value, label) { return `
${String(value).padStart(2, '0')}
${label}
`; } function update() { const now = Date.now(); const diff = targetDate - now; if (diff <= 0) { countdownEl.style.display = 'none'; ticketEl.style.display = 'block'; return; } const days = Math.floor(diff / 86400000); const hours = Math.floor((diff % 86400000) / 3600000); const mins = Math.floor((diff % 3600000) / 60000); const secs = Math.floor((diff % 60000) / 1000); countdownEl.innerHTML = createUnit(days, 'DAYS') + createUnit(hours, 'HOURS') + createUnit(mins, 'MINS') + createUnit(secs, 'SECS'); requestAnimationFrame(update); } update(); })();