* {
    box-sizing: border-box;
}


body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
}


/* =========================
   NAVBAR
========================= */

.lyrics-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    padding: 30px 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 100;

    background: rgba(0, 0, 0, 0.75);

    backdrop-filter: blur(8px);
}


.lyrics-logo {
    color: white;
    text-decoration: none;

    font-size: 22px;
    letter-spacing: 8px;
}


.back-link {
    color: #aaa;
    text-decoration: none;

    font-size: 12px;
    letter-spacing: 3px;

    transition: 0.3s;
}


.back-link:hover {
    color: white;
}



/* =========================
   INTRO
========================= */

.lyrics-intro {
    min-height: 65vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    padding: 140px 20px 70px;
}


.eyebrow {
    color: #777;

    font-size: 12px;
    letter-spacing: 5px;

    margin-bottom: 20px;
}


.lyrics-intro h1 {
    font-size: clamp(60px, 10vw, 120px);

    letter-spacing: 15px;

    font-weight: normal;

    margin: 0;
}


.lyrics-intro > p:last-child {
    max-width: 550px;

    color: #999;

    line-height: 1.8;

    font-size: 16px;
}



/* =========================
   SONG LIST
========================= */

.song-list {
    max-width: 1000px;

    margin: auto;

    padding: 30px 20px 120px;

    display: flex;
    flex-direction: column;

    gap: 110px;
}



/* =========================
   SONG CARD
========================= */

.song-card {
    width: 100%;

    text-align: left;
}



/* =========================
   SONG MAIN
========================= */

.song-main {
    display: grid;

    grid-template-columns: 280px 1fr;

    gap: 55px;

    align-items: center;
}


.song-card img {
    width: 280px;
    height: 280px;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    display: block;
}


.song-info {
    padding: 10px 0;
}


.song-number {
    color: #555;

    font-size: 12px;

    letter-spacing: 4px;
}


.song-info h2 {
    font-size: 42px;

    font-weight: normal;

    letter-spacing: 7px;

    margin: 12px 0;
}


.song-info > p {
    color: #777;
}



/* =========================
   OPEN BUTTON
========================= */

.open-song {
    margin-top: 25px;

    padding: 13px 28px;

    background: transparent;

    border: 1px solid #555;

    color: white;

    letter-spacing: 3px;

    cursor: pointer;

    transition: 0.3s;
}


.open-song:hover {
    background: white;

    color: black;
}



/* =========================
   LYRICS VIEW
========================= */

.lyrics-view {
    display: none;

    width: 100%;

    margin-top: 60px;

    padding: 45px 20px 20px;

    border-top: 1px solid #181818;
}


.song-card.open .lyrics-view {
    display: block;
}

.song-card:not(.open) .lyrics-view {
    display: none;
}



/* =========================
   LYRICS HEADER
========================= */

.lyrics-header {
    text-align: center;

    margin-bottom: 60px;
}


.lyrics-year {
    color: #555;

    letter-spacing: 4px;

    font-size: 11px;
}


.lyrics-title {
    font-size: clamp(38px, 6vw, 70px);

    font-weight: normal;

    letter-spacing: 8px;

    margin: 15px 0;
}


.lyrics-description {
    max-width: 560px;

    margin: auto;

    color: #888;

    line-height: 1.7;

    font-size: 14px;
}



/* =========================
   LYRIC SECTIONS
========================= */

.lyric-section {
    margin-bottom: 45px;
}


.lyric-section h3 {
    color: #555;

    font-size: 11px;

    letter-spacing: 5px;

    font-weight: normal;

    margin-bottom: 12px;
}



/* =========================
   LYRIC BLOCK
========================= */

.lyric-block {
    padding: 12px 15px;

    margin: 0;

    border-radius: 4px;

    cursor: pointer;

    color: #eee;

    line-height: 1.55;

    font-size: 16px;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}



/* MOUSE */

.lyric-block:hover {
    background: rgba(255, 255, 255, 0.045);

    transform: translateY(-1px);

    box-shadow:
        0 6px 20px rgba(255, 255, 255, 0.025);
}



/* CLICK / MOBILE */

.lyric-block.active {
    background: rgba(255, 255, 255, 0.07);

    transform: translateY(-1px);
}



/* =========================
   STORY
========================= */

.story {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transform: translateY(-8px);

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}


.story.active {
    max-height: 350px;

    opacity: 1;

    transform: translateY(0);
}


.story-label {
    margin-top: 18px;

    color: #777;

    font-size: 10px;

    letter-spacing: 4px;
}


.story p {
    max-width: 620px;

    color: #aaa;

    line-height: 1.7;

    font-size: 14px;

    margin-top: 10px;
}



/* =========================
   COLLAPSE BUTTON
========================= */

.close-song {
    display: block;

    margin: 45px auto 5px;

    background: none;

    border: none;

    color: #666;

    cursor: pointer;

    letter-spacing: 3px;

    font-size: 11px;

    transition: 0.3s;
}


.close-song:hover {
    color: white;
}



/* =========================
   FOOTER
========================= */

footer {
    padding: 60px 20px;

    color: #444;

    font-size: 12px;
}



/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .lyrics-navbar {
        padding: 20px;
    }


    .lyrics-intro {
        min-height: 58vh;

        padding: 120px 20px 60px;
    }


    .lyrics-intro h1 {
        letter-spacing: 8px;
    }


    .song-list {
        gap: 80px;

        padding-left: 15px;
        padding-right: 15px;
    }


    .song-main {
        grid-template-columns: 1fr;

        gap: 25px;

        text-align: center;
    }


    .song-card img {
        width: 280px;
        height: 280px;

        margin: auto;
    }


    .song-info {
        padding: 0;
    }


    .song-info h2 {
        font-size: 30px;

        letter-spacing: 5px;
    }


    .lyrics-view {
        margin-top: 45px;

        padding: 35px 5px 15px;
    }


    .lyrics-header {
        margin-bottom: 45px;
    }


    .lyrics-title {
        letter-spacing: 5px;
    }


    .lyric-section {
        margin-bottom: 40px;
    }


    .lyric-block {
        padding: 11px 8px;

        font-size: 15px;

        line-height: 1.55;
    }


    .story p {
        font-size: 14px;
    }

}
