/* ==========================================================================
   ENTWINED HEARTS WILDCARD: ETHEREAL LANTERNS & SHOOTING STARS
   ========================================================================== */

/* 1. WARM GLOWING LANTERNS */
.eh-wild-lantern {
    position: fixed;
    bottom: -50px;
    width: 16px;
    height: 22px;
    background: linear-gradient(to top, #ff7e5f, #feb47b);
    border-radius: 4px 4px 2px 2px;
    box-shadow: 0 0 15px rgba(254, 180, 123, 0.8), inset 0 -3px 6px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    z-index: 9994;
    will-change: transform, opacity;
    animation: eh-wild-rise 22s linear forwards;
}

/* Inner burning candle flame core */
.eh-wild-lantern::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background: #ffffff;
    border-radius: 50% 50% 20% 20%;
    box-shadow: 0 0 6px #ffffff;
    animation: eh-wild-flicker 0.15s infinite alternate ease-in-out;
}

/* 2. CINEMATIC SILENT SHOOTING STAR STREAKS */
.eh-wild-star {
    position: fixed;
    top: var(--star-top);
    left: -150px;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(203, 166, 247, 0.4) 40%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(-22deg);
    pointer-events: none;
    z-index: 9993;
    will-change: transform;
    animation: eh-wild-shoot 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* ==========================================================================
   ANIMATION INTERPOLATION PERFORMANCE CORES
   ========================================================================== */
@keyframes eh-wild-rise {
    0% {
        transform: translateY(0) translateX(0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.75;
    }
    90% {
        opacity: 0.75;
    }
    100% {
        transform: translateY(-120vh) translateX(var(--drift)) scale(1.1);
        opacity: 0;
    }
}

@keyframes eh-wild-flicker {
    0% { transform: translateX(-50%) scale(0.9); opacity: 0.7; }
    100% { transform: translateX(-50%) scale(1.2); opacity: 1; }
}

@keyframes eh-wild-shoot {
    0% {
        transform: translate3d(0, 0, 0) rotate(-22deg);
    }
    100% {
        transform: translate3d(125vw, 50vh, 0) rotate(-22deg);
    }
}