/* =====================================================
   LIVE BANNER - Scrollender Banner unter dem Header
   ===================================================== */

.live-banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #9147ff 0%, #6441a5 100%);
    box-shadow: 0 4px 12px rgba(145, 71, 255, 0.3);
    z-index: 900;
}

.live-banner {
    display: flex;
    align-items: center;
    height: 50px;
    position: relative;
}

.live-banner-content {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    animation: scrollBanner 20s linear infinite;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

@keyframes scrollBanner {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.live-pulse {
    font-size: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.live-text {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.live-separator {
    opacity: 0.6;
    font-size: 20px;
}

.live-title {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.live-game {
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 14px;
}

.live-viewers {
    font-size: 15px;
    opacity: 0.95;
}

.live-watch-btn {
    background: white;
    color: #9147ff;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.live-watch-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .live-banner {
        height: 45px;
    }
    
    .live-banner-content {
        font-size: 14px;
        gap: 10px;
    }
    
    .live-watch-btn {
        padding: 5px 12px;
        font-size: 13px;
    }
}