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

html, body {
  height: 100%;
  background: #05060a;
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  color: #e8e2d0;
}

#game-wrap {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 30%, #1a1430 0%, #05060a 70%);
}

canvas#game {
  width: 100vw;
  height: 56.25vw;
  max-height: 100vh;
  max-width: 177.78vh;
  background: #05060a;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.9), 0 0 2px rgba(200, 180, 120, 0.2);
  border-radius: 4px;
  image-rendering: auto;
}
