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

@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.glow-text {
  text-shadow: 0 0 10px rgba(124, 58, 237, 0.7);
}

.neon-text {
  text-shadow: 0 0 5px rgba(16, 185, 129, 0.7);
}

.hover-glow:hover {
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
  transition: box-shadow 0.3s ease;
}

.glow-border {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.2);
}

.glow-border:hover {
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

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

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #7c3aed, #10b981);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #8b5cf6, #34d399);
}