/* WAW Live Companion — Sitewide LIVE banner (Infobreak dark theme)
 * --waw-live-accent / --waw-live-ink set inline per-promotion.
 */

#waw-live-banner {
    --waw-live-accent: #2DE2E6;
    --waw-live-ink:    #0B0F14;
    width: 100%;
    background: #0B0F14;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 -2px 0 var(--waw-live-accent);
    position: relative;
    z-index: 9999;
    margin: 0;
}

/* Multi-show night: stack one pill per concurrent live event, each
   keeping its own promotion accent colour. The single-event box-shadow
   accent stripe on #waw-live-banner itself isn't meaningful anymore
   here (it would just reflect whichever event's vars happened to be
   inherited last), so each row gets its own underline instead. */
#waw-live-banner.is-multi {
    box-shadow: none;
}
#waw-live-banner.is-multi .waw-live-banner-inner {
    box-shadow: inset 0 -2px 0 var(--waw-live-accent);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
#waw-live-banner.is-multi .waw-live-banner-inner:first-child {
    border-top: none;
}

.waw-live-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 11px 20px;
    color: #E8EEF5;
    text-decoration: none;
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.15s ease;
}

.waw-live-banner-inner:hover,
.waw-live-banner-inner:focus {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    text-decoration: none;
    outline: none;
}

.waw-live-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--waw-live-accent);
    color: var(--waw-live-ink);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    flex-shrink: 0;
}

.waw-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--waw-live-ink);
    flex-shrink: 0;
    animation: waw-live-pulse 1.3s ease-in-out infinite;
}

.waw-live-label { color: #E8EEF5; }

.waw-live-cta {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: 11px;
    font-weight: 400;
    color: var(--waw-live-accent);
    opacity: 0.95;
    letter-spacing: 0.02em;
    text-transform: none;
    margin-left: 4px;
}

@keyframes waw-live-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.2; }
}

@media (max-width: 600px) {
    .waw-live-cta { display: none; }
    .waw-live-banner-inner { font-size: 12px; padding: 10px 14px; gap: 9px; }
    .waw-live-label { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
    .waw-live-dot { animation: none; }
}
