/* ================= WEBGL BACKGROUND ================= */
#glcanvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none; /* Verhindert, dass das Canvas Klicks auf Links blockiert */
}

/* Wichtig: Body-Hintergrund muss entfernt werden, damit das Canvas sichtbar ist */
body {
    background-color: #030405 !important; /* Fallback-Farbe */
    background-image: none !important;
}
body::before {
    display: none !important; /* Entfernt alte Overlays */
}