body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: white;
}

header {
    background-color: #000;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
}

header img {
    max-width: 120px;
    margin-right: 20px;
}

.logo-text {
    text-align: left;
}

.logo-text h1 {
    margin: 0;
    font-size: 2em;
}

.logo-text p {
    margin: 0;
    font-style: italic;
    font-size: 1em;
}

nav {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    justify-content: flex-end;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #444;
}

.section-header {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid white;
    display: inline-block;
}

.section {
    text-align: center;
    margin-bottom: 100px;
}

.videos, .shows, .follow, .contact {
    padding: 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.video-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.video-container iframe {
    width: 48%;
    height: 350px;
}

.shows ul {
    list-style: none;
    padding: 0;
    text-align: center;
    max-width: 600px;
    margin: auto;
}

.shows ul li {
    background: #1e1e1e;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    gap: 10px;
}

footer {
    padding: 20px;
    background: black;
    text-align: center;
}

@media (max-width: 768px) {
    .video-container {
        flex-direction: column;
    }
    .video-container iframe {
        width: 100%;
    }
}