:root {
  --bg-top: #1f2531;
  --bg-bottom: #10141c;
  --panel: #0b0f16;
  --text: #d7e0ea;
  --accent: #f3b33d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Press Start 2P", "VT323", "Courier New", monospace;
  background: radial-gradient(circle at 50% 0%, var(--bg-top), var(--bg-bottom));
  color: var(--text);
  display: grid;
  place-items: center;
}

.wrap {
  width: min(100vw, 1020px);
  padding: 18px;
  text-align: center;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(16px, 2.8vw, 24px);
  letter-spacing: 1px;
}

.hint {
  margin: 0 0 14px;
  opacity: 0.9;
  font-size: clamp(11px, 1.9vw, 14px);
}

#game {
  width: 100%;
  max-width: 960px;
  height: auto;
  border: 4px solid #2d3647;
  border-radius: 6px;
  background: #141923;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
