/* ===========================================
   Overlay Styles - Countdown & Status Overlays
   Farm Theme
   =========================================== */

/* Countdown Overlay */
.countdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.countdown-number {
  font-size: 10rem;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 0 4px 12px rgba(0, 0, 0, 0.5);
  animation: countdownPop 1s ease-out;
}

/* Countdown "START!" Text */
.countdown-start {
  font-size: 5rem;
  color: var(--farm-wheat);
  text-shadow: 0 0 50px rgba(245, 222, 179, 0.8), 0 4px 12px rgba(0, 0, 0, 0.5);
}
