.project-native-player {
  position: relative;
  isolation: isolate;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.project-native-player::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.16) 48%, rgba(0, 0, 0, 0.42)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.38));
  opacity: 0;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-native-player.is-paused-idle::before {
  opacity: 1;
}

.project-native-player__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  opacity: 1;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-native-player__poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: #000;
  background-image: var(--native-poster);
  background-position: center;
  background-size: cover;
  pointer-events: none;
  opacity: 1;
  transform: scale(1.01);
  overflow: hidden;
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-native-player__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  mix-blend-mode: soft-light;
  opacity: 0.12;
}

@media (max-width: 720px) {
  .project-native-player__poster {
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.project-native-player.has-played .project-native-player__poster,
.project-native-player.is-playing .project-native-player__poster {
  opacity: 0;
  transform: scale(1.035);
}

.project-native-player.is-loading .project-native-player__poster {
  opacity: 1;
  transform: scale(1.01);
}

.project-native-player.is-loading .project-native-player__info,
.project-native-player.is-loading .project-native-player__controls {
  opacity: 0;
  pointer-events: none;
}

.project-native-player__loader {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.project-native-player.is-loading .project-native-player__loader {
  opacity: 1;
}

.project-native-player__loader::before {
  content: "";
  width: clamp(34px, 3.6vw, 48px);
  height: clamp(34px, 3.6vw, 48px);
  border: 3px solid rgba(229, 9, 20, 0.2);
  border-top-color: #e50914;
  border-radius: 999px;
  animation: project-native-spin 860ms linear infinite;
}

.project-native-player__unmute {
  position: absolute;
  top: 50%;
  right: clamp(22px, 3.3vw, 52px);
  z-index: 9;
  display: grid;
  place-items: center;
  width: clamp(48px, 4.8vw, 64px);
  height: clamp(48px, 4.8vw, 64px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.42);
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -50%, 0) scale(0.94);
  transition:
    opacity 240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease,
    border-color 180ms ease;
}

.project-native-player__unmute:hover,
.project-native-player__unmute:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(18, 18, 18, 0.6);
  transform: translate3d(0, -50%, 0) scale(1);
}

.project-native-player.is-autoplay-muted .project-native-player__unmute {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0) scale(1);
}

.project-native-player__unmute span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.project-native-player__unmute::before {
  content: "";
  width: 28px;
  height: 28px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.35'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M11%205%206%209H2v6h4l5%204V5z'/%3E%3Cpath%20d='M15.54%208.46a5%205%200%200%201%200%207.07'/%3E%3Cpath%20d='M19.07%204.93a10%2010%200%200%201%200%2014.14'/%3E%3Cpath%20d='M4%2020%2020%204'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.35'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M11%205%206%209H2v6h4l5%204V5z'/%3E%3Cpath%20d='M15.54%208.46a5%205%200%200%201%200%207.07'/%3E%3Cpath%20d='M19.07%204.93a10%2010%200%200%201%200%2014.14'/%3E%3Cpath%20d='M4%2020%2020%204'/%3E%3C/svg%3E") center / contain no-repeat;
}

@keyframes project-native-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes project-native-next-sweep {
  0% {
    transform: translate3d(-112%, 0, 0);
  }

  100% {
    transform: translate3d(112%, 0, 0);
  }
}

.project-native-player::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 48%;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.22) 30%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(circle at 50% 100%, rgba(229, 9, 20, 0.08), transparent 48%);
  opacity: 1;
  transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-native-player.is-playing:not(.is-user-active)::after {
  opacity: 0;
}

.project-native-player__center {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: opacity 340ms cubic-bezier(0.22, 1, 0.36, 1), transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-native-player.has-played:not(.is-center-feedback) .project-native-player__center,
.project-native-player.is-playing:not(.is-center-feedback) .project-native-player__center {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
}

.project-native-player:not(.has-played):not(.is-center-feedback) .project-native-player__center {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
}

.project-native-player.is-center-feedback .project-native-player__center {
  opacity: 1;
  pointer-events: none;
  transform: scale(1);
}

.project-native-player__center span {
  position: relative;
  width: clamp(56px, 5.8vw, 82px);
  height: clamp(56px, 5.8vw, 82px);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.44),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), background 260ms ease;
}

.project-native-player__center:hover span {
  background: rgba(0, 0, 0, 0.58);
  transform: scale(1.04);
}

.project-native-player__center span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: clamp(17px, 1.7vw, 22px) solid transparent;
  border-bottom: clamp(17px, 1.7vw, 22px) solid transparent;
  border-left: clamp(26px, 2.4vw, 35px) solid rgba(255, 255, 255, 0.96);
  filter: drop-shadow(0 7px 18px rgba(0, 0, 0, 0.46));
  transform: translate(-34%, -50%);
}

