#news-avatar {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 80px;
    height: auto;
    margin: 0;
    padding: 0;
    z-index: 99999;
    transition: transform 0.3s;
}

#news-bubble {
    position: fixed;
    bottom: 130px;
    right: 60px;
    max-width: 350px;
    min-width: 350px;
    min-height: 25px;
    background: #2b2b2b;
    color: #DAA520;
    border: 1px solid #DAA520;
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 0 10px rgba(218,165,32,0.5);
    font-size: 0.9em;
    z-index: 99999;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;

    /* 🔥 3D Perspektive */
    perspective: 600px;
}

#news-bubble a,
#news-bubble a:link,
#news-bubble a:visited {
    color: #DAA520;
    text-decoration: none;
}

#news-bubble a:hover {
    text-shadow: 0 0 6px #DAA520;
}

#news-bubble.hidden {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

#news-bubble {
    transition: all 0.3s ease;
}

#newsSlider {
    position: relative;
    height: 25px;
    width: 100%;
    transform-style: preserve-3d;
}

/* einzelne News */
.news-item {
    position: absolute;
    width: 100%;
    left: 0;
    backface-visibility: hidden;
}

/* aktive */
.news-item.active {
    transform: rotateX(0deg) translateY(0);
}

/* 🔥 NEU rein (von unten, nach vorne kippend) */
.news-item.enter {
    animation: rollIn3D 0.7s ease forwards;
}

/* 🔥 ALT raus (nach oben, nach hinten kippend) */
.news-item.exit {
    animation: rollOut3D 0.7s ease forwards;
}

/* 🎯 rein */
@keyframes rollIn3D {
    0% {
        transform: rotateX(90deg) translateY(100%);
        opacity: 0;
    }
    100% {
        transform: rotateX(0deg) translateY(0%);
        opacity: 1;
    }
}

/* 🎯 raus */
@keyframes rollOut3D {
    0% {
        transform: rotateX(0deg) translateY(0%);
        opacity: 1;
    }
    100% {
        transform: rotateX(-90deg) translateY(-100%);
        opacity: 0;
    }
}