@import "tailwindcss";

body {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.87);
  background-color: #000000;
  font-family: Arial, Helvetica, sans-serif;
  /* Prevent scrolling on mobile */
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#app {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

#game-container canvas {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Mobile landscape optimization */
@media screen and (orientation: landscape) and (max-height: 600px) {
  #game-container canvas {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
  }
}