.project-native-player[data-center-feedback="pause"] .project-native-player__center span::before {
  width: clamp(18px, 1.6vw, 24px);
  height: clamp(24px, 2.1vw, 31px);
  border: 0;
  background: linear-gradient(90deg, #fff 0 34%, transparent 34% 66%, #fff 66% 100%);
  transform: translate(-50%, -50%);
}

.project-native-player__info {
  position: absolute;
  top: 50%;
  bottom: auto;
  left: clamp(34px, 8.2vw, 170px);
  z-index: 3;
  display: grid;
  justify-items: start;
  width: min(620px, 42vw);
  max-width: none;
  color: #fff;
  pointer-events: none;
  text-align: left;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.74);
  opacity: 0;
  transform: translate3d(0, calc(-50% + 10px), 0);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-native-player.is-paused-idle .project-native-player__info {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

.project-native-player__info p,
.project-native-player__info h1,
.project-native-player__info h2,
.project-native-player__info em,
.project-native-player__info small {
  margin: 0;
}

.project-native-player__info p {
  margin-bottom: 8px;
  color: rgba(245, 245, 242, 0.72);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(0.86rem, 1.2vw, 1.08rem);
  font-weight: 700;
  line-height: 1.1;
}

.project-native-player__info span {
  margin-bottom: 6px;
  color: #e50914;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Helvetica Neue Condensed Black", sans-serif;
  font-size: clamp(0.75rem, 0.9vw, 0.98rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.project-native-player__info h1,
.project-native-player__info h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Helvetica Neue Condensed Black", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-native-player__info h1 {
  font-size: clamp(2.55rem, 5.1vw, 6.15rem);
  line-height: 0.9;
  max-width: 11.5ch;
}

.project-native-player__episode {
  display: block;
  margin-top: 9px;
  color: rgba(245, 245, 242, 0.84);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(0.88rem, 1.14vw, 1.16rem);
  font-style: normal;
  font-weight: 760;
  line-height: 1.1;
}

.project-native-player__info h2 {
  margin-top: 8px;
  font-size: clamp(1.15rem, 2vw, 2.1rem);
  line-height: 1.05;
}

.project-native-player__info small {
  display: block;
  margin-top: 6px;
  color: rgba(245, 245, 242, 0.72);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Helvetica Neue Condensed Black", sans-serif;
  font-size: clamp(0.78rem, 0.95vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.project-native-player__info h1 + small {
  margin-top: 14px;
}

.project-native-player__top-title {
  position: absolute;
  top: clamp(22px, 2.7vw, 46px);
  left: clamp(38px, 4.6vw, 78px);
  z-index: 4;
  display: grid;
  gap: 4px;
  max-width: min(540px, 45vw);
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, -6px, 0);
  transition:
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-native-player.is-loading .project-native-player__top-title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.project-native-player.has-played:not(.is-loading) .project-native-player__top-title,
.project-native-player.is-playing:not(.is-loading) .project-native-player__top-title,
.project-native-player.is-playing:not(.is-user-active) .project-native-player__top-title,
.project-native-player.is-paused-idle .project-native-player__top-title {
  opacity: 0;
  transform: translate3d(0, -6px, 0);
}

.project-native-player__top-title strong {
  display: block;
  overflow: hidden;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.28vw, 1.35rem);
  font-weight: 800;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-native-player__top-title span {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.78rem, 0.86vw, 0.92rem);
  font-weight: 650;
  line-height: 1.1;
}

.project-native-player__controls {
  position: absolute;
  right: clamp(16px, 2.2vw, 30px);
  bottom: clamp(15px, 2vw, 26px);
  left: clamp(16px, 2.2vw, 30px);
  z-index: 12;
  display: grid;
  grid-template-columns: 36px 36px 36px minmax(0, 1fr) auto 32px 36px 36px;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  padding: 9px 10px;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.1), rgba(12, 12, 12, 0.24));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  opacity: 1;
  transition: opacity 280ms cubic-bezier(0.22, 1, 0.36, 1), transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-native-player.is-playing:not(.is-user-active) .project-native-player__controls {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  pointer-events: none;
}

.project-native-player.is-paused-idle .project-native-player__controls {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  pointer-events: none;
}

.project-native-player:not(.has-played) .project-native-player__controls {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  pointer-events: none;
}

.project-native-player.is-ending-soon .project-native-player__controls {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
  pointer-events: auto !important;
}

.project-native-player__button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  opacity: 0.96;
  transition: opacity 180ms ease, transform 180ms ease;
}

.project-native-player__button:hover,
.project-native-player__button:focus-visible {
  opacity: 1;
  transform: scale(1.05);
}

.project-native-player__play {
  grid-column: 1;
}

.project-native-player__skip[data-skip="-10"] {
  grid-column: 2;
}

.project-native-player__skip[data-skip="10"] {
  grid-column: 3;
}

.project-native-player__progress-label {
  grid-column: 4;
}

.project-native-player__time {
  grid-column: 5;
  justify-self: end;
  margin-right: -6px;
}

.project-native-player__mute {
  grid-column: 7;
  justify-self: end;
  margin-right: -3px;
}

.project-native-player__fullscreen {
  grid-column: 8;
  justify-self: start;
}

.project-native-player__next {
  grid-column: 6;
  justify-self: end;
  margin-left: 4px;
  margin-right: -12px;
}

.project-native-player__play span {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
  transform: translateX(1px);
}

.project-native-player__skip span {
  position: relative;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1;
  padding-top: 1px;
  padding-left: 1px;
}

.project-native-player__skip span::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: currentColor;
  opacity: 0.98;
}

.project-native-player__skip[data-skip="-10"] span::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2048%2048'%20fill='none'%20stroke='black'%20stroke-width='4.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M17%2014h-9v-9'/%3E%3Cpath%20d='M9%2014A17%2017%200%201%201%207.9%2035.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2048%2048'%20fill='none'%20stroke='black'%20stroke-width='4.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M17%2014h-9v-9'/%3E%3Cpath%20d='M9%2014A17%2017%200%201%201%207.9%2035.5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.project-native-player__skip[data-skip="10"] span::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2048%2048'%20fill='none'%20stroke='black'%20stroke-width='4.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M31%2014h9v-9'/%3E%3Cpath%20d='M39%2014A17%2017%200%201%200%2040.1%2035.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2048%2048'%20fill='none'%20stroke='black'%20stroke-width='4.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M31%2014h9v-9'/%3E%3Cpath%20d='M39%2014A17%2017%200%201%200%2040.1%2035.5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.project-native-player__skip[data-skip="-10"] span {
  padding-right: 3px;
  padding-left: 0;
}

.project-native-player__skip[data-skip="10"] span {
  padding-right: 1px;
  padding-left: 0;
  text-indent: 3px;
}

.project-native-player.is-playing .project-native-player__play span {
  width: 13px;
  height: 17px;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 35%, transparent 35% 65%, currentColor 65% 100%);
  transform: none;
}

