/* SplashCursor host — layout matches React Bits fixed overlay */
.splash-cursor {
  position: fixed;
  inset: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.splash-cursor canvas,
#fluid {
  display: block;
  width: 100vw;
  height: 100vh;
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .splash-cursor {
    display: none !important;
  }
}
