:root {
  color-scheme: dark;
}

body {
  margin: 0;
  padding: 24px 12px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #0f1020;
  color: #e8e8f0;
  text-align: center;
}

h1 {
  margin: 0 0 16px;
  font-size: 28px;
}

#game {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 4 / 3; /* 800x600 — Phaser FIT впишет канвас ровно */
  margin: 0 auto;
  border: 3px solid #29366f;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  touch-action: none; /* не прокручивать/не зумить страницу во время игры */
}

#game canvas {
  display: block;
  touch-action: none;
}

.hint {
  margin-top: 16px;
  color: #9aa0c0;
  font-size: 15px;
}
