/* =========================================================
   FALLENANGELS
   MUSIK – GOTHIC PLAYER
   ========================================================= */

.music-page {
    width: 92%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}


/* =========================================================
   BANNER
   ========================================================= */

.music-banner {
    display: block;
    width: 68%;
    max-width: 700px;
    height: auto;
    margin: 20px auto 35px;
}


/* =========================================================
   HAUPTRAHMEN
   ========================================================= */

.music-frame {
    position: relative;

    width: 100%;
    max-width: 760px;

    margin: 0 auto;
    padding: 30px 30px 28px;

    box-sizing: border-box;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(120, 0, 0, .16),
            transparent 90px
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(120, 0, 0, .12),
            transparent 90px
        ),
        linear-gradient(
            180deg,
            #181818,
            #080808
        );

    border: 1px solid #5d5d5d;

    box-shadow:
        0 0 0 3px #050505,
        0 0 0 5px #282828,
        0 0 0 6px #250000,
        0 0 25px rgba(100, 0, 0, .25),
        inset 0 0 35px rgba(0, 0, 0, .95);
}


/* =========================================================
   INNERE RAHMEN
   ========================================================= */

.music-frame::before {
    content: "";

    position: absolute;

    inset: 9px;

    border: 1px solid rgba(125, 0, 0, .55);

    pointer-events: none;
}

.music-frame::after {
    content: "";

    position: absolute;

    inset: 15px;

    border: 1px solid rgba(180, 180, 180, .14);

    pointer-events: none;
}


/* =========================================================
   ÜBERSCHRIFT
   ========================================================= */

.music-frame h1 {
    position: relative;
    z-index: 2;

    margin: 0;

    font-family: "Cinzel", serif;

    font-size: 30px;
    font-weight: 600;

    line-height: 1.3;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #e5e5e5;

    text-shadow:
        0 2px 4px #000,
        0 0 12px rgba(255,255,255,.1),
        0 0 20px rgba(120,0,0,.25);
}


/* =========================================================
   TRENNLINIE
   ========================================================= */

.music-line {
    position: relative;

    width: 180px;
    height: 1px;

    margin: 16px auto 18px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #650000,
            #aaa,
            #650000,
            transparent
        );

    box-shadow:
        0 0 7px rgba(139,0,0,.55);
}

.music-line::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 7px;
    height: 7px;

    transform:
        translate(-50%, -50%)
        rotate(45deg);

    background: #160000;

    border: 1px solid #888;

    box-shadow:
        0 0 7px rgba(139,0,0,.8);
}


/* =========================================================
   EINLEITUNG
   ========================================================= */

.music-intro {
    position: relative;
    z-index: 2;

    max-width: 600px;

    margin: 0 auto 25px;

    font-family: "Cormorant Garamond", serif;

    font-size: 19px;

    font-style: italic;

    line-height: 1.4;

    color: #aaa;
}


/* =========================================================
   PLAYER
   ========================================================= */

.player {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 620px;

    margin: 0 auto;

    padding: 20px;

    box-sizing: border-box;

    background:
        linear-gradient(
            180deg,
            #151515,
            #070707
        );

    border: 1px solid #555;

    box-shadow:
        inset 0 0 25px rgba(0,0,0,.95),
        0 0 15px rgba(0,0,0,.8);
}


/* =========================================================
   SONG INFORMATION
   ========================================================= */

.song-info {
    margin-bottom: 18px;
}

.song-title {
    font-family: "Cinzel", serif;

    font-size: 18px;

    letter-spacing: 1.5px;

    color: #ddd;

    text-shadow:
        0 0 8px rgba(139,0,0,.35);
}

.song-status {
    margin-top: 5px;

    font-family: "Cormorant Garamond", serif;

    font-size: 14px;

    color: #777;
}


/* =========================================================
   FORTSCHRITT
   ========================================================= */

.progress-area {
    display: flex;

    align-items: center;

    gap: 10px;

    width: 100%;
}

.progress-area span {
    min-width: 34px;

    font-family: "Cormorant Garamond", serif;

    font-size: 13px;

    color: #777;
}


/* =========================================================
   RANGE SLIDER
   ========================================================= */

input[type="range"] {
    flex: 1;

    height: 4px;

    cursor: pointer;

    accent-color: #760000;
}


/* =========================================================
   PLAYER BUTTONS
   ========================================================= */

.player-controls {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

    margin: 20px 0 15px;
}

