/* Three.js Animated WebGL Gradient Canvas (1:1 from zeluq.me) */
#gradient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    display: block;
    pointer-events: none;
}

/* Dynamic Weather Background Particle Canvas (Rendered behind bento grid cards) */
#weather-particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1; /* Sits directly behind bento cards (.content-wrapper z-index: 10) and above gradient (z-index: 0) */
    display: block;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

body {
    background-color: #0c0a09;
    overflow-x: hidden;
}

.content-wrapper {
    position: relative;
    z-index: 10;
}
