:root {
  color-scheme: light dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px 64px;
  background: #fffafd;
  color: #251a27;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

h2 {
  margin-top: 2em;
  font-size: 1.08rem;
}

.updated {
  color: #6f6471;
}

a {
  color: #7200e8;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #150f16;
    color: #fff8ff;
  }

  .updated {
    color: #c0b3c1;
  }

  a {
    color: #cf8cff;
  }
}
