/* DISK JAM web port — retro paper/ink chrome around the canvas */

@font-face {
  font-family: 'Galmuri';
  src: url('kfont.ttf') format('truetype');
  font-display: swap;
}

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

html, body {
  height: 100%;
  background: #0c0c0a;
  color: #79705f;
  font-family: 'Courier New', 'Galmuri', monospace;
}

main {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
}

canvas#game {
  width: min(100%, 1530px);
  height: auto;
  image-rendering: pixelated;
  background: #11110e;
  outline: 1px solid #2a2a24;
}

.hint {
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
}

.hint b { color: #eba638; font-weight: normal; }
