body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: #1861e9;
  font-family: Arial, sans-serif;
}

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

canvas {
  border: 2px solid #FFA000;
  background-color: #1B5E20;
}

.controls {
  margin: 10px 0;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: #FF8F00;
  border: none;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #FF6F00;
}

.score {
  color: #ffffff;
}

.controls-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.horizontal-controls {
  display: flex;
  justify-content: center;
  margin: 5px 0;
}

.control-btn {
  width: 50px;
  height: 50px;
  font-size: 20px;
  margin: 5px;
  border: none;
  border-radius: 5px;
  background-color: #FFA000;
  color: #fff;
  cursor: pointer;
}

.control-btn:active {
  background-color: #FF6F00;
}

@media screen and (max-width: 600px) {
  canvas {
    width: 100% !important;
    height: auto !important;
  }

  .control-btn {
    width: 40px;
    height: 40px;
  }
}

