:root{
  --bg:#020302;--fg:#00ff87;--muted:#00aa5f;
  --line:#003d22;--line2:#00ff8733;
  --mono:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;background:var(--bg);color:var(--fg);
  font-family:var(--mono);
  font-variant-numeric: tabular-nums;
}
.hud{
  display:flex;justify-content:space-between;gap:16px;
  color:var(--muted);font-size:12px;margin:6px 0 8px
}
.term{
  border:1px solid var(--line);
  border-radius:12px;
  padding:12px 14px;
  background:#00000080;
  min-height:65vh;
  line-height:1.55;
  white-space:pre;
}
.term .row{display:flex;gap:10px}
.term .rank{width:3ch;text-align:right;color:var(--muted)}
.term .token{width:22ch;overflow:hidden;text-overflow:ellipsis}
.term .num{width:10ch;text-align:right}
.term .score{width:12ch;text-align:right;color:#7dffb6}