/* Vortex background styles */
.vortex-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none; /* Ensure canvas doesn't interfere with UI interactions */
}

/* Utility class for content that should appear above vortex */
.vortex-content {
    position: relative;
    z-index: 1;
}