/**
 * Dots System - Modular Particle Background Styles
 * Canvas and background styling for the particle system
 */

/* Canvas Background */
#fluidCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
}

/* Solid white background layer - fallback */
#whiteBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -2;
    transition: background 0.9s ease;
}
