body {
  background: #f8f8f8;
  color: #222;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

header, footer {
  text-align: center;
  padding: 1rem 0;
  background: #eee;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  color: #444;
  border-bottom: 2px solid black;
  user-select: none;
}

.neon-header {
  font-size: 2.5rem;
  margin: 0;
  color: #222;
  text-shadow: 1px 1px 0 white;
}

.marquee-container {
  background: #fff;
  border: 1px solid #ccc;
  border-left: 8px solid black;
  padding: 0.5rem 1rem;
  font-style: italic;
  font-weight: 600;
  font-family: 'Georgia', serif;
  color: #555;
  margin: 1rem auto;
  max-width: 900px;
  user-select: none;
  overflow: hidden;
}

.manga-panels {
  max-width: 960px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.manga-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.manga-list li {
  background: white;
  border: 3px solid black;
  box-shadow:
    4px 4px 0 black,
    7px 7px 0 #ccc;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.5rem 1rem;
  box-sizing: border-box;
  position: relative;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.manga-list li:hover {
  transform: scale(1.05);
  box-shadow:
    6px 6px 0 black,
    9px 9px 0 #aaa;
}

.manga-title {
  font-weight: bold;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  color: black;
  margin-bottom: 0.6rem;
  text-align: center;
  padding: 0.1rem 0.5rem;
  border: 2px solid black;
  background: white;
  box-shadow: 3px 3px 0 black;
  user-select: none;
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.manga-list img {
  width: 100%;
  height: auto;
  border: 1px solid black;
  box-shadow: 2px 2px 0 #666;
  filter: grayscale(10%);
  transition: filter 0.3s ease;
}

.manga-list li:hover img {
  filter: grayscale(0%);
}

@media (max-width: 600px) {
  .manga-list {
    justify-content: center;
  }

  .manga-list li {
    width: 90vw;
    max-width: 300px;
  }
}

footer {
  background: #eee;
  color: #444;
  border-top: 2px solid black;
  padding: 1rem 0;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  user-select: none;
}