body {
  margin: 0;
  background-color: #000;
  color: #ccc;
  font-family: 'VT323', 'Share Tech Mono', monospace;
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
  min-height: 100vh;
}

.wrapper {
  max-width: 960px;
  width: 100%;
  text-align: center;
}

.lain-img {
  width: 300px;
  height: auto;
  image-rendering: pixelated;
  filter: grayscale(1) contrast(1.3);
  opacity: 0.50;
  margin-top: 5rem;
  display: inline-block;
}

.content-box {
  max-width: 960px;
  margin: 0 auto 3rem auto;
  background: transparent;
  padding: 1rem 2rem;
  color: #ccc;
  font-family: monospace, monospace;
  position: relative;
  z-index: 1;
  border: none;
  box-shadow: none;
}

h1, h2, h3 {
  color: #ccc;
  text-shadow: none;
  font-weight: normal;
  margin: 0.5rem 0;
}

p, li, a {
	font-size: 20px;
}

a {
  text-decoration: underline;
  color: #ccc;
}

a:hover {
  color: #eee;
}

.manga-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  justify-items: center;
}

.manga-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.9rem;
}

.manga-item img {
  width: 100px;
  height: auto;
  border-radius: 6px;
  filter: grayscale(1) contrast(1.1);
  transition: transform 0.2s ease;
}

.manga-item img:hover {
  transform: scale(1.05);
  filter: none;
}