:root {
  --crowdstrike-red: #e01b2e;
  --black: #000;
  --panel: #060606;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(224, 27, 46, 0.18), transparent 34%),
    linear-gradient(180deg, #111 0%, #000 100%);
  color: var(--white);
  font-family: "Courier New", Courier, monospace;
  overflow: hidden;
}

.cabinet-screen {
  width: min(100vw, calc(100vh * 1.5));
  max-width: 960px;
  padding: 10px;
  background: #030303;
  border: 4px solid #171717;
  box-shadow:
    0 0 0 2px #000,
    0 0 35px rgba(224, 27, 46, 0.34);
}

canvas {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--black);
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.control-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding-top: 8px;
  color: var(--crowdstrike-red);
  font-size: clamp(10px, 1.8vw, 16px);
  letter-spacing: 0;
  text-align: center;
}

@media (max-aspect-ratio: 3 / 2) {
  .cabinet-screen {
    width: 100vw;
  }
}
