/* Stile speziell für die OBS Feed Browser Source */
body {
    background-color: transparent; /* Wichtigster Teil: Transparenter Hintergrund */
    font-family: 'Exo 2', sans-serif;
    color: #f0e6d2; /* Heller, gut lesbarer Text */
    margin: 0;
    padding: 0;
    overflow: hidden; /* Verhindert Scrollbalken */
    width: 800px;
    height: 600px;
}

.feed-container {
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Feed items start from the bottom */
}

/* --- Stile für den Aktivitätsfeed (aus style.css übernommen & angepasst) --- */
#activity-feed-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden; /* Kein Scrollen im OBS-Overlay */
}

.feed-item {
    display: flex;
    align-items: center;
    background-color: rgba(10, 20, 30, 0.85); /* Etwas weniger transparent für bessere Lesbarkeit */
    border-left: 5px solid; /* Farbe wird je nach Typ gesetzt */
    border-radius: 8px;
    padding: 12px 18px; /* Etwas mehr padding */
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Textschatten für Lesbarkeit */
    /* Animation für neue Einträge */
    opacity: 0;
    transform: translateX(-30px);
    animation: slide-in 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation to slide out old items */
@keyframes slide-out {
    from {
        opacity: 1;
        transform: translateY(0);
        max-height: 100px; /* approximate height */
    }
    to {
        opacity: 0;
        transform: translateY(50px);
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

.feed-item.exiting {
    animation: slide-out 0.5s ease-out forwards;
}


.feed-item.win { border-left-color: #00ff99; }
.feed-item.stuck { border-left-color: #a72626; }

.feed-item-avatar { width: 45px; height: 45px; border-radius: 50%; margin-right: 15px; flex-shrink: 0; border: 2px solid #333; }
.feed-item-text { flex-grow: 1; text-align: left; font-size: 1.1em; line-height: 1.4; }
.feed-item-text .streamer-name { font-weight: 700; color: #fff; }
.feed-item-text .action-text { color: #c8d6e5; }
.feed-item-text .action-text strong {
    color: #00ff99;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(0, 255, 153, 0.5);
}

.feed-item-champion { display: flex; align-items: center; margin-left: 15px; flex-shrink: 0; }
.feed-item-champion-icon { width: 45px; height: 45px; border-radius: 5px; margin-right: 10px; }
.feed-item-champion-name { font-weight: bold; font-size: 1.1em; }

.feed-item-timestamp {
    margin-left: 15px;
    font-size: 0.9em;
    color: #8c97a5;
    white-space: nowrap;
    flex-shrink: 0;
    font-style: italic;
}