body {
  background: #202028;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
}

h1 {
  margin-bottom: 20px;
}

.game-area {
  display: flex;
  gap: 20px;
  background: #333;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

canvas {
  border: 2px solid #fff;
  background-color: #000;
}

.info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
  font-size: 1.2rem;
  width: 120px;
}

#next {
  background-color: #111;
}

.controls {
  margin-top: 20px;
  color: #aaa;
  font-size: 0.9rem;
}