/* Uçan kalpler arka plan */
.floating-hearts {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floating-heart {
  position: absolute;
  font-size: 20px;
  animation: float-heart 6s linear infinite;
  opacity: 0.6;
}

/* Kalp balonları efektleri */
.heart-balloon {
  position: fixed;
  font-size: 40px;
  pointer-events: none;
  z-index: 500;
  animation: balloonFly 4s ease-out forwards;
}

.heart-balloon.slow {
  animation: balloonFlySlow 6s ease-out forwards;
}

.heart-balloon.fast {
  animation: balloonFlyFast 3s ease-out forwards;
}

/* Havai fişek efektleri */
.firework {
  position: fixed;
  pointer-events: none;
  z-index: 1000;
}

.firework-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: fireworkExplode 1.5s ease-out forwards;
}
