/* Garden Defenders 2 — shell styles.
   The engine handles letterboxing/scaling; CSS just guarantees a clean,
   scroll-free, dark-green stage for the canvas on every device. */

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

body {
  position: fixed;      /* defeats mobile rubber-band scrolling */
  inset: 0;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
}

#game {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  touch-action: none;
  background: #0c1a0e;  /* intentional look even before JS paints */
  image-rendering: auto;
  outline: none;
}
