/* ══════════════ CANLI YAYIN BANNER ══════════════ */
/* Topbar altında, canlı yayın olduğunda gösterilir */

.rui-live-banner {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    color: #fff;
    position: relative;
    z-index: 1019;
    overflow: hidden;
}

.rui-live-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: liveBannerShimmer 3s infinite;
}

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

.rui-live-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.rui-live-banner__left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.rui-live-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}

.rui-live-banner__badge i {
    font-size: 0.5rem;
    animation: liveBannerBlink 1s infinite;
}

@keyframes liveBannerBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.2; }
}

.rui-live-banner__title {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rui-live-banner__right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.rui-live-banner__join {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    color: #dc2626;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.rui-live-banner__join:hover {
    background: #fef2f2;
    color: #b91c1c;
    transform: scale(1.05);
}

.rui-live-banner__close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.2s;
}

.rui-live-banner__close:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Mobile */
@media (max-width: 575.98px) {
    .rui-live-banner__inner {
        padding: 8px 0;
        gap: 10px;
    }

    .rui-live-banner__title {
        font-size: 0.8rem;
        max-width: 140px;
    }

    .rui-live-banner__join {
        padding: 5px 12px;
        font-size: 0.75rem;
    }

    .rui-live-banner__badge {
        padding: 3px 8px;
        font-size: 0.65rem;
    }
}
