/* ==========================================================================
   HSVLesbians.com - Animations & Micro-Interactions
   ========================================================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 45, 132, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(124, 45, 132, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(124, 45, 132, 0);
  }
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.fade-in {
  animation: fadeIn 0.4s ease forwards;
}

.pulse-button {
  animation: pulseGlow 2s infinite;
}

.floating-badge {
  animation: floatBadge 3.5s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-page);
}

::-webkit-scrollbar-thumb {
  background: #D1C5DA;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #B6A4C2;
}
