/* Music Player Block – Serno & Zest */

.music-block-wrapper {
  margin: 40px 0;
}

.music-block iframe {
  opacity: 0;
  pointer-events: none;
}

.mobile-music-button-wrapper {
  display: none;
}

@media screen and (max-width: 768px) {
  .mobile-music-button-wrapper {
    display: block !important;
    text-align: center;
    margin: 24px 0;
  }

  .mobile-music-button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }

  .mobile-music-button:hover {
    background-color: #ddd;
  }

  .mobile-music-hint {
    font-size: 0.95rem;
    color: #aaa;
    margin-top: 10px;
  }
}