body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: transparent;
  overflow: hidden;
}

.game-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

#game {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain; /* Prevents the canvas from stretching on mobile */
  box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.2);
  border-radius: 8px; /* Optional: Makes it look a bit cleaner */
  display: block;
}