/* Neural Cursor Effects - ENHANCED VISIBILITY */
body {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #00ff41;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    mix-blend-mode: screen;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
}

.cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: #00ff41;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    box-shadow: 0 0 15px rgba(0, 255, 65, 1);
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
    border-color: #00ff41;
    background-color: rgba(0, 255, 65, 0.2);
    mix-blend-mode: screen;
    box-shadow: 0 0 20px rgba(0, 255, 65, 1);
}

/* ENHANCED NEURAL CONNECTIONS - Much brighter and more visible */
.neural-connection {
    position: absolute;
    background: linear-gradient(to right, #00ff41, rgba(0, 255, 65, 0.1));
    height: 2px; /* Increased thickness */
    transform-origin: left center;
    opacity: 0.9; /* Increased opacity */
    pointer-events: none;
    z-index: 9998;
    box-shadow: 0 0 8px #00ff41; /* Added glow effect */
}

/* Pulse Effect - Enhanced */
.cursor-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #00ff41;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    pointer-events: none;
    animation: cursorPulse 2s infinite;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
}

@keyframes cursorPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}