:root {
  color-scheme: dark;
  --accent: #ff174f;
  --accent-soft: rgba(255, 23, 79, 0.22);
  --bg: #07080a;
  --surface: #0c0f12;
  --surface-strong: #11161b;
  --text: #f8faf8;
  --muted: rgba(248, 250, 248, 0.68);
  --faint: rgba(248, 250, 248, 0.42);
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(255, 23, 79, 0.88);
  outline-offset: 2px;
}

svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

path {
  vector-effect: non-scaling-stroke;
}

.stress-app {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 58px minmax(0, 1fr) 38px;
  background:
    linear-gradient(180deg, rgba(255, 23, 79, 0.08), transparent 220px),
    var(--bg);
}

.stress-topbar,
.stress-footer {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding-inline: max(16px, env(safe-area-inset-left));
}

.stress-topbar {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stress-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.stress-brand img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
}

.stress-brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stress-status,
.stress-footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.stress-status span:first-child {
  height: 24px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 0 9px;
  font-size: 11px;
  font-weight: 950;
}

.stress-status span:last-child,
.stress-footer span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stress-stage {
  min-height: 0;
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 14px max(14px, env(safe-area-inset-left));
}

.stress-footer {
  height: 38px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.player-shell {
  --player-overlay-controls-space: 104px;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #030405;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
}

.player-controller,
.player-controller video {
  width: 100%;
  height: 100%;
}

.player-controller {
  position: relative;
  display: block;
  background: #030405;
  color: var(--text);
  isolation: isolate;
}

.player-controller video {
  display: block;
  object-fit: contain;
  background: #030405;
}

.player-shell.is-audio-only .player-controller video {
  opacity: 0;
  visibility: hidden;
}

.player-audio-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 42px);
  padding: clamp(24px, 6vw, 74px);
  background:
    radial-gradient(circle at 52% 38%, rgba(255, 23, 79, 0.24), transparent 35%),
    linear-gradient(135deg, #15191e, #07080a);
  overflow: hidden;
}

.player-shell.is-audio-only .player-audio-visual {
  display: flex;
}

.player-audio-visual::before,
.player-audio-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.player-audio-visual::before {
  width: min(64vw, 620px);
  aspect-ratio: 1;
  box-shadow: inset 0 0 90px rgba(255, 23, 79, 0.16);
}

.player-audio-visual::after {
  width: min(38vw, 360px);
  aspect-ratio: 1;
  border-color: rgba(255, 23, 79, 0.28);
}

.player-audio-mark {
  position: relative;
  z-index: 1;
  width: clamp(70px, 11vw, 132px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(7, 8, 9, 0.72);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 0 12px rgba(255, 23, 79, 0.12);
}

.player-audio-mark img {
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.player-audio-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  min-width: 0;
}

.player-audio-copy span {
  color: #ff8aa7;
  font-size: clamp(11px, 1.5vw, 14px);
  font-weight: 950;
  letter-spacing: 0.12em;
}

.player-audio-copy strong {
  max-width: min(44vw, 520px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(28px, 5vw, 72px);
  line-height: 0.95;
}

.player-audio-copy em {
  max-width: min(52vw, 620px);
  color: rgba(247, 255, 245, 0.76);
  font-size: clamp(13px, 1.7vw, 18px);
  font-style: normal;
  font-weight: 750;
  line-height: 1.35;
}

.player-audio-bars {
  position: relative;
  z-index: 1;
  height: clamp(42px, 8vw, 92px);
  display: flex;
  align-items: center;
  gap: 7px;
}

.player-audio-bars i {
  width: clamp(4px, 0.7vw, 8px);
  height: 34%;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 22px rgba(255, 23, 79, 0.34);
  animation: audioPulse 1.1s ease-in-out infinite;
}

.player-audio-bars i:nth-child(2) {
  animation-delay: -0.18s;
}

.player-audio-bars i:nth-child(3) {
  animation-delay: -0.36s;
}

.player-audio-bars i:nth-child(4) {
  animation-delay: -0.54s;
}

.player-audio-bars i:nth-child(5) {
  animation-delay: -0.72s;
}

@keyframes audioPulse {
  0%,
  100% {
    transform: scaleY(0.42);
    opacity: 0.58;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.player-controller::before,
.player-controller::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.player-controller::before {
  top: 0;
  height: 112px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent);
}

.player-controller::after {
  bottom: 0;
  height: 170px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.34) 58%, transparent);
}

.player-top-chrome {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  pointer-events: none;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
}

.player-live-chip,
.player-quality-chip {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 6, 7, 0.64);
  color: rgba(247, 255, 245, 0.94);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.player-live-chip {
  background: rgba(255, 23, 79, 0.96);
  color: #fff;
}

.player-live-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.player-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.14s ease,
    transform 0.14s ease;
}

