/**
 * Live Indicator Styles
 * Pulsing red badge for "LIVE" status across the site.
 */

.nys-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e53935;
    color: #fff;
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    line-height: 1;
}

.nys-live-badge::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: nys-pulse 1.5s ease-in-out infinite;
}

@keyframes nys-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

/* Nav bar live indicator (shown when streams are active) */
.nys-nav-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #e53935;
    border-radius: 50%;
    margin-left: 4px;
    animation: nys-pulse 1.5s ease-in-out infinite;
    vertical-align: middle;
}

/* Hidden by default, shown via JS when streams are live */
.nys-nav-live-dot.hidden {
    display: none;
}

/* Live banner on homepage */
.nys-live-banner-widget {
    background: linear-gradient(90deg, #b71c1c, #e53935);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.nys-live-banner-widget .widget-title {
    color: #fff;
    margin: 0 0 8px;
}

.nys-live-banner-widget a {
    color: #fff;
    text-decoration: underline;
}
