body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #181818;
    color: white;
}

header {
    background-color: #333;
    color: white;
    text-align: center;
    padding-bottom: 20px;
}

.header .container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

.banner img {
    width: 100%;
    height: auto;
}

.channel-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.profile-pic {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.subscribe-button {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 10px;
}

.social-share {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-share a img {
    width: 24px;
    height: 24px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #444;
    width: 100%;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 10px 20px;
}

nav ul li a:hover {
    background-color: #555;
}

.hero {
    background: url('your-hero-image.jpg') no-repeat center center/cover;
    color: white;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.about, .songs, .videos, .contact {
    background-color: #282828;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 1624px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    position: relative;
    max-width: 1624px;
    margin: 0 auto;
    overflow: hidden;
}

.song-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none;  /* For Internet Explorer and Edge */
}

.song-carousel::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}

.song-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    background-color: #333;
    padding: 10px;
    border-radius: 8px;
    margin-right: 10px;
    text-align: center;
    width: 300px;
}

.song-item iframe {
    width: 100%;
    border-radius: 8px;
}

.search-bar {
    margin-top: 20px;
    text-align: center;
}

.search-bar input {
    padding: 10px;
    width: 80%;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #333;
    color: white;
}

.video-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.video-item {
    background-color: #333;
    padding: 10px;
    border-radius: 8px;
    margin: 10px;
    text-align: center;
    width: 300px;
}

.video-item iframe {
    width: 100%;
    border-radius: 8px;
}

.contact form {
    display: flex;
    flex-direction: column;
}

.contact label {
    margin-top: 10px;
}

.contact input, .contact textarea {
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #333;
    color: white;
}

.contact button {
    margin-top: 20px;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact button:hover {
    background-color: #555;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1;
}

.left-button {
    left: 0;
}

.right-button {
    right: 0;
}
