html,
body,
#root {
  min-height: 100%;
}

html,
body {
  background-color: var(--prepaint-surface, #08070d);
}

body {
  min-width: 100%;
  margin: 0;
}

#erpg-desktop-titlebar {
  display: none;
}

/* Reveal fallback: framer-motion serializes `initial` styles (opacity:0,
   transforms) into the prerendered HTML, so the page stays invisible until
   hydration finishes. If hydration is slow or never happens, this class is
   added by the watchdog below and forces the content visible. */
html.erpg-reveal-fallback #root [style*="opacity:0"],
html.erpg-reveal-fallback #root [style*="opacity: 0"] {
  /* biome-ignore lint/complexity/noImportantStyles: must beat framer-motion's inline styles */
  opacity: 1 !important;
  /* biome-ignore lint/complexity/noImportantStyles: must beat framer-motion's inline styles */
  transform: none !important;
  /* biome-ignore lint/complexity/noImportantStyles: must beat framer-motion's inline styles */
  filter: none !important;
}
