/* 꽃가루(파티클) 애니메이션용 CSS */
.petal {
  position: fixed;
  top: 0;
  pointer-events: none;
  z-index: 9999;
  width: 24px;
  height: 24px;
  opacity: 0.85;
  will-change: transform;
  transition: opacity 0.5s;
}
.petal svg {
  width: 100%;
  height: 100%;
  display: block;
}