/* Programs Page Styles */

/* Programs Hero */
.programs-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.programs-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 85, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.programs-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 0, 85, 0.6);
    position: relative;
}

.programs-hero h1 i {
    color: var(--accent-color);
    margin-right: 15px;
    animation: tvGlow 2s ease-in-out infinite;
}

@keyframes tvGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 0, 85, 0.8); }
    50% { text-shadow: 0 0 40px rgba(255, 0, 85, 1), 0 0 60px rgba(255, 0, 85, 0.6); }
}

.programs-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Current Program */
.current-program {
    padding: 60px 0;
    background: #000000;
}

.current-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 0, 0.1);
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.current-badge .live-dot {
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    50% { 
        opacity: 0.7;
        box-shadow: 0 0 0 8px rgba(255, 0, 0, 0);
    }
}

.current-badge span {
    color: #ff0000;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.current-show-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 40px rgba(255, 0, 85, 0.3);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.show-time {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.current-show-card h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.show-host {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.show-host i {
    margin-right: 8px;
}

.show-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Schedule Section */
.schedule-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
}

.schedule-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
}

.schedule-section h2 i {
    color: var(--accent-color);
    margin-right: 10px;
}

.schedule-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

/* Day Tabs */
.day-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.day-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.day-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.day-tab.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

/* Day Schedule */
.day-schedule {
    display: none;
}

.day-schedule.active {
    display: block;
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border-top: 4px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-top-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.2);
}

.schedule-item.highlighted {
    background: rgba(255, 0, 85, 0.05);
    border-top-color: var(--accent-color);
}

.schedule-item.highlighted:hover {
    background: rgba(255, 0, 85, 0.08);
}

.schedule-item.special {
    border: 2px solid var(--accent-color);
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(255, 0, 85, 0.2);
}

.schedule-item .time {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.show-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.show-info .host {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.show-info .host i {
    color: var(--accent-color);
    margin-right: 5px;
}

.show-info .genre {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* DJ Section */
.dj-section {
    padding: 80px 0;
    background: #000000;
}

.dj-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
}

.dj-section h2 i {
    color: var(--accent-color);
    margin-right: 10px;
}

.dj-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.dj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.dj-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.dj-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(255, 0, 85, 0.2);
}

.dj-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #d4004f);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 4rem;
    color: white;
}

.dj-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.dj-role {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.dj-shows {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-style: italic;
}

.dj-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .programs-hero h1 {
        font-size: 2.5rem;
    }
    
    .programs-hero p {
        font-size: 1.1rem;
    }
    
    .current-show-card {
        padding: 2rem;
    }
    
    .current-show-card h2 {
        font-size: 2rem;
    }
    
    .day-tabs {
        gap: 5px;
    }
    
    .day-tab {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-item .time {
        font-size: 1.1rem;
    }
    
    .show-info h3 {
        font-size: 1.3rem;
    }
    
    .dj-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-section h2,
    .dj-section h2 {
        font-size: 2rem;
    }
}
