/* Custom Modern Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f9fafb;
}
::-webkit-scrollbar-thumb {
  background: #cdd2d9;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a1a6b0;
}

/* Gradient Text Animation */
.animate-gradient-text {
  background-size: 200% auto;
  animation: shine 5s linear infinite;
}
@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* Floating animation for icons */
.animate-float {
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Animated Background shapes */
.bg-shape {
  position: fixed;
  filter: blur(100px);
  z-index: -1;
  border-radius: 50%;
  animation: pulse-shape 10s ease-in-out infinite alternate;
  pointer-events: none;
}
.bg-shape-1 {
  background: #c4b5fd; /* violet-300 */
  width: 500px;
  height: 500px;
  top: -150px;
  left: -150px;
}
.bg-shape-2 {
  background: #a5b4fc; /* indigo-300 */
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -200px;
  animation-delay: -5s;
}
@keyframes pulse-shape {
  0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
  100% { transform: scale(1.2) translate(30px, -30px); opacity: 0.6; }
}

/* Dropzone glow */
.glow-effect {
  position: relative;
  z-index: 1;
}
.glow-effect::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(45deg, #8b5cf6, #6366f1, #8b5cf6);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.glow-effect:hover::before, .drop-zone.drag-over::before {
  opacity: 0.7;
  filter: blur(12px);
}
