/* 自定义样式以更接近原站 */
:root {
  --primary-color: #ff6b81; /* 原站主色调 */
  --secondary-color: #667eea;
}
.navbar-brand {
  font-weight: bold;
  color: var(--primary-color) !important;
}
.nav-link.active {
  color: var(--primary-color) !important;
  font-weight: bold;
}
.category-title {
  border-left: 4px solid var(--primary-color);
  padding-left: 15px;
  margin: 30px 0 20px;
}
.anime-card {
  border: none;
  transition: transform 0.3s;
  margin-bottom: 20px;
}
.anime-card:hover {
  transform: translateY(-5px);
}
.anime-card-img {
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
}
.status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
}
.footer-links a {
  color: #666;
  text-decoration: none;
  margin: 0 8px;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--primary-color);
}
/* 移动端优化 */
@media (max-width: 768px) {
  .anime-card-img {
    height: 200px;
  }
  .search-box {
    margin-top: 10px;
  }
}
