  /* 벚꽃 애니메이션 설정 */
@keyframes fall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* 🌸 벚꽃 애니메이션 스타일 */
.petal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 999;
}

.petal {
  position: absolute;
  width: 189px;
  height: 189px;
  background-image: url('../images/flower.png');

  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.8;
  animation: fall linear infinite;
}