:root {
  color-scheme: dark;
  --bg: #03050a;
  --bg-deep: #010308;
  --panel: rgba(14, 17, 24, 0.72);
  --panel-solid: #0a0d14;
  --panel-soft: rgba(18, 22, 31, 0.56);
  --stroke: rgba(230, 238, 255, 0.12);
  --stroke-strong: rgba(235, 242, 255, 0.2);
  --text: #f4f7fb;
  --muted: #8f97a6;
  --dim: #4f5664;
  --accent: #d6e4ff;
  --accent-strong: #aecaef;
  --warm: #d9c39c;
  --danger: #ff8c8c;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(14, 18, 27, 0.98) 0%, #05070d 42%, #010308 100%);
  color: var(--text);
}

body {
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.app-shell {
  position: relative;
  width: min(100%, 26.75rem);
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(env(safe-area-inset-top, 0px) + 1.35rem) 1.35rem calc(env(safe-area-inset-bottom, 0px) + 11.7rem);
  isolation: isolate;
}

.app-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.026) 50%, transparent 100%) 0 4.25rem / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 17rem);
  opacity: 0.72;
}

.app-shell::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  height: 12rem;
  z-index: -1;
  background: linear-gradient(0deg, rgba(2, 5, 11, 0.96), rgba(2, 5, 11, 0));
  pointer-events: none;
}

.view {
  display: none;
  min-height: calc(100svh - 9rem);
  animation: viewIn 220ms ease-out;
}

.view.is-active {
  display: block;
}

@keyframes viewIn {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.radio-header,
.script-meta,
.tuner-panel,
.transport,
.page-head,
.time-row,
.playlist-summary,
.song-row,
.library-row,
.switch-row {
  display: flex;
  align-items: center;
}

.radio-header {
  justify-content: space-between;
  gap: 0.65rem;
  opacity: 0.9;
}

.on-air {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  min-height: 2.22rem;
  color: var(--accent);
  font-family: "SF Mono", "Cascadia Mono", Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0;
}

.status-dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 1rem rgba(214, 228, 255, 0.58);
}

.tiny-meter,
.mini-wave {
  display: inline-flex;
  align-items: center;
  gap: 0.13rem;
}

.tiny-meter i,
.mini-wave i {
  display: block;
  width: 0.12rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.86;
}

.tiny-meter i:nth-child(1) { height: 0.55rem; }
.tiny-meter i:nth-child(2) { height: 1rem; }
.tiny-meter i:nth-child(3) { height: 0.7rem; }
.tiny-meter i:nth-child(4) { height: 1.2rem; }
.tiny-meter i:nth-child(5) { height: 0.6rem; }

.mini-wave i:nth-child(1) { height: 0.55rem; }
.mini-wave i:nth-child(2) { height: 0.95rem; }
.mini-wave i:nth-child(3) { height: 0.55rem; }

.voice-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  min-width: 7.9rem;
  min-height: 2.18rem;
  padding: 0 0.68rem;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(8, 11, 17, 0.74);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  color: var(--text);
  white-space: nowrap;
}

.voice-pill span {
  font-size: 0.72rem;
}

.voice-pill select {
  min-width: 3.8rem;
  max-width: 5.2rem;
  border: 0;
  color: var(--text);
  background: transparent;
  outline: none;
  font-size: 0.72rem;
}

.brand-block {
  margin-top: 1.72rem;
}

.matrix-title {
  margin: 0;
  color: #edf5ff;
  background: linear-gradient(180deg, #ffffff 0%, #d7e2f6 56%, #7f8798 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Avenir Next", "SF Pro Display", -apple-system, BlinkMacSystemFont, "PingFang SC", "Segoe UI", sans-serif;
  font-size: 2.14rem;
  line-height: 1;
  font-weight: 740;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 0.72rem rgba(214, 228, 255, 0.07);
}

.signal-line {
  width: 5.9rem;
  height: 1px;
  margin-top: 0.92rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(227, 234, 247, 0.12);
}

.signal-line span {
  display: block;
  width: 1.75rem;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--warm), rgba(214, 228, 255, 0));
  animation: signalSweep 3s ease-in-out infinite;
}

