/* NXROMS animated fade background (Canvas) */
html, body {
  min-height: 100%;
  background: #05070c;
}
.bg-canvas{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  display: block;
}
@supports (height: 100svh){
  .bg-canvas{ height: 100svh; }
}
/* Keep app content above canvas */
#root,
#compatOverlay,
#compatOpenBtn{
  position: relative;
  z-index: 1;
}