.player-shell.is-buffering .player-loader {
  opacity: 1;
  transform: scale(1);
}

.player-loader::before {
  content: "";
  width: 46px;
  height: 46px;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-top-color: var(--accent);
  border-right-color: var(--accent);
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(0, 0, 0, 0.18),
    0 16px 42px rgba(0, 0, 0, 0.5);
  animation: playerLoaderSpin 0.78s linear infinite;
}

@keyframes playerLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.player-start-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(6, 8, 9, 0.72);
  color: #fff;
  display: grid;
  place-items: center;
  padding: 0;
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(18px);
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.58),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    background 0.16s ease,
    color 0.16s ease;
}

.player-start-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid currentColor;
}

.player-start-button:hover,
.player-start-button:focus-visible {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1);
}

.player-shell.is-paused .player-start-button {
  opacity: 1;
  pointer-events: auto;
}

.player-shell.is-playing .player-start-button,
.player-shell.is-buffering .player-start-button {
  opacity: 0;
  pointer-events: none;
}

.player-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-rows: auto auto;
  align-content: end;
  gap: 11px;
  padding: 28px 16px 13px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.46) 35%, rgba(0, 0, 0, 0.88));
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
}

.player-shell:hover .player-controls,
.player-shell:focus-within .player-controls,
.player-shell.is-paused .player-controls,
.player-shell:not(.controls-idle) .player-controls {
  opacity: 1;
  transform: translateY(0);
}

.player-shell.controls-idle .player-top-chrome,
.player-shell.fullscreen-controls-idle .player-top-chrome {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}

.player-shell.controls-idle .player-controls,
.player-shell.fullscreen-controls-idle .player-controls {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
}

.player-shell.controls-idle .player-controller::before,
.player-shell.controls-idle .player-controller::after,
.player-shell.fullscreen-controls-idle .player-controller::before,
.player-shell.fullscreen-controls-idle .player-controller::after {
  opacity: 0;
}

.player-shell.has-player-overlay .player-controls,
.player-shell.has-player-overlay.controls-idle .player-controls,
.player-shell.has-player-overlay.fullscreen-controls-idle .player-controls {
  z-index: 7;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.player-shell.has-player-overlay .player-controller video {
  opacity: 0;
}

.player-progress-row {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 14px;
  display: flex;
  align-items: center;
}

.player-timeline {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: 14px;
  display: flex;
  align-items: center;
}

.player-timeline-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-50%);
}

.player-timeline-track span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.player-dvr-scrubber {
  --dvr-progress: 100%;
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 14px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
}

.player-dvr-scrubber::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent) 0 var(--dvr-progress), rgba(255, 255, 255, 0.24) var(--dvr-progress) 100%);
}

.player-dvr-scrubber::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border: 2px solid #08090a;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 2px rgba(255, 23, 79, 0.75),
    0 4px 12px rgba(0, 0, 0, 0.35);
}

.player-dvr-scrubber::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.player-dvr-scrubber::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.player-dvr-scrubber::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 2px solid #08090a;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 2px rgba(255, 23, 79, 0.75),
    0 4px 12px rgba(0, 0, 0, 0.35);
}

.player-shell.is-at-live .player-timeline-track,
.player-shell.is-at-live .player-dvr-scrubber::-webkit-slider-runnable-track {
  background: var(--accent);
}

.player-shell.is-at-live .player-dvr-scrubber::-webkit-slider-thumb,
.player-shell.is-at-live .player-dvr-scrubber::-moz-range-thumb {
  opacity: 0;
  transform: scale(0.72);
}

.player-live-offset,
.player-preview-time {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  letter-spacing: 0;
}

.player-live-offset {
  min-width: 42px;
  color: rgba(247, 255, 245, 0.72);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
}

.player-live-offset[hidden],
.player-preview-time[hidden] {
  display: none;
}

.player-preview-time {
  min-width: 48px;
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: calc(100% + 8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(9, 11, 12, 0.94);
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  transform: translateX(-50%);
}

.player-control-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}

.player-left-controls,
.player-right-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.player-right-controls {
  justify-content: flex-end;
}

