/*
 * Erlandia Magic v1.0 - CSS
 * Minimal required styles
 */

/* Ensure magic elements have proper positioning context */
.erl-magic {
    position: relative;
}

/* Canvas styling (also set via JS, but good to have as fallback) */
.erl-magic-canvas {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

/* Ensure content stays above particles */
.erl-magic > *:not(.erl-magic-canvas) {
    position: relative;
    z-index: 1;
}

/* Optional: Add overflow visible if particles are clipped */
.erl-magic-overflow {
    overflow: visible;
}
