* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  color: rgba(255, 255, 255, 0.87);
  background-color: #0f0f0f;
  touch-action: none; /* Prevent default touch gestures */
  font-family: monospace;
}

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

#game-container {
  width: 100%;
  height: 100%;
  touch-action: none; /* Allow custom touch handling for game */
}
