.sharp {
  border-radius: 0 !important;
}

.anime-card {
  transition: all 0.3s ease;
  background: #1a1a1a;
}

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

.card-image {
  height: 240px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.anime-card:hover .card-image img {
  transform: scale(1.08);
}

.type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.episode-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.85);
  color: #f97316;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pagination-btn {
  transition: all 0.2s ease;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-btn:hover:not(.active) {
  background: #2a2a2a !important;
}

.genre-tag {
  display: inline-block;
  background: #2a2a2a;
  color: #ccc;
  padding: 4px 12px;
  margin: 4px;
  font-size: 12px;
  transition: all 0.2s ease;
}

.genre-tag:hover {
  background: #f97316;
  color: black;
}

/* Popular genres row */
.genre-scroll {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 8px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.genre-scroll::-webkit-scrollbar {
  display: none;
}