.category-card {
  position: relative;
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.category-card img {
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}
.category-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #f63b4b, #a28dfd, #f63b4b);
  border-radius: 0.75rem;
  z-index: -1;
  background-size: 400%;
  animation: none;
  transition: all 0.3s ease;
  opacity: 0;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-card:hover::before {
  opacity: 1;
  animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: white;
  border-radius: 0.75rem;
  z-index: -1;
}