  #audioToggleModeBtn {
      background: linear-gradient(135deg, #1d4ed8, #2563eb);
      color: #fff;
      border: none;
      border-radius: 999px;
      padding: 10px 18px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      margin-top: 50px;
      gap: 8px;
      box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
      transition: all 0.25s ease;
  }

  /* Reduce video height when in audio mode */
  .vjs-audio-only {
      width: 100% !important;
      max-width: 100% !important;
      margin-top: 50px;
      height: auto !important;
  }

  .vjs-playback-rate .vjs-menu {
      width: 60px !important;
      bottom: 0px !important;
      left: 0 !important;
      right: auto !important;
      transform: none !important;
  }

  /* Kill the forced aspect ratio */
  .vjs-audio-only.vjs-fluid {
      padding-top: 0 !important;
  }

  .vjs-audio-only .vjs-control-bar {
      display: flex !important;
  }

  /* Make player respect new height */
  .vjs-audio-only .vjs-tech,
  .vjs-audio-only video {
      width: 100% !important;
      height: 64px !important;
  }

  .vjs-audio-only .vjs-big-play-button {
      display: none !important;
  }

  .vjs-audio-only .vjs-poster {
      display: none !important;
  }

  /* Never show video loader in audio mode */
  .vjs-audio-only .vjs-loading-spinner {
      display: none !important;
  }