body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  background: #0f172a;
  color: #fff;
  text-align: center;
  margin: 0;
  padding-top: 10px;
}

.countdown {
  display: inline-block;
  background: rgba(134, 149, 98, 0.88);
  padding: 1.5rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  font-size: 18px;
  font-weight: bold;
}

.number {
  color: #fff;
  font-size: 18px;
  text-align: right;
  margin-right: 0.2rem;
}

.label {
  color: #fff;
  font-size: 18px;
  margin-right: 0.2rem;
}

@keyframes glowPop {
  0%   { transform: scale(1); text-shadow: 0 0 0px #000000; opacity: 1; }
  50%  { transform: scale(1.3); text-shadow: 0 0 20px #000000; opacity: 0.9; }
  100% { transform: scale(1); text-shadow: 0 0 0px #000000; opacity: 1; }
}

.number.animate {
  animation: glowPop 1s ease;
}



