/* Twitch Widget - Bottom Strip */
#twitch-widget {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background: #9146ff;
    color: #fff;
    font-size: 0.9em;
    overflow: hidden;
}

#twitch-icon {
    margin-right: 10px;
    font-size: 1.2em;
}

#twitch-message {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#twitch-message .username {
    font-weight: bold;
    margin-right: 5px;
}

/* Animation for new messages */
@keyframes twitchSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#twitch-message.new-message {
    animation: twitchSlideIn 0.3s ease-out;
}
