/* style.css */
p {
  font-size: 18px;
  line-height: 1.5;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #fafafa;
}

h1 {
  color: #0f172a;
}

h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

code {
  background: #eef2ff;
  padding: 0.2rem 0.3rem;
  border-radius: 6px;
  font-family: monospace;
  font-size: 0.9rem;
}

pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: 1rem;
  border-radius: 12px;
  overflow-x: auto;
}

pre code {
  background: none;
  color: inherit;
  padding: 0;
}

hr {
  margin: 2rem 0;
}

.footer-note {
  font-size: 0.85rem;
  opacity: 0.7;
}