/* SUBSTRATE — Stylesheet (Phase 1B)
 * Minimal. Substrate ist primär 3D-Szene.
 */

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  background: #000;
  color: #888;
  font-family: 'Courier New', monospace;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

#scene {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Status-Bar oben rechts */
#status {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 10;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #888;
  text-align: right;
  line-height: 1.7;
  pointer-events: none;
  text-shadow: 0 0 6px #000;
}

#status span {
  display: block;
  font-variant-numeric: tabular-nums;
}

/* Distanz-basierte ID-Labels */
.creature-label {
  position: absolute;
  z-index: 5;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: #aaa;
  pointer-events: none;
  white-space: nowrap;
  text-shadow: 0 0 4px #000, 0 0 2px #000;
  transition: opacity 0.15s;
  letter-spacing: 0.04em;
}

.creature-label.anchor {
  color: #fff;
  font-size: 11px;
  font-weight: bold;
}