.project-native-player__next span,
.project-native-player__mute span,
.project-native-player__fullscreen span {
  display: block;
  width: 22px;
  height: 22px;
}

.project-native-player__next span {
  position: relative;
  width: 22px;
  height: 22px;
}

.project-native-player__next span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
  transform: translateY(-50%);
}

.project-native-player__next span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3px;
  width: 3px;
  height: 17px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
}

.project-native-player__mute span {
  position: relative;
  width: 25px;
  height: 25px;
  border: 0;
}

.project-native-player__mute span::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.4'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M11%205%206%209H2v6h4l5%204V5z'/%3E%3Cpath%20d='M15.54%208.46a5%205%200%200%201%200%207.07'/%3E%3Cpath%20d='M19.07%204.93a10%2010%200%200%201%200%2014.14'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.4'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M11%205%206%209H2v6h4l5%204V5z'/%3E%3Cpath%20d='M15.54%208.46a5%205%200%200%201%200%207.07'/%3E%3Cpath%20d='M19.07%204.93a10%2010%200%200%201%200%2014.14'/%3E%3C/svg%3E") center / contain no-repeat;
}

.project-native-player__mute span::after {
  content: none;
}

.project-native-player.is-muted .project-native-player__mute span::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M11%205%206%209H2v6h4l5%204V5z'/%3E%3Cpath%20d='m23%209-6%206'/%3E%3Cpath%20d='m17%209%206%206'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M11%205%206%209H2v6h4l5%204V5z'/%3E%3Cpath%20d='m23%209-6%206'/%3E%3Cpath%20d='m17%209%206%206'/%3E%3C/svg%3E");
}

.project-native-player.is-muted .project-native-player__mute::after {
  content: none;
}

