/* style.css — Flip Bird */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

body {
  background: #0f0c29;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* Light theme support */
@media (prefers-color-scheme: light) {
  html[data-theme="light"],
  html[data-theme="light"] body {
    background: #e8e0f0;
  }
}

html[data-theme="light"] body {
  background: #e8e0f0;
}
