/* --- Lyrics Page Layout --- */
.lyrics-section {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.lyrics-artwork {
    flex: 1;
    max-width: 450px;
    position: sticky; /* スクロールしても追従するように */
    top: 150px;      /* ヘッダーの高さを考慮 */
}

.lyrics-artwork img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lyrics-details {
    flex: 1.2;
}

.song-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #00f2ff, #c18cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.lyrics-content p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 2.2;
    margin-bottom: 30px;
}

.lyrics-content .chorus {
    font-weight: 600;
    color: #ffffff;
}
.lyrics-content .outro {
    opacity: 0.8;
}

/* --- 歌詞ページ内の配信リンク --- */
.post-streaming-links {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
    padding: 25px 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-streaming-links p {
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    color: #d0d0d0;
    margin-bottom: 20px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.post-streaming-links .store-button {
    margin: 5px 8px;
}


/* --- レスポンス対応 --- */
@media (max-width: 820px) {
    .lyrics-section {
        flex-direction: column;
        gap: 40px;
    }
    .lyrics-artwork {
        max-width: 100%;
        position: static; /* SPでは追従を解除 */
    }
    .song-title {
        font-size: 2.5rem;
    }
}