
.main-content {
    background: url('../images/music-background.png') no-repeat center center/cover;
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #F0C494;
    padding: 50px 0;
}

.music-section {
    width: 80%;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 50px;
}

.music-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.carousel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    height: 400px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in;
}

.carousel-slide {
    min-width: 33.3%;
    transition: opacity 0.5s ease-in;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide img {
    width: 100%;
    opacity: 0.5;
}

.carousel-slide.current-slide iframe {
    z-index: 2;
    width: 100%;
    height: 350px;
}

.carousel-slide:not(.current-slide) img {
    opacity: 0.8;
    filter: blur(2px);
}

.carousel-button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

.music-platforms {
    margin-top: 30px;
}

.music-platforms p {
    font-size: 20px;
    margin-bottom: 10px;
}

.platform-icons a img {
    width: 40px;
    height: 40px;
    margin: 0 5px;
}

/* Media queries for responsive design */
@media (max-width: 900px) {
    nav {
        flex-direction: column;
        width: 100%;
    }

    .logo img {
        height: 40px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 16px;
    }

    .social-icons {
        margin-top: 10px;
    }

    .social-icons a {
        font-size: 18px;
        margin-left: 15px;
    }

    .main-content {
        padding: 20px 0;
    }

    .music-section {
        width: 90%;
        padding: 15px;
    }

    .music-section h1 {
        font-size: 28px;
    }

    .carousel-slide {
        min-width: 50%;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 30px;
    }

    nav ul li a {
        font-size: 14px;
    }

    .social-icons a {
        font-size: 16px;
        margin-left: 10px;
    }

    .main-content {
        padding: 10px 0;
    }

    .music-section h1 {
        font-size: 24px;
        padding: 10px;
    }

    .music-section {
        width: 100%;
    }

    .carousel-track-container {
        height: auto;
    }

    .carousel-slide {
        min-width: 100%;
    }

    .carousel-slide.current-slide iframe {
        height: 200px;
    }

    .carousel-button {
        font-size: 18px;
        padding: 5px;
    }

    .music-platforms p {
        font-size: 18px;
    }

    .platform-icons a img {
        width: 30px;
        height: 30px;
        margin: 0 3px;
    }
}