/* WAW Live Companion — Banner */

#waw-live-banner {
    width: 100%;
    background: #FF1E87;
    position: relative;
    z-index: 9999;
}

.waw-live-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.15s;
}

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

.waw-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    animation: waw-lc-pulse 1.4s ease-in-out infinite;
}

.waw-live-cta {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 0.03em;
    text-transform: none;
    margin-left: 6px;
}

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

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