/* ── Paginación MangaNexus ── */
.page-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}
.page-numbers li {
  display: flex;
}
/* Base para todos los links y spans */
.page-numbers a,
.page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #aab0c6;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
  cursor: pointer;
}
/* Hover en links normales */
.page-numbers a:hover {
  color: #fff;
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.2);
  transform: translateY(-1px);
}
/* Página activa */
.page-numbers span.current {
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color: transparent;
  box-shadow:
    0 4px 15px rgba(37, 99, 235, 0.45),
    0 0 0 3px rgba(37, 99, 235, 0.15);
  cursor: default;
  transform: translateY(-1px);
}
/* Botones prev / next */
.page-numbers a.next,
.page-numbers a.prev {
  font-size: 1.1rem;
  color: #60a5fa;
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.25);
}
.page-numbers a.next:hover,
.page-numbers a.prev:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.6);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
}