.player-controls button {
    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid #555;

    background:
        linear-gradient(
            180deg,
            #1c1c1c,
            #080808
        );

    color: #aaa;

    font-size: 16px;

    cursor: pointer;

    box-shadow:
        inset 0 0 10px rgba(0,0,0,.9),
        0 0 8px rgba(0,0,0,.6);

    transition:
        color .25s,
        border-color .25s,
        box-shadow .25s,
        transform .2s;
}

.player-controls button:hover {
    color: #fff;

    border-color: #760000;

    box-shadow:
        inset 0 0 12px rgba(139,0,0,.3),
        0 0 14px rgba(139,0,0,.4);

    transform: translateY(-2px);
}


/* =========================================================
   PLAY BUTTON
   ========================================================= */

.player-controls .play-button {
    width: 52px;
    height: 52px;

    border-color: #760000;

    color: #ddd;

    font-size: 19px;

    box-shadow:
        inset 0 0 15px rgba(100,0,0,.25),
        0 0 12px rgba(100,0,0,.25);
}


/* =========================================================
   LAUTSTÄRKE
   ========================================================= */

.volume-area {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    max-width: 230px;

    margin: 5px auto 0;

    color: #777;
}

.volume-area input {
    width: 150px;
}


/* =========================================================
   PLAYLIST
   ========================================================= */

.playlist {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 620px;

    margin: 25px auto 0;

    padding: 18px;

    box-sizing: border-box;

    background:
        linear-gradient(
            180deg,
            #121212,
            #070707
        );

    border: 1px solid #444;

    box-shadow:
        inset 0 0 20px rgba(0,0,0,.9);
}

.playlist h2 {
    margin: 0 0 15px;

    font-family: "Cinzel", serif;

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #999;
}


/* =========================================================
   PLAYLIST EINTRÄGE
   ========================================================= */

.playlist-item {
    display: flex;

    align-items: center;

    gap: 12px;

    width: 100%;

    padding: 10px 12px;

    margin-bottom: 5px;

    box-sizing: border-box;

    border: 1px solid transparent;

    background: rgba(255,255,255,.025);

    color: #999;

    font-family: "Cormorant Garamond", serif;

    font-size: 16px;

    text-align: left;

    cursor: pointer;

    transition:
        color .25s,
        background .25s,
        border-color .25s;
}

.playlist-item:hover {
    color: #ddd;

    background: rgba(100,0,0,.15);

    border-color: rgba(120,0,0,.4);
}

.playlist-item.active {
    color: #eee;

    background: rgba(100,0,0,.22);

    border-color: #650000;

    box-shadow:
        inset 0 0 12px rgba(100,0,0,.15);
}

.playlist-number {
    min-width: 25px;

    color: #650000;

    font-family: "Cinzel", serif;

    font-size: 11px;
}


/* =========================================================
   ZURÜCK BUTTON
   ========================================================= */

.music-back {
    display: flex;

    justify-content: center;

    margin: 25px auto 40px;
}

.music-back-button {
    display: inline-block;

    padding: 10px 24px;

    color: #aaa;

    background:
        linear-gradient(
            180deg,
            #181818,
            #080808
        );

    border: 1px solid #484848;

    text-decoration: none;

    font-family: "Cinzel", serif;

    font-size: 12px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition:
        color .25s,
        border-color .25s,
        background .25s;
}

.music-back-button:hover {
    color: #fff;

    border-color: #760000;

    background:
        linear-gradient(
            180deg,
            #280000,
            #0d0000
        );
}


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

body > footer {
    text-align: center;

    color: #444;

    font-family: "Cormorant Garamond", serif;

    font-size: 12px;

    margin-bottom: 25px;
}


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

@media (max-width: 700px) {

    .music-page {
        width: 94%;
    }

    .music-banner {
        width: 90%;
        margin-bottom: 25px;
    }

    .music-frame {
        padding: 24px 15px 22px;
    }

    .music-frame h1 {
        font-size: 23px;

        letter-spacing: 1.3px;
    }

    .music-intro {
        font-size: 17px;
    }

    .player {
        padding: 15px;
    }

    .song-title {
        font-size: 16px;
    }

    .playlist {
        padding: 12px;
    }

    .playlist-item {
        font-size: 15px;

        padding: 9px;
    }

    .player-controls {
        gap: 12px;
    }
}


/* =========================================================
   KLEINE HANDYS
   ========================================================= */

