/* Maven's Hive background particles only
   Transparent particle overlay above the existing background and below page content. */
#mh-bg-particles {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    opacity: 0.72;
    mix-blend-mode: screen;
}

main,
footer {
    position: relative;
    z-index: 3;
}

header,
#copy-toast {
    z-index: 50;
}

@media (max-width: 768px) {
    #mh-bg-particles {
        opacity: 0.48;
    }
}

@media (prefers-reduced-motion: reduce) {
    #mh-bg-particles {
        display: none !important;
    }
}
