/**
 * Neon Cursor Effect - CSS Styles
 * Inspired by: https://codepen.io/soju22/pen/wvyBorP
 *
 * This CSS file provides styling for the neon cursor WebGL canvas background effect.
 * Use this in conjunction with neon-cursor.js for a fully functional animated cursor trail.
 */

/* Style the auto-generated canvas from threejs-toys */
.apps-hero canvas {
    display: block;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Ensure content above the canvas is properly layered */
.apps-hero .container,
.apps-hero-title,
.apps-hero-subtitle,
.app-card {
    position: relative;
    z-index: 1;
}
