:root {
  --fg: #1c1c1e;
  --muted: #555;
  --bg: #fff;
  --accent: #0366d6;
  --line: #e6e6e6;
  --code-bg: #f5f5f7;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.8em;
  margin: 1em 0;
}
.media-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.5em;
  background: var(--bg);
}
.media-grid img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: pixelated;
}
.media-grid figcaption {
  font-size: 0.8em;
  color: var(--muted);
  margin-top: 0.3em;
  text-align: center;
}
.game-list-item { display: flex; gap: 0.8em; }
.game-list-item .thumb { flex: 0 0 80px; }
.game-list-item .thumb img { width: 80px; height: auto; border-radius: 3px; }
.game-list-item .info { flex: 1; min-width: 0; }
* { box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Noto Sans CJK JP", sans-serif;
  color: var(--fg);
  background: var(--bg);
  margin: 0;
  line-height: 1.6;
}
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.5em 1.2em 4em;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
code, pre {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  background: var(--code-bg);
  border-radius: 4px;
}
code { padding: 0.1em 0.4em; }
pre {
  padding: 1em;
  overflow-x: auto;
  font-size: 0.9em;
  line-height: 1.5;
}
h1 { font-size: 1.8em; margin-top: 0.5em; }
h2 { margin-top: 2em; border-bottom: 1px solid var(--line); padding-bottom: 0.3em; }
h3 { margin-top: 1.6em; }
.lead { color: var(--muted); font-size: 1.05em; }
.site-header {
  border-bottom: 1px solid var(--line);
  padding: 0.8em 1.2em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1em;
  max-width: 760px;
  margin: 0 auto;
}
.site-header .brand {
  font-weight: 700;
  font-size: 1.05em;
  color: var(--fg);
  margin-right: auto;
}
.site-header nav { display: flex; gap: 1em; flex-wrap: wrap; }
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5em 1.2em;
  text-align: center;
  color: var(--muted);
  font-size: 0.9em;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.8em;
  list-style: none;
  padding: 0;
}
.platform-grid li {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.8em 1em;
}
.platform-grid .count { color: var(--muted); font-size: 0.9em; }
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
  font-size: 0.95em;
}
th, td {
  text-align: left;
  padding: 0.55em 0.6em;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th { font-weight: 600; background: var(--code-bg); }
.game-list { list-style: none; padding: 0; }
.game-list li {
  border-bottom: 1px solid var(--line);
  padding: 0.6em 0.2em;
}
.game-list .meta { color: var(--muted); font-size: 0.85em; }
.badge {
  display: inline-block;
  background: var(--code-bg);
  border-radius: 3px;
  padding: 0.05em 0.4em;
  font-size: 0.85em;
  color: var(--muted);
  font-family: ui-monospace, monospace;
}
.verified-yes { color: #1e7f1e; }
.verified-no { color: #888; }
.stats-table th { width: 30%; }