.project-native-player__fullscreen span {
  position: relative;
  width: 22px;
  height: 22px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.35'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M8%203H3v5'/%3E%3Cpath%20d='M3%203l6%206'/%3E%3Cpath%20d='M16%203h5v5'/%3E%3Cpath%20d='M21%203l-6%206'/%3E%3Cpath%20d='M8%2021H3v-5'/%3E%3Cpath%20d='M3%2021l6-6'/%3E%3Cpath%20d='M16%2021h5v-5'/%3E%3Cpath%20d='M21%2021l-6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.35'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M8%203H3v5'/%3E%3Cpath%20d='M3%203l6%206'/%3E%3Cpath%20d='M16%203h5v5'/%3E%3Cpath%20d='M21%203l-6%206'/%3E%3Cpath%20d='M8%2021H3v-5'/%3E%3Cpath%20d='M3%2021l6-6'/%3E%3Cpath%20d='M16%2021h5v-5'/%3E%3Cpath%20d='M21%2021l-6-6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.project-native-player__time,
.project-native-player__duration {
  color: rgba(245, 245, 242, 0.95);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.54);
}

.project-native-player__duration {
  display: none;
}

.project-native-player__now {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: min(680px, 46vw);
  color: rgba(255, 255, 255, 0.92);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(0.82rem, 1vw, 1rem);
  line-height: 1.18;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-50%);
  opacity: 0.92;
  transition: opacity 220ms ease;
}

.project-native-player.is-paused-idle .project-native-player__now {
  opacity: 0;
}

.project-native-player__now strong {
  overflow: hidden;
  font-weight: 800;
  line-height: 1.18;
  text-overflow: ellipsis;
}

.project-native-player__now small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86em;
  font-weight: 760;
  line-height: 1.18;
}

.project-native-player__now span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  line-height: 1.18;
}

.project-native-player__progress-label {
  display: block;
  min-width: 0;
}

.project-native-player__playlist {
  display: none;
}

.project-native-player .project-detail__up-next.project-native-player__up-next-card {
  position: absolute;
  right: clamp(12px, 1.6vw, 28px);
  bottom: clamp(82px, 7.2vw, 126px);
  z-index: 13;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(245, 245, 242, 0.76);
  text-decoration: none;
  opacity: 0;
  transform: translate3d(14px, 0, 0);
  pointer-events: none;
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-native-player .project-detail__up-next.project-native-player__up-next-card .project-detail__up-next-inner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 24px minmax(0, 132px) 48px;
  grid-template-areas: "play copy thumb";
  align-items: center;
  gap: 10px;
  width: 248px;
  padding: 9px 7px 8px 12px;
  border-radius: 0;
  background: rgba(7, 7, 7, 0.68);
  box-shadow:
    inset 3px 0 0 #e50914,
    0 0 0 1px rgba(245, 245, 242, 0.08),
    0 0 0 rgba(229, 9, 20, 0);
  color: rgba(245, 245, 242, 0.76);
  cursor: pointer;
  pointer-events: auto;
  transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.project-native-player .project-detail__up-next.project-native-player__up-next-card .project-detail__up-next-inner::after {
  content: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(229, 9, 20, 0.1) 24%,
    rgba(229, 9, 20, 0.34) 48%,
    rgba(229, 9, 20, 0.28) 53%,
    rgba(229, 9, 20, 0.16) 68%,
    transparent 100%
  );
  opacity: 0;
  transform: translate3d(-115%, 0, 0);
}

.project-native-player .project-detail__up-next.project-native-player__up-next-card .project-detail__up-next-play {
  grid-area: play;
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid rgba(245, 245, 242, 0.9);
}

.project-native-player .project-detail__up-next.project-native-player__up-next-card .project-detail__up-next-copy {
  grid-area: copy;
  position: relative;
  z-index: 1;
  align-self: center;
  display: grid;
  gap: 3px;
  min-width: 0;
  transform: translateY(1px);
}

.project-native-player .project-detail__up-next.project-native-player__up-next-card .project-detail__up-next-copy span,
.project-native-player .project-detail__up-next.project-native-player__up-next-card .project-detail__up-next-copy strong {
  display: block;
  overflow: hidden;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Helvetica Neue Condensed Black", sans-serif;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-native-player .project-detail__up-next.project-native-player__up-next-card .project-detail__up-next-copy span {
  color: #e50914;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
}

.project-native-player .project-detail__up-next.project-native-player__up-next-card .project-detail__up-next-copy strong {
  color: rgba(245, 245, 242, 0.78);
  font-size: 0.68rem;
  letter-spacing: -0.018em;
  line-height: 0.98;
}

