.theme-spring .spring-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  pointer-events: none;
  z-index: 0;
}

/* 🌼 цветы */
.theme-spring .flower {
  position: absolute;
  font-size: 26px;
  opacity: 0;
  transform: scale(0.3);
  cursor: pointer;
  pointer-events: auto;
  animation: flower-grow 1s ease-out forwards;
}
@keyframes flower-grow {
  0%   { transform: scale(0.3); opacity: 0; }
  100% { transform: scale(1);   opacity: 1; }
}

/* 🌸/🦋 "спавн при клике" */
.theme-spring .spawn {
  position: absolute;
  font-size: 20px;
  opacity: 0.9;
  animation: spawn-fly 3s ease-out forwards;
}
@keyframes spawn-fly {
  0%   { transform: translateY(0) scale(0.8); opacity: 1; }
  100% { transform: translateY(-120px) scale(1.2); opacity: 0; }
}
