.clock-fireflies {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 100%, #1e3320 0%, #060a06 70%);
  z-index: 0;
}

.firefly {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #d4ff8a;
  border-radius: 50%;
  box-shadow: 0 0 8px 3px rgba(212, 255, 138, 0.7);
  animation: drift 6s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  50% { transform: translate(20px, -25px); opacity: 1; }
}
