/* ===== LIVE EVENTS SECTION ===== */
.live-events-section {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0;
}
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e53e3e;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.live-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}
.live-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}
.live-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}
.live-events-section h2 {
    font-weight: 800;
}
.live-events-section .section-label {
    color: #e53e3e;
}
.live-card {
    background: #222;
    border-radius: 16px;
    overflow: hidden;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.live-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.live-card .card-body-dark {
    padding: 1.25rem;
}
.live-card .card-body-dark h5 {
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #fff;
}
.live-card .card-body-dark p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0;
}
.live-card .card-body-dark .watch-link {
    color: var(--clr-primary, #8fa86e);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}
.live-card .card-body-dark .watch-link:hover {
    text-decoration: underline;
}

/* ===== NO LIVE EVENTS STATE ===== */
.no-live-state {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}
.no-live-state i {
    font-size: 2.5rem;
    color: #555;
    margin-bottom: 1rem;
}
.no-live-state p {
    max-width: 400px;
    margin: 0 auto;
}
