/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    width: 100%;
    height: 100%;
}

/* Wrapper and Header */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    width: 100%;
    background-color: #1e88e5;
    color: white;
    padding: 20px;
    text-align: center;
}

.header-title {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
}

.header p {
    margin-top: 5px;
    font-size: 1rem;
}

/* Content and Channel Title */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

.channel-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
    border-bottom: 2px solid #1e88e5;
    padding-bottom: 0.5rem;
}

/* Video Container for Responsive Player */
.video-container {
    width: 100%;
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 20px;
}

.video-container iframe, .video-container script {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Button Bar Styles */
.button-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
    gap: 15px;
}

.btn {
    background-color: #1e88e5;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #1565c0;
}

/* SEO Content Section Styles */
.seo-section {
    max-width: 800px;
    margin: 0 auto 20px auto;
    padding: 0 15px;
}

.seo-section p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
    color: #333;
}

/* Footer Styling */
.footer {
    width: 100%;
    background-color: #1e88e5;
    color: white;
    padding: 10px 20px;
    text-align: center;
}

/* Responsive Design Adjustments */
@media (max-width: 600px) {
    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .seo-section {
        padding: 0 10px;
    }
}