/* ============ Live Stream Top Banner ============ */
/* Global styles - can be used on any page */

.live-stream-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.98) 0%, rgba(26, 26, 26, 0.95) 50%, rgba(13, 13, 13, 0.98) 100%);
    border: 1px solid rgba(247, 208, 0, 0.4);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    animation: liveStreamFadeIn 0.5s ease-out both;
}

.live-stream-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(247, 208, 0, 0.05) 25%,
        rgba(247, 208, 0, 0.08) 50%,
        rgba(247, 208, 0, 0.05) 75%,
        transparent 100%);
    pointer-events: none;
}

.live-stream-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(247, 208, 0, 0.03),
        transparent
    );
    animation: liveStreamShimmer 3s infinite;
    pointer-events: none;
}

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

@keyframes liveStreamFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.live-stream-banner:hover {
    border-color: rgba(247, 208, 0, 0.6);
    box-shadow: 0 4px 20px rgba(247, 208, 0, 0.15);
}

.live-banner-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.live-banner-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f7d000 0%, #d4b000 100%);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(247, 208, 0, 0.3);
}

.live-banner-indicator .pulse-dot {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.live-banner-indicator span {
    font-family: 'Apex', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
}

.live-banner-logo {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 10px rgba(247, 208, 0, 0.5));
}

.live-banner-title {
    font-family: 'Apex', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-banner-title span {
    color: #f7d000;
}

.live-banner-right {
    position: relative;
    z-index: 1;
}

.live-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(247, 208, 0, 0.5);
    color: #f7d000;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
}

.live-stream-banner:hover .live-banner-btn {
    background: rgba(247, 208, 0, 0.1);
    border-color: #f7d000;
}

.live-banner-btn i {
    font-size: 0.75rem;
}

/* ============ Mobile Responsive ============ */
@media (max-width: 768px) {
    .live-stream-banner {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.5rem;
        padding: 0.5rem 0.75rem;
    }

    .live-banner-left {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.5rem;
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }

    .live-banner-indicator {
        padding: 0.25rem 0.5rem;
        flex-shrink: 0;
    }

    .live-banner-indicator span {
        font-size: 0.55rem;
    }

    .live-banner-indicator .pulse-dot {
        width: 6px;
        height: 6px;
    }

    .live-banner-logo {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .live-banner-title {
        font-size: 0.65rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }

    .live-banner-right {
        flex-shrink: 0;
    }

    .live-banner-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.6rem;
        white-space: nowrap;
    }

    .live-banner-btn i {
        font-size: 0.55rem;
    }
}

@media (max-width: 480px) {
    .live-stream-banner {
        padding: 0.4rem 0.5rem;
        gap: 0.4rem;
    }

    .live-banner-left {
        gap: 0.35rem;
    }

    .live-banner-indicator {
        padding: 0.2rem 0.4rem;
        gap: 0.3rem;
    }

    .live-banner-indicator span {
        font-size: 0.5rem;
    }

    .live-banner-indicator .pulse-dot {
        width: 5px;
        height: 5px;
    }

    .live-banner-logo {
        width: 16px;
        height: 16px;
    }

    .live-banner-title {
        font-size: 0.55rem;
    }

    /* Hide "NOW STREAMING:" prefix on very small screens */
    .live-banner-title span {
        display: none;
    }

    .live-banner-btn {
        padding: 0.25rem 0.4rem;
        font-size: 0.5rem;
        gap: 0.25rem;
    }

    /* Shorten button text on very small screens */
    .live-banner-btn i {
        font-size: 0.5rem;
    }
}

/* Extra small screens - minimal mode */
@media (max-width: 360px) {
    .live-banner-logo {
        display: none;
    }

    .live-banner-title {
        font-size: 0.5rem;
        max-width: 100px;
    }

    .live-banner-btn {
        padding: 0.2rem 0.35rem;
        font-size: 0.45rem;
    }
}

