/* Botón de control de música */
.music-control {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold, #C5A059);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 98;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: none;
    color: white;
}

.music-control:hover {
    transform: scale(1.1);
    background: var(--gold-dark, #a07e2e);
}

.music-control.muted i {
    opacity: 0.5;
}