60
const countdown = setInterval(() => {
seconds--;
if (seconds >= 0) {
timerDisplay.textContent = seconds;
}
if (seconds === 0) {
clearInterval(countdown);
timerDisplay.textContent = "타임업!";
}
}, 1000);
};