/* ==========================================================================
   PXVERS PREMIUM CUSTOM CURSOR (GLOBAL ENGINE)
   ========================================================================== */

.px-custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 35px;
    height: 35px;
    pointer-events: none;
    z-index: 9999999; /* Highest priority */
    display: flex;
    align-items: center;
    justify-content: center;
    mix-blend-mode: normal;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translate(-50%, -50%);
}

.px-cursor-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px dashed #ff5757;
    animation: px-cursor-spin 2s linear infinite, px-cursor-hue 5s linear infinite;
    filter: drop-shadow(0 0 10px #ff5757);
}

.px-cursor-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px #fff, 0 0 30px #ff5757;
    z-index: 2;
}

@keyframes px-cursor-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes px-cursor-hue {
    0% { filter: hue-rotate(0deg) drop-shadow(0 0 12px #ff5757); }
    50% { filter: hue-rotate(180deg) drop-shadow(0 0 25px #ff5757); }
    100% { filter: hue-rotate(360deg) drop-shadow(0 0 12px #ff5757); }
}

/* Hover Interaction State */
.px-custom-cursor.is-hovering {
    transform: translate(-50%, -50%) scale(2) !important;
}

.px-custom-cursor.is-hovering .px-cursor-inner {
    border-style: solid;
    border-width: 2px;
    filter: hue-rotate(360deg) drop-shadow(0 0 25px #ff5757);
}

/* Hide on mobile for better touch performance */
@media (max-width: 1024px) {
    .px-custom-cursor {
        display: none !important;
    }
}
