/* Component-specific styles */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.anime-character {
  position: relative;
  animation: bounce 2s infinite;
}

.anime-body {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #a29bfe, #6c5ce7);
  border-radius: 20px;
  margin: 0 auto;
  border: 2px solid #2d3436;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Filter button styles */
.filter-btn {
  transition: all 0.3s ease;
}

.filter-btn.active {
  background-color: #7c3aed !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}