.player-icon-button {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(247, 255, 245, 0.9);
  padding: 0;
}

.player-icon-button:hover,
.player-icon-button:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.player-live-status {
  min-width: 72px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 23, 79, 0.92);
  border-radius: 999px;
  background: rgba(255, 23, 79, 0.96);
  color: #fff;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 8px 22px rgba(255, 23, 79, 0.2);
  user-select: none;
}

.player-live-status:hover,
.player-live-status:focus-visible {
  background: var(--accent);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 10px 28px rgba(255, 23, 79, 0.34);
}

.player-live-status.is-behind {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(247, 255, 245, 0.78);
  box-shadow: none;
}

.player-live-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.player-quality-picker {
  position: relative;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.player-quality-button {
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(247, 255, 245, 0.84);
  padding: 0 7px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  transition:
    background 0.14s ease,
    color 0.14s ease;
}

.player-quality-button::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.58;
  transform: rotate(45deg) translateY(-1px);
}

.player-quality-button:hover,
.player-quality-button[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.player-quality-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 40;
  width: 188px;
  max-height: min(320px, calc(100dvh - 150px));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(9, 11, 12, 0.94);
  padding: 4px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}

.player-quality-menu:not(.open) {
  display: none;
}

.player-quality-menu button {
  width: 100%;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: rgba(247, 255, 245, 0.82);
  padding: 6px 8px;
}

.player-quality-menu button:hover,
.player-quality-menu button.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.player-quality-menu button.active strong {
  color: #ff8aa7;
}

.player-quality-menu strong {
  flex: 0 0 auto;
  line-height: 1;
}

.player-quality-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  color: rgba(247, 255, 245, 0.58);
  text-align: right;
  line-height: 1;
  font-weight: 850;
}

.player-quality-meta span,
.player-quality-meta em {
  display: block;
  white-space: nowrap;
}

.player-quality-meta span {
  font-size: 11px;
}

.player-quality-meta em {
  color: rgba(247, 255, 245, 0.42);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.player-volume-range {
  width: 118px;
  height: 40px;
  flex: 0 0 auto;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.player-volume-range::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0 var(--volume-fill, 82%), rgba(255, 255, 255, 0.26) var(--volume-fill, 82%) 100%);
}

.player-volume-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 23, 79, 0.15);
}

.player-volume-range::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.player-volume-range::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.player-volume-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 23, 79, 0.15);
}

.player-offline {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.82)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.86));
  pointer-events: none;
  z-index: 5;
}

.player-shell.has-player-overlay .player-offline {
  bottom: var(--player-overlay-controls-space);
  z-index: 2;
}

.player-offline[hidden] {
  display: none;
}

.player-offline > div {
  max-width: 520px;
  display: grid;
  gap: 8px;
  justify-items: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9);
}

.player-offline span {
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 950;
}

.player-offline strong {
  font-size: clamp(24px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

.player-offline p {
  margin: 0;
  color: rgba(245, 248, 246, 0.78);
  font-weight: 800;
}

noscript {
  position: fixed;
  inset: auto 16px 16px;
  z-index: 20;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(9, 11, 12, 0.94);
  color: #fff;
}

@media (max-width: 760px) {
  .stress-app {
    grid-template-rows: 52px minmax(0, 1fr) 34px;
  }

  .stress-topbar {
    height: 52px;
  }

  .stress-stage {
    padding: 0;
  }

  .player-shell {
    min-height: 0;
    border-inline: 0;
    border-radius: 0;
  }

  .player-controls {
    padding: 26px 10px 10px;
  }

  .player-control-row {
    gap: 8px;
  }

  .player-left-controls,
  .player-right-controls {
    gap: 4px;
  }

  .player-volume-range,
  .player-pip-toggle {
    display: none;
  }

  .player-icon-button {
    width: 36px;
    height: 36px;
  }

  .player-live-status {
    min-width: 64px;
    padding-inline: 8px;
  }

  .stress-footer span:last-child,
  .stress-status span:last-child {
    display: none;
  }
}

@media (max-width: 460px) {
  .stress-brand span {
    max-width: 150px;
  }

  .player-quality-menu {
    right: -88px;
    width: min(188px, calc(100vw - 24px));
  }

  .player-audio-visual {
    flex-direction: column;
    text-align: center;
  }

  .player-audio-copy strong,
  .player-audio-copy em {
    max-width: calc(100vw - 64px);
  }
}
