:root { color-scheme: light dark; --fg: #1a1a1a; --bg: #ffffff; --muted: #5a5a5a; --accent: #5b3df5; --rule: #e2e2e2; } @media (prefers-color-scheme: dark) { :root { --fg: #f0f0f0; --bg: #0f0f12; --muted: #b0b0b0; --accent: #8770ff; --rule: #2a2a30; } } * { box-sizing: border-box; } html, body { margin: 0; padding: 0; } body { font: 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; color: var(--fg); background: var(--bg); } .site-header { padding: 1.5rem 2rem; border-bottom: 1px solid var(--rule); display: flex; align-items: center; justify-content: space-between; } .site-header a.brand { color: var(--fg); text-decoration: none; font-weight: 700; letter-spacing: -0.01em; } .site-header nav a { color: var(--muted); text-decoration: none; margin-left: 1.25rem; } .site-header nav a:hover { color: var(--accent); } main { max-width: 760px; margin: 0 auto; padding: 2.5rem 1.5rem 5rem; } h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.2; margin: 0 0 0.5rem; letter-spacing: -0.02em; } .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; } h2 { font-size: 1.25rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); } h3 { font-size: 1.05rem; margin-top: 1.5rem; } a { color: var(--accent); } ul, ol { padding-left: 1.4rem; } li { margin-bottom: 0.4rem; } .callout { border-left: 3px solid var(--accent); padding: 0.75rem 1rem; margin: 1.5rem 0; background: color-mix(in srgb, var(--accent) 8%, var(--bg)); } footer { border-top: 1px solid var(--rule); padding: 1.5rem 2rem; text-align: center; color: var(--muted); font-size: 0.9rem; } footer a { color: var(--muted); } footer a:hover { color: var(--accent); } table.tbl { border-collapse: collapse; width: 100%; margin-top: 1rem; } .tbl th.thl { text-align: left; border-bottom: 1px solid var(--rule); } .tbl .rb { border-bottom: 1px solid var(--rule); } .tbl .pd { padding: 0.5rem; }