@keyframes signalSweep {
  0%, 100% { transform: translateX(0); opacity: 0.75; }
  50% { transform: translateX(4.1rem); opacity: 1; }
}

.script-panel {
  position: relative;
  margin-top: 1.82rem;
}

.script-meta {
  justify-content: space-between;
  color: rgba(218, 226, 240, 0.72);
  font-family: "SF Mono", "Cascadia Mono", Consolas, monospace;
  font-size: 0.78rem;
}

#queueHint {
  color: rgba(143, 151, 166, 0.48);
  font-family: inherit;
  font-size: 0.72rem;
}

.script-scroll {
  position: relative;
  height: 9rem;
  margin-top: 0.82rem;
  overflow-y: auto;
  padding: 0.16rem 0.3rem 0.16rem 0;
  color: rgba(245, 247, 251, 0.88);
  font-size: 0.98rem;
  line-height: 1.82;
  scrollbar-width: none;
  mask-image: linear-gradient(to bottom, transparent 0, #000 0.86rem, #000 8.1rem, transparent 100%);
}

.script-scroll::-webkit-scrollbar {
  display: none;
}

.script-scroll p {
  margin: 0 0 0.88rem;
}

.script-scroll .dimmed {
  color: rgba(143, 151, 166, 0.46);
}

.tuner-panel {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.32rem;
}

.frequency {
  width: 42%;
  min-width: 0;
}

.frequency span:first-child {
  display: inline-block;
  margin-right: 0.35rem;
  color: rgba(237, 245, 255, 0.84);
  font-size: 0.82rem;
}

.frequency strong {
  display: inline-block;
  color: #edf5ff;
  background: linear-gradient(180deg, #ffffff 0%, #d7e4f7 62%, #7f889b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Avenir Next", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.92rem;
  line-height: 0.95;
  font-weight: 740;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  text-shadow: 0 0 0.9rem rgba(214, 228, 255, 0.12);
}

.dial-scale {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 0.22rem;
  height: 2.34rem;
  margin-top: 0.42rem;
  color: rgba(199, 212, 235, 0.62);
}

.dial-scale i {
  width: 0.09rem;
  height: 0.52rem;
  justify-self: center;
  border-radius: 999px;
  background: rgba(217, 224, 238, 0.48);
}

.dial-scale i.major {
  height: 1.26rem;
  background: var(--warm);
  box-shadow: 0 0 0.8rem rgba(217, 195, 156, 0.24);
}

.dial-scale span {
  align-self: end;
  color: rgba(199, 205, 218, 0.55);
  font-size: 0.78rem;
}

.now-card {
  width: 58%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2rem;
  gap: 0.2rem 0.48rem;
  padding: 0.76rem 0.78rem 0.68rem;
  border: 1px solid rgba(230, 238, 255, 0.1);
  border-radius: 0.98rem;
  background: linear-gradient(180deg, rgba(17, 21, 30, 0.6), rgba(8, 10, 16, 0.46));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.028);
}

.now-card strong,
.now-card span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.now-card strong {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 640;
}

.now-card span {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.74rem;
}

.icon-button,
.play-button {
  display: inline-grid;
  place-items: center;
  border: 0;
  color: rgba(238, 246, 255, 0.88);
  background: transparent;
  cursor: pointer;
}

.icon-button {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
}

.icon-button:active,
.play-button:active,
.tab-button:active,
.primary-action:active,
.secondary-action:active {
  transform: scale(0.96);
}

.icon-button svg,
.play-button svg,
.tab-button svg,
.search-box svg,
.import-panel svg {
  width: 1.42rem;
  height: 1.42rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#likeBtn.is-liked svg {
  fill: rgba(241, 201, 139, 0.18);
  stroke: var(--warm);
}

.waveform {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.105rem;
  height: 1.08rem;
  margin-top: 0.36rem;
  overflow: hidden;
}

.waveform i {
  display: block;
  width: 0.12rem;
  min-width: 0.12rem;
  border-radius: 999px;
  background: rgba(205, 224, 255, 0.3);
  transition: background-color 160ms ease, height 160ms ease;
}

.waveform i.is-active {
  background: var(--warm);
}

.time-row {
  grid-column: 1 / -1;
  justify-content: flex-end;
  gap: 0.18rem;
  color: rgba(181, 194, 216, 0.66);
  font-size: 0.68rem;
}

.time-row span + span::before {
  content: "/";
  margin-right: 0.18rem;
  color: rgba(181, 194, 216, 0.5);
}

.transport {
  justify-content: space-around;
  gap: 0.68rem;
  margin-top: 1.15rem;
}

.play-button {
  width: 4.08rem;
  height: 4.08rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(28, 32, 42, 0.88), rgba(8, 10, 16, 0.88));
  border: 1px solid rgba(235, 242, 255, 0.18);
  box-shadow: inset 0 0 0 0.36rem rgba(255, 255, 255, 0.014), 0 1rem 2.4rem rgba(0, 0, 0, 0.38);
}

