.music-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.embed-toggle {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid rgba(39, 58, 77, 0.25);
  border-radius: 9px;
  color: var(--brief-accent-dark);
  background: #e8efee;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
}

.embed-toggle input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--brief-accent);
}

.watch-link-frame {
  display: grid;
  min-height: 112px;
  place-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--brief-line);
  background: linear-gradient(135deg, rgba(39, 58, 77, 0.96), rgba(18, 99, 100, 0.94));
}

.watch-youtube-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 9px;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(10, 25, 32, 0.2);
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.watch-youtube-button:hover,
.watch-youtube-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 720px) {
  .music-intro,
  .music-actions {
    align-items: stretch;
  }

  .music-actions {
    width: 100%;
  }

  .queue-button,
  .embed-toggle {
    flex: 1 1 180px;
  }

  .watch-link-frame {
    min-height: 88px;
  }
}
