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

body {
  background: #1a1a2e;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: white;
}

#game-container {
  text-align: center;
}

h1 {
  font-size: 2rem;
  margin-bottom: 6px;
  letter-spacing: 2px;
  color: #e8e8e8;
}

p {
  color: #aaa;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

canvas {
  display: block;
  border: 3px solid #444;
  border-radius: 10px;
  margin: 0 auto;
}

#controls-hint {
  margin-top: 12px;
  font-size: 0.85rem;
}
