/* Scoped to music page to avoid interfering with shared header/footer styles */
.music-container {
    max-width: 1000px;
    width: 100%;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.music-container h1 {  /* target actual h1 inside .music-container */
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 0.5em;
    color: #000000;
}

.music-container p {
    font-size: 1.4em;
    margin-bottom: 1em;
    color: #666;
}

.music-container .iframe-wrapper {
    margin-top: 20px;
}

.music-container .iframe-wrapper iframe {
    width: 100%;
    height: 500px;
}