* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #0b0d10;
  color: #d8d4c8;
  font-family: "Courier New", ui-monospace, monospace;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  text-transform: lowercase;
}

#hud {
  width: min(96vw, 1280px);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.9;
}

#meta { color: #d8a038; }

#wrap {
  position: relative;
  border: 1px solid #3a3423;
  box-shadow: 0 0 60px rgba(216, 160, 56, 0.06), 0 0 140px rgba(0, 0, 0, 0.7);
  line-height: 0;
}

canvas {
  display: block;
  width: min(96vw, 1280px);
  height: auto;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  background: #101216;
  cursor: none;
}

#status {
  width: min(96vw, 1280px);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid #3a3423;
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 11px;
  letter-spacing: 1px;
  background: #14120e;
  color: #a8a498;
}