.play-button svg {
  width: 1.82rem;
  height: 1.82rem;
  stroke-width: 0;
  fill: currentColor;
}

.mood-console {
  position: fixed;
  left: 50%;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 6.18rem);
  z-index: 29;
  width: min(calc(100% - 2.25rem), 24.4rem);
  margin-top: 0;
  transform: translateX(-50%);
}

.chips {
  display: none;
  gap: 0.42rem;
  overflow-x: auto;
  padding-bottom: 0.62rem;
  scrollbar-width: none;
}

.chips::-webkit-scrollbar {
  display: none;
}

.chip {
  flex: 0 0 auto;
  min-height: 2.1rem;
  padding: 0 0.78rem;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  color: rgba(236, 244, 255, 0.74);
  background: rgba(11, 17, 29, 0.72);
  font-size: 0.82rem;
}

.chip.is-active {
  color: #06101e;
  background: var(--accent);
  border-color: var(--accent);
}

.prompt-row {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 3.42rem;
  padding: 0.38rem 0.38rem 0.38rem 0.94rem;
  border: 1px solid rgba(230, 238, 255, 0.14);
  border-radius: 1.02rem;
  background: rgba(9, 12, 18, 0.9);
  box-shadow: 0 1rem 2.6rem rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.032);
  backdrop-filter: blur(22px);
}

.prompt-row input,
.search-box input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: none;
  color: var(--text);
  background: transparent;
}

.prompt-row input::placeholder,
.search-box input::placeholder,
.settings-form textarea::placeholder {
  color: rgba(174, 181, 194, 0.5);
}

.mic-button {
  color: rgba(214, 228, 255, 0.82);
}