@media (max-width: 450px) {

    .music-frame h1 {
        font-size: 20px;
    }

    .music-intro {
        font-size: 16px;
    }

    .player-controls button {
        width: 38px;
        height: 38px;
    }

    .player-controls .play-button {
        width: 48px;
        height: 48px;
    }

    .progress-area {
        gap: 5px;
    }

    .progress-area span {
        min-width: 30px;

        font-size: 11px;
    }
}
/* =========================================
   ALBUM-COVER NEBENEINANDER
   ========================================= */

.album-selection {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 45px;

    width: 100%;
    max-width: 800px;

    margin: 35px auto 10px;
}


/* =========================================
   ALBUM
   ========================================= */

.album-card {
    flex: 1;
    max-width: 330px;

    text-align: center;
}


/* =========================================
   COVER
   ========================================= */

.album-cover {
    display: block;

    width: 100%;
    max-width: 300px;
    height: auto;

    margin: 0 auto;

    border: 1px solid #444;

    box-shadow:
        0 0 0 3px #080808,
        0 0 0 4px #292929,
        0 0 18px rgba(0, 0, 0, .8);

    transition:
        transform .3s,
        box-shadow .3s,
        border-color .3s;
}


/* =========================================
   COVER HOVER
   ========================================= */

.album-card a:hover .album-cover {
    transform: translateY(-4px);

    border-color: #760000;

    box-shadow:
        0 0 0 3px #080808,
        0 0 0 4px #5a0000,
        0 0 22px rgba(139, 0, 0, .5);
}


/* =========================================
   ALBUM TITEL
   ========================================= */

.album-card h2 {
    margin: 18px 0 8px;

    font-family: "Cinzel", serif;

    font-size: 20px;
    font-weight: 600;

    letter-spacing: 1.5px;

    color: #d0d0d0;

    text-transform: uppercase;

    text-shadow:
        0 2px 4px #000,
        0 0 10px rgba(139, 0, 0, .2);
}


/* =========================================
   ALBUM SPRUCH
   ========================================= */

.album-card p {
    max-width: 290px;

    margin: 0 auto;

    font-family: "Cormorant Garamond", serif;

    font-size: 17px;
    font-style: italic;

    line-height: 1.4;

    color: #999;
}


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

@media (max-width: 700px) {

    .album-selection {
        flex-direction: column;

        align-items: center;

        gap: 35px;
    }

    .album-card {
        width: 100%;
        max-width: 330px;
    }

}
/* =========================================
   MEHR ABSTAND ZWISCHEN PLAYLIST-TITELN
   ========================================= */

.playlist-song {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 10px 14px;
    margin-bottom: 6px;

    line-height: 1.5;
}

/* Aktiver Titel */
.playlist-song.active {
    min-height: 46px;
}

/* Auf kleineren Bildschirmen etwas kompakter */
@media (max-width: 700px) {

    .playlist-song {
        min-height: 38px;
        padding: 8px 10px;
        margin-bottom: 5px;
    }

}
/* =========================================
   PLAYLIST – ABSTAND ZWISCHEN TITEL UND LIKES
   ========================================= */

.playlist-song {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;

    min-height: 42px;
    padding: 10px 14px;
    margin-bottom: 6px;
}


/* Herz */
.like-button {
    margin-left: 12px;

    border: none;
    background: transparent;

    color: #777;
    font-size: 18px;

    cursor: pointer;

    padding: 4px 8px;
}


/* Like-Zahl */
.like-count {
    margin-left: 4px;

    color: #888;
    font-size: 14px;
}
/* =========================================
   PLAYLIST – TITEL / HERZ / LIKES IN EINER LINIE
   ========================================= */

.playlist-song {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;

    width: 100%;

    min-height: 42px;
    padding: 8px 18px;
    margin-bottom: 4px;

    box-sizing: border-box;
}


/* Songtitel */
.playlist-song > span:first-child {
    text-align: right;
    padding-right: 28px;
    white-space: nowrap;
}


/* Herz */
.playlist-song .like-button {
    margin: 0;
    padding: 2px 6px;

    border: none;
    background: transparent;

    color: #777;
    font-size: 18px;

    cursor: pointer;
}


/* Like-Zahl */
.playlist-song .like-count {
    margin: 0;
    padding-left: 6px;

    min-width: 20px;

    text-align: left;

    color: #888;
    font-size: 14px;
}
