/* Minimal reset tuned for a touch-only kids app running as an installed PWA */

*, *::before, *::after {
  box-sizing: border-box;
}

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

html {
  /* Prevent iOS double-tap-to-zoom and pinch-zoom; this is a touch-first app */
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow: hidden;
  overscroll-behavior: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  font-family: var(--font-family);
  background: var(--color-bg);
  color: var(--color-text);
}

img, svg {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  touch-action: manipulation;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
