* {
    cursor: none !important;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff6b35;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s;
    transform: translate(-50%, -50%);
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: #ff8e53;
}

@media (max-width: 1024px), (hover: none) {
    * {
        cursor: auto !important;
    }

    .custom-cursor {
        display: none !important;
    }
}
