/* Clean, readable, AO3-inspired */
:root {
  --text: #333;
  --bg: #fdfdfd;
  --link: #b30000;
  --border: #eee;
  --accent: #f5f5f5;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  padding: 0;
}

header, main, footer {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
}

header {
  text-align: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.filters {
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.story-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.story-item h2 {
  margin: 0 0 0.4rem 0;
  font-size: 1.4rem;
}

.story-item a {
  color: var(--link);
  text-decoration: none;
}

.story-item a:hover {
  text-decoration: underline;
}

.meta {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1rem;
}

/* Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.8rem;
  }
}