.live-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    background: #c62828; /* ETPC-achtig rood */
    color: #fff;
    text-decoration: none;

    padding: 14px 24px;
    margin-bottom: 20px;

    font-weight: 600;
    letter-spacing: 0.3px;

    transition: background 0.2s ease, transform 0.15s ease;
}

.live-bar:hover {
    background: #b71c1c;
    transform: translateY(-1px);
}

/* Knipperend bolletje */
.live-indicator {
    width: 12px;
    height: 12px;
    background: #ff1744;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(255, 23, 68, 0.7);
    animation: pulse 1.4s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 23, 68, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 23, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 23, 68, 0);
    }
}

.live-text {
    flex: 1;
    margin-left: 10px;
}

.live-cta {
    font-weight: 700;
    white-space: nowrap;
}

#fixedsocial .live-indicator-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#fixedsocial .live-indicator-link .live-dot {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    animation: live-pulse 1.4s infinite;
}
#fixedsocial .live-indicator-link .live-text {
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: 0.5px;
    margin-left: 2px;
}
#fixedsocial .live-indicator-link:hover .live-text {
    color: #005596;
}
@keyframes live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}