.tv-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
}

.tv-section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 700;
}

.tv-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.tv-intro-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.brand-name {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.features-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-weight: 600;
    color: var(--text-main);
}

.features-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.5em;
    line-height: 1;
    top: -2px;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.tv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 40px;
    margin-top: 30px;
    align-items: start;
}

.tv-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.tab-btn {
    padding: 12px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-size: 26px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary-color);
    color: #fff;
}

.tab-btn.active::after {
    background-color: white !important;
}

.tv-program-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tv-program-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tv-divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 30px 0;
}

.experts-block {
    margin-top: 20px;
}

.experts-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.experts-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.expert-name {
    display: block;
    font-size: 1.1em;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 4px;
}

.expert-desc {
    font-size: 0.95em;
    color: var(--text-light);
}

.broadcast-alert {
    margin-top: 25px;
    padding: 15px;
    background-color: #fff5f5;
    border: 1px solid #fcc;
    border-radius: 8px;
    color: var(--accent-color);
}

.broadcast-alert h3 {
    font-size: 1.1em;
    font-weight: bold;
    margin: 5px 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.extra-video-row {
    margin-top: 40px;
}

@media (max-width: 900px) {
    .tv-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    .tv-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .tv-tabs {
        flex-direction: column;
    }
    .tv-grid {
        grid-template-columns: 1fr;
    }
}