.project-native-player .project-detail__up-next.project-native-player__up-next-card .project-detail__up-next-thumb {
  grid-area: thumb;
  position: relative;
  z-index: 2;
  display: block;
  flex: 0 0 48px;
  width: 48px;
  min-width: 48px;
  max-width: 48px;
  height: 27px;
  min-height: 27px;
  max-height: 27px;
  aspect-ratio: 16 / 9;
  background-image: var(--up-next-poster);
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 0 1px rgba(245, 245, 242, 0.12);
  transform: none;
  transition: none;
}

.project-native-player .project-detail__up-next.project-native-player__up-next-card:hover .project-detail__up-next-inner,
.project-native-player .project-detail__up-next.project-native-player__up-next-card:focus-visible .project-detail__up-next-inner {
  background: rgba(12, 12, 12, 0.82);
  box-shadow:
    inset 3px 0 0 #e50914,
    0 0 0 1px rgba(245, 245, 242, 0.08),
    0 0 0 rgba(229, 9, 20, 0);
}

.project-native-player .project-detail__up-next.project-native-player__up-next-card:hover .project-detail__up-next-play,
.project-native-player .project-detail__up-next.project-native-player__up-next-card:focus-visible .project-detail__up-next-play {
  border-left-color: #fff;
}

.project-native-player .project-detail__up-next.project-native-player__up-next-card:hover .project-detail__up-next-copy strong,
.project-native-player .project-detail__up-next.project-native-player__up-next-card:focus-visible .project-detail__up-next-copy strong {
  color: #fff;
}

.project-detail-native-theater .project-native-player:not(.is-ending-soon) .project-detail__up-next.project-native-player__up-next-card {
  opacity: 0 !important;
  pointer-events: none !important;
}

.project-native-player.is-ending-soon .project-detail__up-next.project-native-player__up-next-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.project-native-player.is-ending-soon .project-detail__up-next.project-native-player__up-next-card .project-detail__up-next-inner::after {
  content: "";
  display: block;
  animation: project-up-next-sweep 5.2s linear infinite;
}

@keyframes project-up-next-sweep {
  0% {
    opacity: 0.72;
    transform: translate3d(-120%, 0, 0);
  }

  48% {
    opacity: 0.9;
    transform: translate3d(18%, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(124%, 0, 0);
  }
}

.project-native-player__next-up {
  position: absolute;
  right: clamp(28px, 4vw, 72px);
  bottom: clamp(98px, 8.5vw, 148px);
  z-index: 5;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 68px;
  align-items: center;
  width: min(280px, 22vw);
  min-height: 50px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid #e50914;
  background: rgba(8, 8, 8, 0.48);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translate3d(14px, 0, 0);
  backdrop-filter: blur(18px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms ease,
    background 240ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-native-player__next-up::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, transparent 0%, rgba(229, 9, 20, 0.08) 30%, rgba(229, 9, 20, 0.54) 50%, rgba(229, 9, 20, 0.08) 70%, transparent 100%);
  opacity: 0;
  transform: translate3d(-112%, 0, 0);
  pointer-events: none;
}

.project-native-player__next-up > span {
  position: relative;
  z-index: 2;
}

.project-native-player.is-ending-soon .project-native-player__next-up {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.project-native-player__next-up:hover,
.project-native-player__next-up:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  border-left-color: #e50914;
  background: rgba(10, 10, 10, 0.68);
  transform: translate3d(0, -1px, 0);
}

.project-native-player__next-up:hover::before,
.project-native-player__next-up:focus-visible::before {
  opacity: 1;
  animation: project-native-next-sweep 5.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.project-native-player__next-up-play {
  position: relative;
  width: 42px;
  height: 100%;
}

.project-native-player__next-up-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid rgba(255, 255, 255, 0.94);
  transform: translate(-50%, -50%);
}

.project-native-player__next-up-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
  padding: 7px 8px 7px 2px;
}

.project-native-player__next-up-copy small {
  color: rgba(245, 245, 242, 0.64);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Helvetica Neue Condensed Black", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.project-native-player__next-up-copy span {
  color: #e50914;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Helvetica Neue Condensed Black", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.project-native-player__next-up-copy strong {
  overflow: hidden;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Helvetica Neue Condensed Black", sans-serif;
  font-size: clamp(0.72rem, 0.88vw, 0.98rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-native-player__next-up-poster {
  align-self: stretch;
  min-height: 50px;
  background-image: var(--next-up-poster);
  background-position: center;
  background-size: cover;
}


.project-native-player__progress {
  --progress-value: 0%;
  --buffered-value: 0%;
  appearance: none;
  display: block;
  width: 100%;
  height: 20px;
  margin: 0;
  background: transparent;
  accent-color: #e50914;
  cursor: pointer;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.36));
}

