* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #60a5fa;
}

/* Main Container */
.main-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Video Section */
.video-section {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000;
}

.video-player {
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}

.live-indicator {
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.program-info {
    padding: 2rem;
    border-top: 3px solid #3b82f6;
}

.program-title {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.program-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #6b7280;
    font-size: 0.95rem;
}

.program-description {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1rem;
}

/* Schedule Section */
.schedule-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.schedule-title {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin: 0;
}

.view-all-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.schedule-grid {
    display: grid;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.schedule-item:hover {
    background-color: #f9fafb;
}

.schedule-item.current {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left-color: #3b82f6;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.1);
}

.schedule-item.next {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left-color: #f59e0b;
}

.schedule-item.past {
    opacity: 0.6;
    background-color: #f3f4f6;
}

.schedule-time {
    font-weight: bold;
    color: #1e3a8a;
    font-size: 1rem;
    min-width: 80px;
    text-align: center;
    background: white;
    padding: 0.5rem;
    border-radius: 6px;
    margin-right: 1rem;
}

.schedule-content {
    flex: 1;
}

.schedule-program {
    font-size: 1rem;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.schedule-description {
    font-size: 0.9rem;
    color: #6b7280;
}

.schedule-status {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: bold;
    margin-left: 1rem;
}

.status-live {
    background: #dc2626;
    color: white;
}

.status-next {
    background: #f59e0b;
    color: white;
}

.status-upcoming {
    background: #e5e7eb;
    color: #6b7280;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-content p {
    color: #d1d5db;
}

/* Responsive */
@media (max-width: 768px) {
    .main-container {
        padding: 0 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .video-container {
        height: 250px;
    }

    .program-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .schedule-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .schedule-time {
        min-width: auto;
        margin-right: 0;
    }

    .schedule-status {
        margin-left: 0;
    }
}