/* Custom Event Cursor Styles */
.event-cursor {
    position: fixed;
    width: 70px;
    height: 70px;
    pointer-events: none;
    z-index: 99999; /* Higher than everything */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.3);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s;
}

.event-cursor.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.event-cursor::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08); /* Reduced from 0.2 */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2); /* Reduced from 0.5 */
    border-radius: 50%;
    z-index: -1;
}


.event-cursor .plus-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-cursor .plus-icon::before,
.event-cursor .plus-icon::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.6); /* Reduced from white */
    transition: all 0.3s ease;
}

.event-cursor .plus-icon::before {
    width: 100%;
    height: 2px;
}

.event-cursor .plus-icon::after {
    width: 2px;
    height: 100%;
}

/* Hide default cursor on desktop when hovering cards */
@media (min-width: 993px) {
    .event-item-bg, .event-item-bg * {
        cursor: none !important;
    }
}

/* For mobile devices, hide this and show normal cursor */
@media (max-width: 992px) {
    .event-cursor {
        display: none !important;
    }
    .event-item-bg {
        cursor: pointer !important;
    }
}