.tune-button {
  flex: 0 0 2.38rem;
  width: 2.38rem;
  height: 2.38rem;
  color: #07101c;
  background: linear-gradient(180deg, #ecf2ff, #b7c9e8);
  box-shadow: 0 0.55rem 1.35rem rgba(183, 201, 232, 0.14);
}

.mic-button.is-listening {
  background: rgba(143, 183, 255, 0.16);
  box-shadow: 0 0 1.2rem rgba(143, 183, 255, 0.24);
}

.primary-action,
.secondary-action {
  width: 100%;
  min-height: 2.82rem;
  border: 0;
  border-radius: 0.9rem;
  color: #07101f;
  background: linear-gradient(180deg, #dceaff, #95bbff);
  font-weight: 700;
  cursor: pointer;
}

.primary-action {
  margin-top: 0.5rem;
}

.secondary-action {
  color: rgba(235, 244, 255, 0.88);
  background: rgba(15, 23, 37, 0.82);
  border: 1px solid var(--stroke);
  font-weight: 600;
}

.secondary-action.danger {
  color: var(--danger);
}

.page-head {
  justify-content: space-between;
  margin-bottom: 0.95rem;
}

.page-head span {
  color: var(--muted);
  font-size: 0.82rem;
}

.page-head strong {
  font-size: 1.55rem;
  letter-spacing: 0;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  min-height: 2.78rem;
  padding: 0 0.86rem;
  border-radius: 0.92rem;
  border: 1px solid var(--stroke);
  background: rgba(10, 16, 28, 0.72);
  color: rgba(216, 231, 255, 0.78);
}

.search-box svg {
  width: 1.12rem;
  height: 1.12rem;
}

.playlist-summary {
  justify-content: space-between;
  gap: 0.8rem;
  margin: 0.88rem 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.song-list,
.library-list {
  display: grid;
  gap: 0.62rem;
}

.song-row,
.library-row {
  justify-content: space-between;
  gap: 0.72rem;
  min-height: 4.25rem;
  padding: 0.66rem;
  border: 1px solid var(--stroke);
  border-radius: 0.9rem;
  background: rgba(10, 16, 28, 0.62);
}

.song-row.is-current,
.library-row.is-current {
  border-color: rgba(143, 183, 255, 0.46);
  background: rgba(36, 57, 91, 0.34);
}

.song-art {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 2.7rem;
  border-radius: 0.76rem;
  color: #08101f;
  background: linear-gradient(145deg, #cfe2ff, #728ec7);
  font-family: "SF Mono", "Cascadia Mono", Consolas, monospace;
  font-weight: 800;
}

.song-main,
.library-main {
  min-width: 0;
  flex: 1;
}

.song-main strong,
.library-main strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
}

.song-main span,
.library-main span {
  display: block;
  margin-top: 0.24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.74rem;
}

.song-tags,
.library-tags {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.32rem;
  overflow: hidden;
}

.song-tags em,
.library-tags em {
  flex: 0 0 auto;
  padding: 0.12rem 0.38rem;
  border-radius: 999px;
  color: rgba(216, 231, 255, 0.76);
  background: rgba(216, 231, 255, 0.08);
  font-style: normal;
  font-size: 0.64rem;
}

.song-row .icon-button,
.library-row .icon-button {
  flex: 0 0 2.35rem;
}

.import-panel {
  display: grid;
  place-items: center;
  min-height: 9.8rem;
  padding: 1.15rem;
  border: 1px dashed rgba(205, 224, 255, 0.28);
  border-radius: 1.05rem;
  background: linear-gradient(180deg, rgba(16, 25, 40, 0.76), rgba(8, 14, 25, 0.72));
  text-align: center;
  cursor: pointer;
}

.import-panel input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.import-panel svg {
  width: 1.78rem;
  height: 1.78rem;
  margin-bottom: 0.58rem;
  color: var(--accent);
}

.import-panel strong {
  font-size: 1rem;
}

.import-panel span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.import-panel.is-dragover {
  border-color: var(--accent);
  background: rgba(36, 57, 91, 0.34);
}

.library-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.58rem;
  margin: 0.78rem 0 0.92rem;
}

.settings-form {
  display: grid;
  gap: 0.68rem;
}

.settings-form label,
.about-panel {
  display: grid;
  gap: 0.46rem;
  padding: 0.76rem;
  border: 1px solid var(--stroke);
  border-radius: 0.9rem;
  background: rgba(10, 16, 28, 0.64);
}

.settings-form label span {
  color: rgba(237, 245, 255, 0.84);
  font-size: 0.82rem;
}

.settings-form textarea,
.settings-form select,
.settings-form input[type="range"] {
  width: 100%;
  border: 1px solid rgba(205, 224, 255, 0.1);
  border-radius: 0.8rem;
  color: var(--text);
  background: rgba(4, 9, 17, 0.7);
  outline: none;
}

.settings-form textarea,
.settings-form select {
  padding: 0.62rem 0.72rem;
}

.settings-form textarea {
  resize: vertical;
  min-height: 4rem;
}

.settings-form input[type="range"] {
  accent-color: var(--accent-strong);
}

.switch-row {
  grid-template-columns: 1fr auto;
  gap: 0.78rem;
}

.switch-row input {
  width: 2.35rem;
  height: 1.35rem;
  accent-color: var(--accent-strong);
}

.about-panel {
  margin-top: 0.82rem;
  margin-bottom: 1.2rem;
}

.about-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.52;
}

.empty-state {
  padding: 1.3rem 0.4rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.tab-bar {
  position: fixed;
  left: 50%;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 0.8rem);
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
  width: min(calc(100% - 2.25rem), 24.4rem);
  padding: 0.42rem;
  transform: translateX(-50%);
  border: 1px solid var(--stroke);
  border-radius: 1.05rem;
  background: rgba(8, 10, 15, 0.9);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
}

.tab-button {
  display: grid;
  place-items: center;
  gap: 0.28rem;
  min-height: 3.35rem;
  border: 0;
  border-radius: 0.72rem;
  color: rgba(201, 207, 218, 0.62);
  background: transparent;
  cursor: pointer;
}

.tab-button.is-active {
  color: #f3f7ff;
  background: rgba(235, 242, 255, 0.075);
}

.tab-button span {
  font-size: 0.73rem;
}

.tab-button svg {
  width: 1.42rem;
  height: 1.42rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 6.4rem);
  z-index: 40;
  max-width: min(22rem, calc(100% - 2rem));
  padding: 0.75rem 1rem;
  transform: translateX(-50%) translateY(1rem);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  color: var(--text);
  background: rgba(10, 16, 28, 0.92);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  font-size: 0.85rem;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 720px) {
  .app-shell {
    width: min(100%, 29rem);
    padding-top: 2.2rem;
  }

  .matrix-title {
    font-size: 2.52rem;
  }

  .script-scroll {
    height: 11.5rem;
  }
}

