/* Custom Animated Cursor VIRTUAL */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.1s linear;
}

.custom-cursor svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.8));
}

/* Estilo de la partícula mágica */
.magic-star {
    position: fixed;
    pointer-events: none;
    background: #d4af37;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffecb3;
    animation: fadeOutMagic 1s linear forwards;
    z-index: 9999;
}

@keyframes fadeOutMagic {
    0% { opacity: 1; transform: scale(1) translateY(0); }
    100% { opacity: 0; transform: scale(0) translateY(20px); }
}

/* Ocultar el cursor personalizado VIRTUAL enteramente en móviles */
@media (pointer: coarse) {
    .custom-cursor {
        display: none !important;
    }
}
