
/* Live On Air Highlighting */
.show-card {
    position: relative; /* For absolute positioning of badge */
    transition: all 0.3s ease;
}

.show-card.live-on-air {
    border: 2px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
    background: linear-gradient(145deg, rgba(255, 0, 128, 0.1), rgba(10, 10, 10, 0.9));
}

.show-card.live-on-air .show-time {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

.show-card.live-on-air::after {
    content: 'LIVE NOW';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--neon-pink);
    color: white;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Hide listen button by default */
.show-listen {
    display: none;
}

/* Show listen button only when live */
.show-card.live-on-air .show-listen {
    display: block;
}
