
.search-page #results-count {
  font-size: 14px;
  color: #cdc2ff;
  margin-left: 8px;
}

.search-page .anime-list {
  width: 100%;
}

.archive-container {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.anime-list {
  width: 100%;
}

.anime-card {
  width: 100%;
  margin-bottom: 15px;
  background: rgba(25, 25, 25, 0.7);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  transition: transform 0.3s ease;
}

.anime-card:hover {
  transform: translateY(-5px);
}

.anime-poster {
  width: 120px;
  min-width: 120px;
  height: 200px;
  overflow: hidden;
}

.anime-poster img {
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.anime-info {
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
  position: relative;
}

.anime-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Funnel Display", arial, serif;
  display: flex;
  align-items: center;
}

.anime-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
}

.anime-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 10px;
  margin-top: 15px;
  color: #cdc2ff;
}

.anime-meta-2 {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 10px;
  margin-top: -10px;
  color: #cdc2ff;
}

.anime-description {
  font-size: 14px;
  line-height: 1.4;
  max-height: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: #ccc;
  margin-bottom: 10px;
}

.anime-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.anime-tag {
  background: rgba(82, 41, 204, 0.3);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.imdb-score {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffd700;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}

.pagination {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  gap: 10px;
}

.page-link {
  padding: 8px 15px;
  background: rgba(82, 41, 204, 0.5);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.page-link:hover,
.page-link.active {
  background: rgb(82, 41, 204);
}

.page-link.disabled {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

.fourk-logo {
  position: absolute;
  top: 5;
  left: 5;
  width: 50px !important;
  background-size: contain;
}
@media (max-width: 768px) {
  .archive-container {
    flex-direction: column;
  }

  .anime-list {
    width: 100%;
  }
}
