.preview-controls [data-action="settings"] {
  display: none !important;
}

.preview-controls button[data-tooltip] {
  position: relative;
}

.preview-controls button[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 30;
  width: max-content;
  max-width: 220px;
  padding: 7px 10px;
  border: 1px solid rgba(188, 145, 255, .28);
  border-radius: 8px;
  background: #130d1b;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 5px);
  transition: opacity .16s ease, transform .16s ease;
  white-space: normal;
}

.preview-controls button[data-tooltip]:hover::after,
.preview-controls button[data-tooltip]:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.preview-controls button.is-active svg {
  fill: currentColor !important;
  stroke: currentColor !important;
}

.preview-controls [data-action="heart"].is-active {
  border-color: rgba(244, 114, 182, .52);
  background: rgba(190, 53, 126, .24);
  color: #ff7fbd;
}

.preview-controls [data-action="up"].is-active {
  border-color: rgba(74, 222, 128, .48);
  background: rgba(22, 163, 74, .22);
  color: #6ee7a0;
}

.preview-controls [data-action="down"].is-active {
  border-color: rgba(251, 113, 133, .52);
  background: rgba(190, 24, 93, .22);
  color: #fb7185;
}

.preview-controls button:disabled {
  cursor: wait;
  opacity: .62;
}

.lca-audio-panel {
  position: absolute;
  right: 70px;
  bottom: 62px;
  z-index: 25;
  width: min(300px, calc(100vw - 28px));
  padding: 16px;
  border: 1px solid rgba(188, 145, 255, .30);
  border-radius: 14px;
  background: rgba(19, 13, 27, .98);
  color: #f8f5fb;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .52);
}

.lca-audio-panel-head,
.lca-audio-toggle,
.lca-audio-volume > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.lca-audio-panel-head {
  margin-bottom: 16px;
}

.lca-audio-panel-head strong {
  font-size: 16px;
}

.lca-audio-panel-head button {
  min-width: 30px !important;
  width: 30px;
  height: 30px;
  padding: 0 !important;
  border-radius: 50% !important;
  font-size: 20px !important;
}

.lca-audio-toggle {
  margin-bottom: 16px;
  font-size: 13px;
  cursor: pointer;
}

.lca-audio-toggle input {
  position: absolute;
  opacity: 0;
}

.lca-audio-toggle i {
  position: relative;
  width: 42px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #3b3047;
  transition: background .18s ease;
}

.lca-audio-toggle i::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform .18s ease;
}

.lca-audio-toggle input:checked + i {
  background: #8b4bdd;
}

.lca-audio-toggle input:checked + i::after {
  transform: translateX(18px);
}

.lca-audio-volume {
  display: block;
  font-size: 13px;
}

.lca-audio-volume input {
  width: 100%;
  margin: 10px 0 4px;
  accent-color: #a45feb;
}

.lca-audio-panel small {
  display: block;
  margin-top: 10px;
  color: #a99bb5;
  font-size: 11px;
  line-height: 1.4;
}

@media (max-width: 680px) {
  .lca-audio-panel {
    position: fixed;
    right: 14px;
    bottom: calc(82px + env(safe-area-inset-bottom, 0px));
    left: 14px;
    width: auto;
  }
}
