/* FlappyBot - Styles (Phases 1-5) */

/* Reset */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;

  /* Prevent text selection while interacting with the game */
  user-select: none;
  -webkit-user-select: none;
}

canvas {
  display: block;

  /* Prevent browser-native touch handling (scroll, zoom) on the canvas */
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
}
