/* === Countdown Styles === */
.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.countdown-item {
  flex: 1 1 0;
  min-width: 50px;
  max-width: 60px;
  background: var(--tblr-primary, #236871);
  color: #fff;
  border-radius: 10px;
  padding: 12px 10px 8px 10px;
  box-shadow: 0 2px 8px rgba(44,104,113,0.10);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown-item span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 1px;
}
.countdown-item small {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.5px;
  font-family: 'Fresca', Arial, sans-serif;
  text-shadow: 0 1px 4px rgba(44,104,113,0.18);
}
@media (max-width: 480px) {
  .countdown {
    gap: 8px;
  }
  .countdown-item {
    min-width: 38px;
    padding: 8px 4px 6px 4px;
    border-radius: 7px;
  }
  .countdown-item span {
    font-size: 1.2rem;
  }
  .countdown-item small {
    font-size: 0.8rem;
  }
}

/* Animasi perubahan angka: fade in */
.count-animate {
  animation: count-fade 0.7s cubic-bezier(.33,1,.68,1);
}
@keyframes count-fade {
  0% { opacity: 0; transform: scale(0.92); }
  60% { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
} 