/**
 * Cursor Glow Effect Styles
 * Creates a radial blue gradient that follows the cursor
 */

.cursor-glow {
    position: fixed;
    top: -300px;
    left: -300px;
    width: 600px;
    height: 600px;
    pointer-events: none !important;
    z-index: 9999;
    transition: opacity 0.3s ease;
    will-change: transform;
}

.cursor-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(96, 165, 250, 0.9) 0%, rgba(96, 165, 255, 2.5) 15%, rgba(96, 165, 250, 4.1) 3%, transparent 11%);
    filter: blur(60px);
    border-radius: 50%;
}

.cursor-glow.intense::before {
    background: radial-gradient(circle at center,
            rgba(96, 165, 250, 0.4) 0%,
            rgba(96, 165, 250, 0.25) 25%,
            rgba(96, 165, 250, 0.1) 50%,
            transparent 70%);
    filter: blur(60px);
}

@media (hover: none) {
    .cursor-glow {
        display: none;
    }
}