:root {
  --bg: #0a0a0b;
  --fg: #f4f4f5;
  --muted: #a1a1aa;
  --line: #27272a;
  --row: #141416;
  --row-hover: #1c1c1f;
  --live: #4ade80;
  --pending: #fbbf24;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  font: 13px/1.45 var(--font);
  background: var(--bg);
  color: var(--fg);
}

.top, main, .foot {
  width: min(720px, calc(100% - 1.5rem));
  margin-inline: auto;
}

.top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  align-items: baseline;
  justify-content: space-between;
  padding: 1rem 0 0.55rem;
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; gap: 0.55rem; align-items: center; }
.brand h1 { margin: 0; font-size: 0.98rem; font-weight: 650; }
.brand .muted { margin: 0.05rem 0 0; font-size: 0.78rem; color: var(--muted); }

.mark {
  width: 1.15rem; height: 1.15rem; border-radius: 0.28rem;
  background: linear-gradient(135deg, #d4d4d8, #52525b);
}

.crumb {
  display: flex; flex-wrap: wrap; gap: 0.25rem; align-items: center;
  font-size: 0.78rem; color: var(--muted);
}
.crumb a { color: #d4d4d8; text-decoration: none; }
.crumb a:hover { color: #fff; }
.crumb .sep { opacity: 0.45; }

main { padding: 0.7rem 0 1.5rem; }
.hint {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.list {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--row);
}

.row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 0.5rem;
  align-items: center;
  padding: 0.42rem 0.65rem;
  border-top: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}
.row:first-child { border-top: 0; }
a.row:hover { background: var(--row-hover); }
.muted-row { color: var(--muted); }

.cell { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cell.name { font-weight: 560; }
.cell.mono { font-family: var(--mono); font-size: 0.75rem; color: var(--muted); }
.cell.muted { color: var(--muted); font-size: 0.75rem; }
.cell.status { font-size: 0.75rem; color: var(--muted); text-align: right; }

.foot {
  display: flex; gap: 0.4rem;
  padding: 0.6rem 0 1.2rem;
  font-size: 0.72rem; color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 560px) {
  .row { grid-template-columns: 1fr; gap: 0.1rem; padding: 0.5rem 0.65rem; }
  .cell.status { text-align: left; }
}
