html, body {
  margin: 0;
  padding: 0;
  background: #030008;
  height: 100%;
  overflow: hidden;
  font-family: monospace;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #100028 0%, #030008 80%);
}

#wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

#cabinet {
  border: 3px solid #ff0077;
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(255, 0, 119, 0.35), 0 0 100px rgba(0, 240, 255, 0.18), inset 0 0 30px #000;
  background: #000;
  line-height: 0;
  position: relative;
}

#screen {
  width: min(96vw, calc(94vh * 960 / 640));
  aspect-ratio: 960 / 640;
  height: auto;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  background: #000;
  cursor: crosshair;
}

#controls-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  color: #a080d0;
  font-size: 13px;
  letter-spacing: 1px;
}

#controls-bar span {
  background: rgba(255, 0, 119, 0.08);
  border: 1px solid rgba(255, 0, 119, 0.25);
  padding: 4px 10px;
  border-radius: 6px;
}

#controls-bar b {
  color: #00f0ff;
}
