/* Elastic Cursor Follower Styles */
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s ease;
    will-change: transform;
}

.cursor-follower-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #604074, #735187);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(96, 64, 116, 0.5);
    transform-origin: center;
    will-change: transform;
    transition: background 0.3s ease;
}

/* Hover state - grows larger */
.cursor-follower.cursor-hover .cursor-follower-inner {
    background: linear-gradient(135deg, #735187, #8b6b9e);
    box-shadow: 0 0 30px rgba(96, 64, 116, 0.8);
}

.cursor-follower.cursor-hover {
    width: 60px;
    height: 60px;
    transition: width 0.3s ease, height 0.3s ease;
}

/* Custom Purple Cursor Dot */
.custom-cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #604074;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
    will-change: transform;
    box-shadow: 0 0 10px rgba(96, 64, 116, 0.8);
}

/* Hide default cursor on desktop */
@media (hover: hover) and (pointer: fine) {
    body, a, button, input, textarea, select {
        cursor: none !important;
    }
}

/* Don't show custom cursor on mobile/touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-follower,
    .custom-cursor-dot {
        display: none;
    }
}

/* Optional: Add a small white dot in the center of the circle */
.cursor-follower-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    opacity: 0.9;
}

