body {
  background-color: #0d0b14;
  font-family: 'Courier New', monospace;
  color: #f5f5f5;
  margin: 0;
}

.comicbook-container {
  max-width: 900px;
  margin: auto;
  padding: 2rem 1rem;
}

.titulo-comic {
  text-align: center;
  color: #ff2e8b;
  text-shadow: 0 0 10px rgba(255, 46, 139, 0.6);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.webtoon img {
  width: 100%;
  display: block;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border: 2px solid #ff2e8b33;
  box-shadow: 0 0 15px rgba(255, 46, 139, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.webtoon img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255, 46, 139, 0.5);
}

.navegacion-comic {
  text-align: center;
  margin-top: 3rem;
}

.btn-siguiente {
  padding: 0.9rem 1.8rem;
  background: linear-gradient(45deg, #ff2e8b, #d70063);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn-siguiente:hover {
  background: linear-gradient(45deg, #ff4da1, #f04680);
  box-shadow: 0 0 15px rgba(255, 46, 139, 0.5);
}


@media (max-width: 600px) {
  .btn-siguiente {
    display: inline-block;
    width: 100%;
  }
}