body {
  margin: 0;
  padding: 0;
  background: #96a8c8;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
}

.wrapper {
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 10px;
}

.header {
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 24px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-title a {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.header-subtitle {
  font-size: 16px;
  font-style: italic;
}

.comic-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.comic-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.nav {
  margin: 15px 0;
}

.nav a,
.nav span {
  display: inline-block;
  background: #6e7b91;
  color: #ffffff;
  text-decoration: none;
  padding: 6px 12px;
  margin: 0 4px;
  border-radius: 4px;
  font-size: 14px;
}

.nav span.disabled {
  background: #999999;
}

.comic-image img {
  max-width: 100%;
  height: auto;
  border: 2px solid #000;
  background: #fff;
}

.comic-alt-text {
  margin-top: 14px;
  font-size: 14px;
  font-style: italic;
  color: #333;
}

.footer {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #333;
}
