/* TailwindCSS via CDN - Custom styles */

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

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: #475569;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Custom gradient backgrounds */
.gradient-pink-blue {
  background: linear-gradient(135deg, rgba(255, 101, 132, 0.2) 0%, rgba(92, 111, 255, 0.2) 100%);
}

.gradient-blob {
  background: radial-gradient(circle at 30% 50%, rgba(255, 101, 132, 0.3), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(92, 111, 255, 0.3), transparent 50%);
}

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

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Button hover effects */
.btn-primary {
  background: #FF6584;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #FF335F;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 101, 132, 0.3);
}

/* Card hover effects */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
