/* Animated Background Styles */
#animated-bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    display: block;
}

/* Ensure body background doesn't hide the canvas */
body.light {
    background: #f8f9fa;
    /* Flat base color for light mode */
}

body.dark {
    background: #0f172a;
    /* Flat base color for dark mode */
}

/* Hide existing gradients if they conflict */
body::before,
body::after {
    display: none !important;
}