body{
    margin: 0;
    background-image: url(../img/back.jpg);
    background-size: cover;
    background-position: center;
    font-family: 'Playfair Display', serif;
    color: #eaefef;
}

.song-container{
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.album-image{
    max-width: 300px;
    width: 100%;
    border-radius: 10px;
    margin: 60px auto 30px;
}

.song-title{
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0;
}

.artist-name{
    font-size: 20px;
    color: #ccc;
    margin-bottom: 30px;
}

.lyrics-box{
    background-color: rgba(255,255,255,0.15);
    padding: 20px;
    height: 200px;
    overflow-y: scroll;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: left;
}
.lyrics-box::-webkit-scrollbar{
    width: 6px;
}
.lyrics-box::-webkit-scrollbar-track{
    background: transparent;
}
.lyrics-box::-webkit-scrollbar-thumb{
    background-color: rgba(255,255,255,0.3);
    border-radius: 10px;
    border: none;
}

iframe{
    width: 100%;
    max-width: 500px;
    height: 315px;
    border: none;
    border-radius: 10px;
}
a.back-link {
      display: inline-block;
      margin-top: 30px;
      color: #aaa;
      text-decoration: none;
}
a.back-link:hover {
      color: #fff;
}

.button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.youtube-link{
    display: inline-block;
    padding: 12px 24px;
    margin: 0 auto;
    background: linear-gradient(145deg, #2d2e3a, #1c1c28);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
.youtube-link:hover{
    background: linear-gradient(145deg, #3a3b4c, #2a2b3c);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.5);
}