:root {
  color-scheme: light dark;
}

body {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.6;
}

header {
  margin-bottom: 2rem;
  font-family: system-ui, sans-serif;
}

header a {
  text-decoration: none;
  font-weight: bold;
}

h1 {
  font-size: 1.8rem;
}

h2 {
  font-size: 1.1rem;
  font-family: system-ui, sans-serif;
  color: #666;
  margin-top: 2rem;
}

.character-list {
  list-style: none;
  padding: 0;
}

.character-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #ddd;
}

.character-list a {
  font-size: 1.1rem;
  text-decoration: none;
}

.meta {
  display: block;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  color: #888;
}

.backstory {
  font-style: italic;
  color: #444;
  padding: 1rem;
  background: rgba(128, 128, 128, 0.08);
  border-radius: 6px;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

@media (prefers-color-scheme: dark) {
  h2 {
    color: #aaa;
  }

  .character-list li {
    border-bottom-color: #444;
  }

  .meta {
    color: #aaa;
  }

  .backstory {
    color: #ddd;
    background: rgba(255, 255, 255, 0.08);
  }

  hr {
    border-top-color: #444;
  }
}
