


/* Fuente general */
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #ffeaf4, #fff7d1);
  color: #442233;
}

/* Barra de arriba */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  border-bottom: 3px solid #ff9ac0;
  background: #fff5fb;
  box-shadow: 0 2px 0 #ffb9d7;
}

.logo {
  font-family: "Press Start 2P", cursive;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 4px 8px;
  border: 2px solid #ff82b3;
  background: #ffe0f0;
}

/* Menú */
.nav-menu a {
  margin-left: 16px;
  text-decoration: none;
  font-size: 14px;
  text-transform: lowercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 2px solid transparent;
}

.nav-menu a:hover {
  border-color: #ff82b3;
  background: #fff;
}

.nav-menu .active {
  background: #ffb9d7;
  border-color: #ff82b3;
}

/* Contenido */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.title {
  font-family: "Press Start 2P", cursive;
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 2px #ff9ac0;
}

/* Buscador */
.search-area {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
}

.search-input {
  width: min(600px, 80vw);
  padding: 10px 14px;
  border-radius: 999px;
  border: 3px solid #a8e0ff;
  outline: none;
  background: #ffffffdd;
  font-size: 14px;
}

.search-input:focus {
  border-color: #ff9ac0;
}

.search-btn {
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  font-size: 18px;
  cursor: pointer;
  background: #ff9ac0;
  box-shadow: 0 3px 0 #e56b9a;
}

/* Tarjetas */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.manga-card {
  background: #fffdf8;
  border: 3px solid #ffc9dd;
  box-shadow: 0 4px 0 #ff9ac0;
  padding: 14px;
  border-radius: 14px;
  transform: rotate(-1deg);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.manga-card:nth-child(2) {
  transform: rotate(1deg);
}

.manga-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 6px 0 #d97fa5;
}

.cover-placeholder {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  border: 3px dashed #a8e0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  background: repeating-linear-gradient(
    45deg,
    #fdfbff,
    #fdfbff 6px,
    #f2f6ff 6px,
    #f2f6ff 12px
  );
}

.manga-title {
  font-size: 16px;
  margin: 4px 0;
}

.manga-tags {
  font-size: 12px;
  color: #865b80;
  background: #ffeaf4;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.manga-desc {
  font-size: 13px;
  margin: 4px 0 6px;
}

.manga-spice {
  font-size: 12px;
  font-weight: 700;
  color: #ff3e7f;
}

/* Footer */
.footer {
  text-align: center;
  padding: 10px;
  font-size: 11px;
  border-top: 3px solid #ff9ac0;
  background: #fff5fb;
}
