:root {
  --ink: #1f2430;
  --muted: #6b7280;
  --accent: #7C3AED;
  --canvas: #f7f8fa;
  --line: #e2e5ea;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.6;
}
.page { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
header.site { display: flex; align-items: center; gap: 10px; margin-bottom: 40px; }
header.site .mark { width: 10px; height: 10px; border-radius: 3px; background: var(--accent); }
header.site .name { font-weight: 600; font-size: 1.0625rem; }
h1 { font-size: 1.75rem; font-weight: 600; margin: 0 0 8px; }
h2 { font-size: 1.25rem; font-weight: 600; margin: 40px 0 12px; }
h3 { font-size: 1rem; font-weight: 600; margin: 24px 0 8px; }
p, li { font-size: 0.9375rem; }
a { color: var(--accent); }
.lede { color: var(--muted); font-size: 1.0625rem; margin-bottom: 24px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 20px 24px; margin: 16px 0; }
/* Unfilled template slot — must be gone before moderation. */
.placeholder {
  background: rgba(220, 38, 38, 0.08);
  border: 1px dashed #dc2626;
  color: #b91c1c;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.875rem;
  font-weight: 500;
}
.screenshots { display: flex; flex-direction: column; gap: 16px; }
.screenshots figure { margin: 0; }
.screenshots img { width: 100%; height: auto; display: block; border: 1px solid var(--line); border-radius: 10px; }
.screenshots figcaption { margin-top: 8px; color: var(--muted); font-size: 0.875rem; }
footer.legal { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.875rem; }
footer.legal a { margin-right: 16px; }
table { width: 100%; border-collapse: collapse; margin: 16px 0; }
th, td { text-align: left; padding: 8px 12px; border-bottom: 1px solid var(--line); font-size: 0.9375rem; }
