html { background: #fff; color: #000; }
body {
  margin: 0; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  -webkit-font-smoothing: antialiased;
}
main { display: flex; flex-direction: column; align-items: center; gap: 48px; padding: 48px 20px; max-width: 100%; box-sizing: border-box; }
#name { margin: 0; font-size: 13px; letter-spacing: 0.08em; word-break: break-all; text-align: center; }
#tracker { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 96px; }
.n { font-size: 28px; font-variant-numeric: tabular-nums; }
.l { font-size: 10px; letter-spacing: 0.12em; color: #999; }
#post {
  display: block; width: 160px; height: 44px; border: 1px solid #000; background: #fff;
  cursor: pointer; text-decoration: none;
}
#post:hover { background: #000; }
#post:focus-visible { outline: 2px solid #000; outline-offset: 3px; }
@media (max-width: 420px) { #tracker { gap: 24px; } .n { font-size: 22px; } }