.project-native-player__progress::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      #e50914 0 var(--progress-value),
      rgba(255, 255, 255, 0.62) var(--progress-value) var(--buffered-value),
      rgba(255, 255, 255, 0.3) var(--buffered-value) 100%
    );
  box-shadow:
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.1),
    0 0 18px rgba(0, 0, 0, 0.32);
}

.project-native-player__progress::-webkit-slider-thumb {
  appearance: none;
  width: 15px;
  height: 15px;
  margin-top: -5px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.16),
    0 3px 14px rgba(0, 0, 0, 0.52);
}

.project-native-player__progress::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.project-native-player__progress::-moz-range-progress {
  height: 5px;
  border-radius: 999px;
  background: #e50914;
}

.project-native-player__progress::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.16),
    0 3px 14px rgba(0, 0, 0, 0.52);
}

.project-native-player__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.project-detail-native-theater {
  overflow: hidden;
}

.project-detail-native-theater::before,
.project-detail-native-theater::after {
  display: none;
}

.project-detail-native-theater .project-detail__stage {
  display: block;
  width: 100vw;
  height: 100svh;
  min-height: 100svh;
  padding: 0;
  background: #000;
  overflow: hidden;
}

.project-detail-native-theater .project-detail__player {
  width: 100vw;
  height: 100svh;
  max-width: none;
  max-height: none;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
}

body.project-detail-native-theater .project-detail__close {
  position: fixed;
  top: clamp(14px, 2.2vw, 30px);
  left: clamp(16px, 2.4vw, 34px);
  right: auto;
  z-index: 40;
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0;
  line-height: 1;
  text-decoration: none;
  opacity: 1;
  transition:
    opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
    color 180ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.project-detail-native-theater .project-detail__close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: translate(-35%, -50%) rotate(45deg);
}

body.project-detail-native-theater .project-detail__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 3px;
  background: currentColor;
  transform: translate(-34%, -50%);
}

body.project-detail-native-theater .project-detail__close:hover {
  color: #fff;
}

body.project-detail-native-theater.is-native-player-chrome-hidden .project-detail__close,
body.project-detail-native-theater:has(.project-native-player.is-loading) .project-detail__close,
body.project-detail-native-theater:has(.project-native-player.is-playing:not(.is-user-active)) .project-detail__close,
body.project-detail-native-theater:has(.project-native-player.is-paused-idle) .project-detail__close {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate3d(-6px, 0, 0) !important;
  animation: none !important;
}

.project-detail-native-theater .project-detail__footer,
.project-detail-native-theater .site-legal-rail,
.project-detail-native-theater .project-detail__stage > .project-detail__up-next,
.project-detail-native-theater .project-detail__nav {
  display: none !important;
}

.project-detail-native-theater .project-native-player__controls {
  right: clamp(12px, 1.4vw, 28px);
  bottom: clamp(-2px, 0.42vw, 6px);
  left: clamp(12px, 1.4vw, 28px);
  grid-template-columns: 50px 50px 50px minmax(0, 1fr) auto 50px 50px 50px;
  grid-template-rows: 22px 50px;
  column-gap: clamp(5px, 0.5vw, 8px);
  row-gap: 14px;
  min-height: 72px;
  padding: 10px 0 8px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.project-detail-native-theater .project-native-player__play,
.project-detail-native-theater .project-native-player__skip,
.project-detail-native-theater .project-native-player__time,
.project-detail-native-theater .project-native-player__next,
.project-detail-native-theater .project-native-player__mute,
.project-detail-native-theater .project-native-player__fullscreen,
.project-detail-native-theater .project-native-player__now {
  grid-row: 2;
}

.project-detail-native-theater .project-native-player__progress-label {
  grid-column: 1 / -1;
  grid-row: 1;
}

.project-detail-native-theater .project-native-player__now {
  position: static;
  right: auto;
  bottom: auto;
  left: auto;
  display: flex;
  grid-column: 4;
  justify-self: center;
  max-width: min(520px, 38vw);
  transform: none;
}

.project-detail-native-theater .project-native-player::after {
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74));
}

.project-detail-native-theater .project-native-player__button {
  width: 50px;
  height: 50px;
}

.project-detail-native-theater .project-native-player__time {
  margin-right: -10px;
  font-size: 1.05rem;
}

.project-detail-native-theater .project-native-player__progress::-webkit-slider-runnable-track {
  height: 4px;
}

.project-detail-native-theater .project-native-player__progress::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -6px;
}

.project-detail-native-theater .project-native-player__play span {
  border-top-width: 13px;
  border-bottom-width: 13px;
  border-left-width: 21px;
}

