body{
  background-color:  #f4f6f5;
}

/* YouTube Review Section Styles */
.youtube-review-section {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 85px;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.review-header {
    text-align: justify;
    color: #202A44;
    margin-bottom: 2rem;
}

.review-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.review-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    margin: 2rem 0; 
    background: var(--bg-color); 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    text-align: justify;
    margin-top: 1rem;
}

.caption-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

/* News Script Section Styles */
.news-script-section {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.script-header {
    text-align: justify;
    color: #202A44;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 1rem;
}

.script-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
} 

.section-subtitle {  
    margin: 2rem 0 1rem 0; 
    padding-bottom: 0.8rem;
    color: #202A44;
    text-transform: uppercase;  
    text-align: justify;
}

.script-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.script-content, .script-paragraph {
    margin-top: 1rem;
    color: #202A44;
    text-align: justify;
} 

.script-content, .news-img { 
    margin: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
} 

/* Responsive Design */
@media (max-width: 768px) {
    .youtube-review-section,
    .news-script-section {
        padding: 1rem;
        margin: 1rem;
    }

    .youtube-review-section {
        margin-top: 85px;
    }
    
    .review-title {
        font-size: 2rem;
    }
    
    .script-title {
        font-size: 1.5rem;
    }
    
    .review-subtitle {
        font-size: 1rem;
    }
}