/* Falling Emoji System - Female Symbols Animation */
.falling-emoji-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.falling-emoji {
  position: absolute;
  top: -50px;
  color: #ff4df2;
  text-shadow: 
    0 0 5px rgba(255, 0, 255, 0.8),
    0 0 10px rgba(255, 0, 255, 0.6),
    0 0 15px rgba(255, 0, 255, 0.4);
  font-weight: bold;
  user-select: none;
  animation: fall linear infinite, drift ease-in-out infinite, rotate linear infinite;
  will-change: transform, top, left;
}

@keyframes fall {
  0% {
    top: -50px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100vh;
    opacity: 0;
  }
}

@keyframes drift {
  0%, 100% {
    transform: translateX(0) rotate(var(--rotation, 0deg));
  }
  25% {
    transform: translateX(calc(var(--drift, 0px) * 0.5)) rotate(calc(var(--rotation, 0deg) + 90deg));
  }
  50% {
    transform: translateX(var(--drift, 0px)) rotate(calc(var(--rotation, 0deg) + 180deg));
  }
  75% {
    transform: translateX(calc(var(--drift, 0px) * 0.5)) rotate(calc(var(--rotation, 0deg) + 270deg));
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Glow pulse effect */
.falling-emoji {
  animation: 
    fall linear infinite,
    drift ease-in-out infinite,
    rotate linear infinite,
    glow-pulse 1.6s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% {
    text-shadow: 
      0 0 5px rgba(255, 0, 255, 0.8),
      0 0 10px rgba(255, 0, 255, 0.6),
      0 0 15px rgba(255, 0, 255, 0.4);
  }
  50% {
    text-shadow: 
      0 0 8px rgba(255, 0, 255, 1),
      0 0 15px rgba(255, 0, 255, 0.8),
      0 0 20px rgba(255, 0, 255, 0.6),
      0 0 25px rgba(255, 0, 255, 0.4);
  }
}

/* Responsive - reduce on mobile */
@media (max-width: 768px) {
  .falling-emoji {
    font-size: 10px !important;
  }
  
  .falling-emoji-container {
    z-index: 0;
  }
}

/* Performance optimization */
.falling-emoji {
  transform: translateZ(0);
  backface-visibility: hidden;
}

