/* Cursor Follower Styles */
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
    background: transparent;
}

.cursor-follower::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(0, 212, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
}

.cursor-follower.hover {
    width: 30px;
    height: 30px;
    border-color: rgba(0, 212, 255, 0.8);
    border-width: 2px;
}

.cursor-follower.hover::before {
    width: 20px;
    height: 20px;
    background: rgba(0, 212, 255, 0.3);
}

.cursor-follower.click {
    width: 25px;
    height: 25px;
    border-color: rgba(255, 71, 87, 0.8);
    border-width: 3px;
}

.cursor-follower.click::before {
    width: 4px;
    height: 4px;
    background: rgba(255, 71, 87, 1);
}

/* Hide cursor follower on mobile devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-follower {
        display: none;
    }
}