/* EPG / Live TV Guide Styles */

.epg-card {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
}

.epg-card:hover {
    transform: scale(1.03);
    z-index: 10;
}

.epg-progress-bg {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    height: 3px;
    width: 100%;
}

.epg-progress-fill {
    background: #E50914;
    height: 100%;
    border-radius: 2px;
    transition: width 1s linear;
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
}

.live-pulse {
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.epg-time-badge {
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.5px;
}
