body, a, button, .t-btn, input, textarea, .t-menu__link-item {
    cursor: none !important;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background: rgba(236, 236, 236, 1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    transform: translate(-50%, -50%) scale(1);
}

.cursor-visible {
    opacity: 1;
}

.cursor-hover {
    transform: translate(-50%, -50%) scale(2.5);
    background: rgba(236, 236, 236, 2);
}