/**
 * Particles Background Styling
 */

#hero-particles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: transparent;
    pointer-events: none;
    overflow: hidden;
}

#page {
    position: relative;
    z-index: 10;
}

/* Ensure particles stay behind content */
.site-header,
.site-main,
.site-footer,
#main-content {
    position: relative;
    z-index: 10;
}

/* Particle animation - right to left in infinite loop */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(148, 204, 57, 0.4) 0%, rgba(148, 204, 57, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: scrollLeftDiagonal linear infinite;
    box-shadow: 0 0 8px rgba(148, 204, 57, 0.1);
}

@keyframes scrollLeftDiagonal {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-120vw, 120vh) scale(0.8);
        opacity: 0;
    }
}