.project-detail-native-theater .project-native-player.is-playing .project-native-player__play span {
  width: 18px;
  height: 24px;
}

.project-detail-native-theater .project-native-player__skip span {
  width: 34px;
  height: 34px;
  font-size: 0.72rem;
}

.project-detail-native-theater .project-native-player__skip span::before {
  inset: -2px;
}

.project-detail-native-theater .project-native-player__next span,
.project-detail-native-theater .project-native-player__fullscreen span {
  width: 30px;
  height: 30px;
}

.project-detail-native-theater .project-native-player__mute span {
  width: 33px;
  height: 33px;
}

@media (max-width: 720px) {
  .project-detail-native-theater .project-detail__stage {
    height: 100svh;
    min-height: 100svh;
    padding: 0;
  }

  .project-detail-native-theater .project-detail__player {
    width: 100vw;
    height: 100svh;
    max-height: none;
    border-radius: 0;
  }

  .project-native-player__info {
    top: 50%;
    bottom: auto;
    left: 18px;
    width: min(68vw, 310px);
    max-width: 310px;
    transform: translate3d(0, calc(-50% + 10px), 0);
  }

  .project-native-player.is-paused-idle .project-native-player__info {
    transform: translate3d(0, -50%, 0);
  }

  .project-native-player__info p {
    margin-bottom: 6px;
    font-size: 0.82rem;
  }

  .project-native-player__info span {
    margin-bottom: 4px;
    font-size: 0.58rem;
  }

  .project-native-player__info h1 {
    font-size: clamp(1.15rem, 5.35vw, 1.85rem);
    line-height: 0.94;
    max-width: 12ch;
  }

  .project-native-player__episode {
    margin-top: 5px;
    font-size: 0.68rem;
    line-height: 1.08;
  }

  .project-native-player__info h2 {
    margin-top: 5px;
    font-size: clamp(1rem, 4.7vw, 1.55rem);
  }

  .project-native-player__info small {
    margin-top: 3px;
    font-size: 0.58rem;
    line-height: 1.05;
  }

  .project-native-player__info h1 + small {
    margin-top: 8px;
  }

  body.project-detail-native-theater .project-detail__close {
    top: max(10px, env(safe-area-inset-top, 0px));
    left: 12px;
    width: 44px;
    height: 44px;
  }

  .project-detail-native-theater .project-native-player__controls {
    right: calc(var(--native-media-right, 0px) + max(10px, env(safe-area-inset-right, 0px)));
    bottom: calc(var(--native-media-bottom, 0px) - 8px + env(safe-area-inset-bottom, 0px));
    left: calc(var(--native-media-left, 0px) + max(10px, env(safe-area-inset-left, 0px)));
    grid-template-columns: 38px 34px 34px minmax(0, 1fr) auto 34px 34px 34px;
    grid-template-rows: 18px 42px;
    column-gap: 7px;
    row-gap: 4px;
    min-height: 50px;
  }

  .project-detail-native-theater .project-native-player__button {
    width: 36px;
    height: 36px;
  }

  .project-detail-native-theater .project-native-player__play span {
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }

  .project-detail-native-theater .project-native-player.is-playing .project-native-player__play span {
    width: 13px;
    height: 17px;
  }

  .project-detail-native-theater .project-native-player__skip span {
    width: 24px;
    height: 24px;
    font-size: 0.56rem;
  }

  .project-detail-native-theater .project-native-player__skip span::before {
    inset: -1px;
  }

  .project-detail-native-theater .project-native-player__next span,
  .project-detail-native-theater .project-native-player__fullscreen span {
    width: 22px;
    height: 22px;
  }

  .project-detail-native-theater .project-native-player__next span::after {
    top: 4px;
    right: 3px;
    height: 14px;
    transform: none;
  }

  .project-detail-native-theater .project-native-player__mute span {
    width: 25px;
    height: 25px;
  }

  .project-detail-native-theater .project-native-player__progress-label {
    transform: translateY(0);
  }

  .project-native-player__controls {
    grid-template-columns: 34px 32px 32px minmax(0, 1fr) auto 34px 34px 34px;
    gap: 7px;
    padding: 7px 8px;
  }

  .project-native-player__time {
    grid-column: 5;
    margin-right: 0;
  }

  .project-native-player__mute {
    grid-column: 7;
    justify-self: center;
    margin-right: 0;
  }

  .project-native-player__next {
    grid-column: 6;
    justify-self: center;
    margin-left: 4px;
    margin-right: -4px;
  }

  .project-native-player__duration {
    display: none;
  }

  .project-native-player__fullscreen {
    display: inline-grid;
    grid-column: 8;
    justify-self: end;
  }

  .project-native-player__skip span {
    width: 24px;
    height: 24px;
    font-size: 0.56rem;
  }

  .project-native-player__now {
    display: none;
  }

  .project-native-player__top-title {
    display: none;
  }

  .project-native-player__unmute {
    top: 47%;
    right: max(16px, env(safe-area-inset-right, 0px));
    width: 52px;
    height: 52px;
  }

  .project-native-player__unmute::before {
    width: 24px;
    height: 24px;
  }

  .project-native-player__playlist {
    display: none;
  }

  .project-native-player .project-detail__up-next.project-native-player__up-next-card {
    display: none !important;
  }

  .project-native-player__next-up {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .project-detail-native-theater {
    overflow: auto;
  }

  .project-detail-native-theater::before,
  .project-detail-native-theater::after {
    display: block;
  }

  .project-detail-native-theater .project-detail__stage {
    display: grid;
    grid-template-rows: auto auto minmax(0, auto);
    align-content: center;
    align-items: center;
    gap: clamp(10px, 2.2svh, 18px);
    width: auto;
    height: auto;
    min-height: 100svh;
    padding: max(54px, calc(env(safe-area-inset-top, 0px) + 40px)) 0 max(92px, calc(env(safe-area-inset-bottom, 0px) + 82px));
    background: transparent;
    overflow: visible;
  }

  .project-detail-native-theater .project-detail__player {
    width: 100vw;
    height: auto;
    max-width: none;
    max-height: none;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    box-shadow: none;
  }

  .project-detail-native-theater .project-native-player__now {
    display: none;
  }

  .project-detail-native-theater .project-native-player__info {
    top: auto;
    bottom: clamp(86px, 19vw, 108px);
    left: max(18px, env(safe-area-inset-left, 0px));
    display: grid;
    width: min(72vw, 340px);
    max-width: 340px;
    transform: translate3d(0, 10px, 0);
    opacity: 0;
  }

  .project-detail-native-theater .project-native-player.is-paused-idle .project-native-player__info {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  .project-detail-native-theater .project-native-player__info span {
    margin-bottom: 4px;
    font-size: 0.54rem;
  }

  .project-detail-native-theater .project-native-player__info h1 {
    font-size: clamp(1.05rem, 4.8vw, 1.46rem);
    line-height: 0.94;
    max-width: 15ch;
  }

  .project-detail-native-theater .project-native-player__episode {
    margin-top: 5px;
    font-size: 0.58rem;
    line-height: 1.05;
  }

  .project-detail-native-theater .project-native-player__info h2 {
    margin-top: 5px;
    font-size: clamp(0.95rem, 4.1vw, 1.25rem);
  }

  .project-detail-native-theater .project-native-player__info small {
    margin-top: 4px;
    font-size: 0.52rem;
    line-height: 1.02;
  }

  .project-detail-native-theater .project-native-player__info h1 + small {
    margin-top: 7px;
  }

  .project-detail-native-theater .project-native-player__controls {
    right: max(10px, env(safe-area-inset-right, 0px));
    bottom: calc(env(safe-area-inset-bottom, 0px) - 4px);
    left: max(10px, env(safe-area-inset-left, 0px));
    grid-template-columns: 34px 32px 32px minmax(0, 1fr) auto 34px 34px 34px;
    column-gap: 7px;
    min-height: 50px;
    padding: 8px 0;
  }

  .project-detail-native-theater .project-detail__footer {
    position: fixed;
    right: 12px;
    bottom: max(22px, calc(env(safe-area-inset-bottom, 0px) + 18px));
    left: 12px;
    z-index: 24;
    display: grid !important;
    width: calc(100vw - 24px);
    max-width: none;
    padding-right: 8px;
    padding-left: 8px;
    transform: none;
  }

  body.project-detail-native-theater .project-detail__close {
    position: fixed;
    top: 0;
    right: 6px;
    left: auto;
    z-index: 32;
    width: 42px;
    height: 42px;
    color: var(--accent);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 200;
    line-height: 1;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  body.project-detail-native-theater.is-native-player-chrome-hidden .project-detail__close,
  body.project-detail-native-theater:has(.project-native-player.is-loading) .project-detail__close,
  body.project-detail-native-theater:has(.project-native-player.is-playing:not(.is-user-active)) .project-detail__close,
  body.project-detail-native-theater:has(.project-native-player.is-paused-idle) .project-detail__close {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  body.project-detail-native-theater .project-detail__close::before,
  body.project-detail-native-theater .project-detail__close::after {
    content: none;
  }
}
