#musicDock {
    position: fixed;
    right: 32px;
    bottom: 32px;
    width: 340px;
    height: 80px;
    background: rgba(0, 8, 0, 0.75);
    border-radius: 18px;
    box-shadow: 0 0 15px #39ff14, 0 0 15px rgba(57, 255, 20, 0.8);
    z-index: 3000;
    user-select: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.25s ease-out, transform 0.18s ease-out;
}

#musicDock:active {
    transform: scale(0.975);
}

#musicDock:hover {
    box-shadow: 0 0 32px #39ff14, 0 0 80px rgba(57, 255, 20, 0.9);
    transform: translateY(-1px);
}

#musicWaveBg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#musicControls {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.music-btn {
    width: 45px;
    height: 45px;
    background: none;
    border: none;
    outline: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.18s;
}

.music-btn:active {
    background: rgba(57, 255, 20, 0.18);
}

.music-icon {
    width: 32px;
    height: 32px;
    stroke: #39ff14;
    stroke-width: 3.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: stroke 0.19s;
}

#musicPlay {
    width: 58px;
    height: 58px;
    background: none;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: filter 0.2s;
}

.music-info {
    position: absolute;
    left: 22px;
    top: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.12rem;
    color: #7dff7d;
    opacity: 0.8;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    #musicDock {
        right: 12px;
        bottom: 20px;
        width: 280px;
        height: 72px;
        border-radius: 16px;
    }

    #musicControls {
        gap: 20px;
    }

    #musicPlay {
        width: 52px;
        height: 52px;
    }

    .music-btn {
        width: 40px;
        height: 40px;
    }

    .music-icon {
        width: 26px;
        height: 26px;
    }

    .music-info {
        left: 16px;
        top: 8px;
        font-size: 0.68rem;
    }
}

@media (max-width: 480px) {
    #musicDock {
        right: 8px;
        bottom: 14px;
        width: 250px;
        height: 70px;
    }

    #musicControls {
        gap: 16px;
    }
}