/* Custom Cursor Styles */
* {
    cursor: none !important;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #BBBBBB;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-cursor.nav-arrow-left,
.custom-cursor.nav-arrow-right {
    width: 50px;
    height: 36px;
    border-radius: 0;
    background-color: transparent;
    mix-blend-mode: normal;
}

.custom-cursor.nav-arrow-left svg,
.custom-cursor.nav-arrow-right svg {
    width: 50px;
    height: 36px;
}

.custom-cursor.nav-arrow-left svg {
    transform: rotate(180deg);
}

/* CHANGED: was translate(-50%, -50%) scale(2) */
.custom-cursor.hover {
    transform: scale(2);
}

/* CHANGED: was translate(-50%, -50%) scale(1.2) */
.custom-cursor.nav-arrow-left.hover,
.custom-cursor.nav-arrow-right.hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    * {
        cursor: auto !important;
    }
    .custom-cursor {
        display: none;
    }
}

html {
    isolation: isolate;
}

.custom-cursor {
    mix-blend-mode: exclusion;
    z-index: 9999;
}
