/* =======================
   MUSIC PLAYER
======================= */
#music-player {
    position: fixed;
    bottom: 10px;
    right: 22px;
    z-index: 9999;
}

/* Tombol */
#music-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: all .35s ease;
}

/* Gambar vinyl */
#music-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform .3s ease;
}

/* Hover */
#music-toggle:hover {
    transform: scale(1.08);
}

/* Saat musik diputar */
#music-toggle.playing #music-icon {
    animation: musicSpin 4s linear infinite;
}

/* Pause */
#music-toggle.paused #music-icon {
    animation: none;
}

/* =======================
   ANIMATION
======================= */
@keyframes musicSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 600px) {

    #music-player {
        bottom: 100px;
        right: 18px;
    }

    #music-icon {
        width: 52px;
        height: 52px;
    }
}