/* ==========================================
   FEATURE: LIFEINVADER NEWS - FULLSCREEN
========================================== */

.lifeinvader-animation {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 6;
    overflow: hidden;
}

.life-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.28);
    animation: lifeOverlay 4.3s ease forwards;
}

.life-ticker {
    position: absolute;
    top: 13vh;
    left: 0;
    width: 100%;
    height: 42px;
    background: rgba(255,90,0,.12);
    border-top: 1px solid rgba(255,120,0,.35);
    border-bottom: 1px solid rgba(255,120,0,.35);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255,90,0,.18);
    animation: lifeSlideDown 4.3s ease forwards;
}

.life-ticker span {
    display: block;
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: #ffb36b;
    line-height: 42px;
    text-shadow: 0 0 14px rgba(255,120,0,.75);
    animation: lifeTickerMove 7s linear infinite;
}

.life-panel {
    position: absolute;
    right: 8vw;
    top: 24vh;
    width: min(460px, 86vw);
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(30,20,14,.86), rgba(10,10,10,.82));
    border: 1px solid rgba(255,140,40,.35);
    box-shadow:
        0 30px 90px rgba(0,0,0,.65),
        0 0 55px rgba(255,100,0,.28);
    backdrop-filter: blur(18px);
    animation: lifePanelIn 4.3s cubic-bezier(.16,.84,.24,1) forwards;
}

.life-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.08), transparent);
    transform: translateX(-120%);
    animation: lifeShine 2.2s ease .7s forwards;
}

.life-panel-top {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff4b35;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.life-live-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff2a2a;
    box-shadow: 0 0 18px #ff2a2a;
    animation: lifePulse .55s infinite;
}

.life-panel h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.6rem);
    letter-spacing: 2px;
    color: #ff8a2a;
    text-shadow: 0 0 22px rgba(255,100,0,.65);
}

.life-panel h3 {
    margin: 4px 0 18px;
    font-size: 1.3rem;
    letter-spacing: 4px;
    color: #fff;
}

.life-panel p {
    color: rgba(255,255,255,.82);
    font-size: 1rem;
    line-height: 1.5;
}

.life-status {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.life-status span {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.88);
    animation: lifeStatusPop .45s ease both;
}

.life-status span:nth-child(1) { animation-delay: .9s; }
.life-status span:nth-child(2) { animation-delay: 1.15s; }
.life-status span:nth-child(3) { animation-delay: 1.4s; }

.life-post {
    position: absolute;
    width: 230px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(20,20,20,.78);
    border: 1px solid rgba(255,140,40,.28);
    box-shadow:
        0 20px 55px rgba(0,0,0,.55),
        0 0 28px rgba(255,100,0,.18);
    backdrop-filter: blur(14px);
    color: white;
    animation: lifePostIn 4.3s cubic-bezier(.16,.84,.24,1) forwards;
}

.life-post strong {
    display: block;
    color: #ff9b42;
    margin-bottom: 8px;
}

.life-post span {
    color: rgba(255,255,255,.82);
}

.post-one {
    left: 12vw;
    top: 28vh;
    animation-delay: .15s;
}

.post-two {
    left: 20vw;
    bottom: 24vh;
    animation-delay: .35s;
}

.post-three {
    right: 42vw;
    top: 48vh;
    animation-delay: .55s;
}

.post-four {
    right: 18vw;
    bottom: 16vh;
    animation-delay: .75s;
}

.life-flash {
    position: absolute;
    inset: 0;
    background: white;
    opacity: 0;
    animation: lifeFlash 4.3s ease forwards;
}

@keyframes lifeOverlay {
    0%, 100% { opacity: 0; }
    10%, 82% { opacity: 1; }
}

@keyframes lifeSlideDown {
    0% { transform: translateY(-80px); opacity: 0; }
    12%, 82% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-80px); opacity: 0; }
}

@keyframes lifeTickerMove {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

@keyframes lifePanelIn {
    0% {
        transform: translateX(140px) scale(.92);
        opacity: 0;
    }

    12%, 82% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(160px) scale(.95);
        opacity: 0;
    }
}

@keyframes lifePostIn {
    0% {
        transform: translateY(30px) scale(.85) rotate(-4deg);
        opacity: 0;
    }

    14%, 78% {
        transform: translateY(0) scale(1) rotate(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-20px) scale(.94) rotate(4deg);
        opacity: 0;
    }
}

@keyframes lifeStatusPop {
    from {
        transform: translateY(12px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes lifePulse {
    0%, 100% {
        transform: scale(1);
        opacity: .65;
    }

    50% {
        transform: scale(1.35);
        opacity: 1;
    }
}

@keyframes lifeShine {
    to {
        transform: translateX(120%);
    }
}

@keyframes lifeFlash {
    0%, 68%, 100% { opacity: 0; }
    70% { opacity: .55; }
    73% { opacity: 0; }
}