/* Custom cursor styles */
#custom-cursor {
    position: fixed;
    pointer-events: none;
    width: fit-content;
    padding: 4px 16px;
    border: none;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease, transform 0.1s ease;
    z-index: 9999;
    /* mix-blend-mode: difference; */
    background-color: var(--first-color);
    display: none; /* Hidden by default */
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 400;
    user-select: none;
    gap: 4px;
    text-decoration: none;
}
#custom-cursor span {
    z-index: 10000000;
}

#custom-cursor-text {
    pointer-events: none;
}

#contacto.custom-cursor-active {
    cursor: none; /* Hide default cursor when custom cursor active */
}
