/* Interactive Gradient Cursor Effect */
#gradient-canvas {
    position: fixed;
    width: 190px;
    height: 190px;
    pointer-events: none;
    z-index: 9997;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 50%;
    filter: blur(80px);
}

/* Responsive adjustments - hide gradient on mobile */
@media (max-width: 768px) {
    #gradient-canvas {
        display: none;
    }
}

/* Ensure canvas doesn't interfere with page interactions */
#gradient-canvas {
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}