@media (max-height: 760px) {
  .app-shell {
    padding-top: calc(env(safe-area-inset-top, 0px) + 1rem);
  }

  .radio-header {
    gap: 0.5rem;
  }

  .on-air {
    min-height: 2rem;
    font-size: 0.66rem;
  }

  .voice-pill {
    min-width: 7.5rem;
    min-height: 2rem;
  }

  .voice-pill span,
  .voice-pill select {
    font-size: 0.68rem;
  }

  .brand-block {
    margin-top: 0.88rem;
  }

  .matrix-title {
    font-size: 1.82rem;
  }

  .signal-line {
    width: 5.1rem;
    margin-top: 0.58rem;
  }

  .script-panel {
    margin-top: 1.12rem;
  }

  .script-meta {
    font-size: 0.72rem;
  }

  #queueHint {
    font-size: 0.68rem;
  }

  .script-scroll {
    height: 6.35rem;
    margin-top: 0.58rem;
    font-size: 0.92rem;
    line-height: 1.66;
    mask-image: linear-gradient(to bottom, transparent 0, #000 0.68rem, #000 5.7rem, transparent 100%);
  }

  .script-scroll p {
    margin-bottom: 0.62rem;
  }

  .tuner-panel {
    gap: 0.72rem;
    margin-top: 0.72rem;
  }

  .frequency span:first-child {
    font-size: 0.76rem;
  }

  .frequency strong {
    font-size: 1.58rem;
  }

  .dial-scale {
    height: 1.78rem;
    margin-top: 0.32rem;
  }

  .dial-scale i {
    height: 0.42rem;
  }

  .dial-scale i.major {
    height: 1rem;
  }

  .dial-scale span {
    font-size: 0.72rem;
  }

  .now-card {
    grid-template-columns: minmax(0, 1fr) 1.8rem;
    padding: 0.62rem 0.66rem 0.58rem;
    border-radius: 0.88rem;
  }

  .now-card strong {
    font-size: 0.9rem;
  }

  .now-card span {
    margin-top: 0.22rem;
    font-size: 0.68rem;
  }

  .waveform {
    height: 0.92rem;
    margin-top: 0.24rem;
  }

  .time-row {
    font-size: 0.62rem;
  }

  .transport {
    margin-top: 0.48rem;
  }

  .icon-button {
    width: 2.3rem;
    height: 2.3rem;
  }

  .play-button {
    width: 3.22rem;
    height: 3.22rem;
  }

  .play-button svg {
    width: 1.45rem;
    height: 1.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
