.cursor-star {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    line-height: 1;
    transform: translate(-50%, -50%);
    animation: star-trail 0.75s ease-out forwards;
    user-select: none;
}

@keyframes star-trail {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.15) rotate(160deg);
    }
}

@media (hover: none), (pointer: coarse) {
    .cursor-star {
        display: none !important;
    }
}
