/* ----------------------- */
/* PRZYCISK MUZYKI "NUTKA" */
/* ----------------------- */

#musicButton {
    position: fixed;
    right: 2vh;
    top: 50%;
    transform: translateY(-50%);
    width: 6vh;
    height: 6vh;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 99998;
    backdrop-filter: blur(6px);
    user-select: none;
}


/* ----------------------- */
/* OVERLAY — PEŁNY PANEL   */
/* ----------------------- */

#musicOverlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;

    /* TŁO JAK NA MAKIETCE */

      /*linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),*/
      background: url('bckgr.png') center center / cover no-repeat fixed;
    
}

/* Zamykacz – X w prawym rogu */
#musicClose {
    position: fixed;
    top: 2vh;
    right: 2vh;
    font-size: 4vh;
    color: #ffffffcc;
    cursor: pointer;
    z-index: 100000;
    user-select: none;
}


/* ----------------------- */
/* NAGŁÓWEK PANELU         */
/* ----------------------- */

#musicTitle {
    margin-top: 10vh;
    margin-bottom: 5vh;
    text-align: center;
    font-size: 4vh;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2vh;

    text-shadow:
        0 0 1vh rgba(0,0,0,0.6),
        0 0 2vh rgba(0,0,0,0.6);
}


/* ----------------------- */
/* LISTA PRZYCISKÓW        */
/* ----------------------- */

#musicList {
    width: 85%;
    display: flex;
    flex-direction: column;
    gap: 3vh;
    padding-bottom: 10vh;
}


/* ----------------------------- */
/* PRZYCISK FOLDERU — PREMIUM    */
/* ----------------------------- */

.music-item {
    padding: 2.5vh 3vw;
    text-align: center;
    font-size: 3.2vh;
    font-weight: 400;
    color: #fff;
    border-radius: 2vh;

    /* Złoty metaliczny gradient */
    background: linear-gradient(
        90deg,
        rgba(84,58,30,1) 0%,
        rgba(230,216,186,1) 50%,
        rgba(84,58,30,1) 100%
    );

    box-shadow:
        0 0 2vh rgba(0,0,0,0.7),
        inset 0 0 1vh rgba(255,255,255,0.25);

    cursor: pointer;
    position: relative;
    overflow: hidden;

    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Efekt kliknięcia */
.music-item:active {
    transform: scale(0.96);
    opacity: 0.85;
}

/* ------------------------------------- */
/* ANIMOWANY POŁYSK (metallic shine)     */
/* ------------------------------------- */

.music-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.4) 50%,
        transparent 100%
    );
    transform: skewX(-25deg);
    transition: 0.5s;
}

.music-item:hover::after {
    left: 150%;
}


#musicButton img {
    width: auto;
    height: 5vh;
    pointer-events: none;
}
