/* =========================
   Splash Cursor Effect CSS
   ========================= */

#splashCursorContainer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: none;
}

#splashCursorCanvas {
    width: 100vw;
    height: 100vh;
    display: block;
}

/* Show when enabled */
#splashCursorContainer.enabled {
    display: block;
}

/* Performance optimization for optimized mode */
body.optimized-mode #splashCursorContainer {
    display: none !important;
}
