/* RackRat Arcade — cabinet dressing only; all pixels live on the canvas. */
.cabinet {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 0 0 4px #0d1117, 0 0 42px rgba(47, 129, 247, 0.18);
}
.cabinet canvas {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}
.cabinet .hud {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 8px;
}
.cabinet .hud button {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(13, 17, 23, 0.85);
  border: 1px solid var(--line);
  padding: 5px 10px;
  cursor: pointer;
}
.cabinet .hud button:hover { border-color: var(--accent); color: var(--accent); }
.cabinet .hud button:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.arcade-meta { text-align: center; margin-top: 14px; }
