/* LaFée du Cabinet — Star Trail */
#lfdc-star-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
    overflow: hidden;
}

.lfdc-star {
    position: absolute;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    color: #FFD700;
    text-shadow: 0 0 6px #FFD700, 0 0 12px #FFA500;
    transform: translate(-50%, -50%);
    animation: lfdc-star-flicker 1s forwards ease-out;
}

@keyframes lfdc-star-flicker {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    60% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translate(
            calc(-50% + var(--dx)),
            calc(-50% + var(--dy))
        ) scale(0.3) rotate(270deg);
    }
}
