
  /* Font style mirip digital */
  .countdown-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 8px rgba(255,255,255,0.7);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* Efek animasi halus saat berubah */
  .countdown-number.updated {
    transform: scale(1.2);
    opacity: 0.8;
  }
