/* /css/components/cursor.css */

html, body, a, button, input, textarea, select {
    cursor: none !important;
}

#customCursor {
    --cursor-size: 22px;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--cursor-size);
    height: var(--cursor-size);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2147483647;
    transform: translate(-50%, -50%);
    will-change: transform, background, border;
    transition: background 0.15s ease, border-color 0.15s ease,
        transform 0.15s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

#customCursor.clickable {
    transform: translate(-50%, -50%) scale(1.4);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

#customCursor.active {
    transform: translate(-50%, -50%) scale(0.85);
    background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 767px) {
    #customCursor {
        display: none;
    }
}