#stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.gradient-text {
  background: linear-gradient(to right, #d8b4fe, #93c5fd, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradient 8s linear infinite;
}

.hover-gradient {
  background: linear-gradient(45deg, #7e22ce, #4f46e5, #2563eb);
  background-size: 200% auto;
  transition: all 0.5s ease;
}
.hover-gradient:hover {
  background-position: right center;
}

.card-gradient {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(168, 85, 247, 0.1)
  );
  border: 1px solid rgba(99, 102, 241, 0.2);
}
.card-gradient:hover {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.15),
    rgba(168, 85, 247, 0.15)
  );
  border-color: rgba(99, 102, 241, 0.3);
}

.hover-lift {
  transition: all 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.1);
}

.blur-background > *:not(.swal2-container) {
  filter: blur(5px);
  transition: filter 0.3s ease;
}
