/* ========================================
   PARTICLE NETWORK BACKGROUND
   ======================================== */

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    pointer-events: none;
}

/* Section-specific particle canvas */
.section-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Ensure parent section has relative positioning */
.health-focus-section {
    position: relative;
}

/* Ensure content is above the canvas */
body {
    position: relative;
    z-index: 1;
}

/* Optional: Add a subtle overlay for better text readability */
#particle-canvas::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}
