@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --white: #f6f6f3;
  --paper: #ecece8;
  --ink: #050505;
  --soft-ink: rgba(5, 5, 5, 0.68);
  --line-light: rgba(255, 255, 255, 0.38);
  --line-dark: rgba(5, 5, 5, 0.16);
  --glass-white: rgba(255, 255, 255, 0.36);
  --glass-dark: rgba(8, 8, 8, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #000;
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

main {
  background: #000;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.glass-pill,
.glass-panel,
.registration__panel,
.signup {
  border: 1px solid var(--line-light);
  background: var(--glass-white);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(24px) saturate(1.25);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
}

.hero {
  position: relative;
  height: 185svh;
  overflow: clip;
  isolation: isolate;
  background: #fff;
  --hero-progress: 0;
  --hero-mark-size: clamp(20rem, 34vw, 36.25rem);
}

.hero__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.hero__blackout {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__blackout {
  z-index: 1;
  background: #000;
  opacity: clamp(0, calc((var(--hero-progress) - 0.46) * 3), 1);
  pointer-events: none;
  will-change: opacity;
}

.hero__mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  margin: 0;
  color: #000;
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--hero-mark-size);
  font-weight: 700;
  line-height: 0.74;
  letter-spacing: 0;
  transform: translate(-50%, -50%);
  transform-origin: center;
  opacity: clamp(0, calc(1 - (var(--hero-progress) - 0.48) * 4.6), 1);
  will-change: font-size;
}

.hero__intro {
  position: absolute;
  inset: clamp(18px, 4vw, 56px);
  z-index: 3;
  display: grid;
  align-content: start;
  justify-items: end;
  gap: clamp(12px, 2vw, 22px);
  width: min(76vw, 420px);
  margin-left: auto;
  color: rgba(0, 0, 0, clamp(0, calc(0.86 - (var(--hero-progress) * 1.8)), 0.86));
  font-size: clamp(0.72rem, 0.92vw, 0.9rem);
  font-weight: 700;
  line-height: 1.45;
  text-align: right;
  text-transform: uppercase;
  pointer-events: none;
}

.hero__subtitle {
  position: absolute;
  top: clamp(172px, 27vw, 300px);
  left: 50%;
  z-index: 3;
  display: grid;
  gap: 8px;
  width: min(88vw, 900px);
  margin: 0;
  color: rgba(5, 5, 5, 0.72);
  font-size: clamp(0.92rem, 1.55vw, 1.4rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  opacity: clamp(0, calc(1 - var(--hero-progress) * 2.4), 1);
  pointer-events: none;
}

.hero__subtitle span {
  display: block;
}

.hero__corner-note {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(18px, 4vw, 56px);
  z-index: 3;
  margin: 0;
  color: rgba(5, 5, 5, clamp(0, calc(0.82 - (var(--hero-progress) * 1.8)), 0.82));
  font-size: clamp(0.72rem, 1vw, 0.96rem);
  font-weight: 700;
  line-height: 1.55;
  text-align: right;
  text-transform: uppercase;
  opacity: clamp(0, calc(1 - var(--hero-progress) * 2.2), 1);
  pointer-events: none;
}

.hero__worldwide {
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  bottom: clamp(18px, 4vw, 56px);
  z-index: 3;
  margin: 0;
  color: rgba(5, 5, 5, clamp(0, calc(0.82 - (var(--hero-progress) * 1.8)), 0.82));
  font-size: clamp(0.72rem, 1vw, 0.96rem);
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
  opacity: clamp(0, calc(1 - var(--hero-progress) * 2.2), 1);
  pointer-events: none;
}

.hero__date {
  position: absolute;
  left: 50%;
  top: calc(50% + clamp(92px, 16vw, 265px));
  z-index: 3;
  margin: 0;
  color: rgba(5, 5, 5, clamp(0, calc(0.82 - (var(--hero-progress) * 1.8)), 0.82));
  font-size: clamp(0.72rem, 1vw, 0.96rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  opacity: clamp(0, calc(1 - var(--hero-progress) * 2.2), 1);
  pointer-events: none;
}

.registration {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(64px, 8vw, 112px) clamp(16px, 4vw, 56px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 255, 255, 0.2) 0 12%, rgba(255, 255, 255, 0.06) 28%, transparent 58%),
    linear-gradient(180deg, #000 0%, #050505 42%, #000 100%);
}

.registration::before,
.registration::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.registration::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 50% 48%, #000 0 28%, transparent 74%);
  opacity: 0.34;
}

.registration::after {
  background:
    linear-gradient(180deg, #000 0%, #000 18%, rgba(0, 0, 0, 0.86) 34%, rgba(0, 0, 0, 0.34) 54%, transparent 72%),
    radial-gradient(ellipse at 50% 28%, rgba(255, 255, 255, 0.09) 0 8%, transparent 42%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.42) 78%, #000 100%);
}

.registration__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1420px);
  padding: 0;
  text-align: left;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.registration__eyebrow,
.signup__note,
.show__kicker,
.ye__label,
.show__meta {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--soft-ink);
}

.registration h2 {
  position: relative;
  z-index: 0;
  margin: 18px 0 20px;
  max-width: 980px;
  font-size: clamp(4.2rem, 10.5vw, 10.8rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0;
}

.signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(100%, 680px);
  min-height: clamp(72px, 7vw, 92px);
  margin: 0 auto;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.11);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 32px 120px rgba(0, 0, 0, 0.72),
    0 0 86px rgba(255, 255, 255, 0.18);
}

.signup input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  padding: 0 clamp(18px, 3vw, 30px);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  font-weight: 700;
  text-transform: uppercase;
}

.signup input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.verification {
  display: none;
  width: min(100%, 820px);
  margin: 0 auto;
  gap: clamp(16px, 2vw, 22px);
  padding: clamp(20px, 2.7vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 32px 120px rgba(0, 0, 0, 0.62),
    0 0 80px rgba(255, 255, 255, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px) saturate(1.16) brightness(1.04);
  -webkit-backdrop-filter: blur(18px) saturate(1.16) brightness(1.04);
}

.verification p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.7rem, 0.86vw, 0.84rem);
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
  text-align: center;
}

.verification__change {
  display: inline !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  background: transparent !important;
  box-shadow: none !important;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  text-transform: lowercase;
  transform: none !important;
}

.verification__change:hover {
  color: #fff;
}

.verification__code {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 12px);
}

.verification__code input {
  width: 100%;
  min-height: clamp(64px, 6vw, 86px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  caret-color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.verification__code input:focus {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.11);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 42px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.signup button,
.show__button {
  appearance: none;
  border: 0;
  color: #fff;
  background: var(--ink);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.signup button {
  min-width: clamp(132px, 15vw, 190px);
  min-height: 54px;
  padding: 0 clamp(22px, 3vw, 34px);
  color: var(--ink);
  background: #fff;
}

.signup button:hover,
.show__button:hover {
  transform: translateY(-1px);
  background: #262626;
}

.signup button:hover {
  color: #fff;
  background: #1b1b1b;
}

.signup button:focus-visible,
.show__button:focus-visible,
.signup input:focus-visible,
.verification__code input:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.signup__note {
  min-height: 1.2em;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.registration .registration__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.registration__panel.is-code-step .signup {
  display: none;
}

.registration__panel.is-code-step .verification {
  display: grid;
}

.show,
.packages,
.ye {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #050505;
}

.ye__image,
.ye__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ye__image {
  object-fit: cover;
  z-index: -2;
}

.show {
  position: relative;
  z-index: 2;
  height: 285svh;
  margin-top: -100svh;
  background: linear-gradient(180deg, transparent 0 100svh, #000 100svh 100%);
  --show-progress: 0;
  --show-visibility: 0;
}

.show__sticky {
  position: fixed;
  inset: 0;
  height: 100svh;
  display: grid;
  padding: clamp(18px, 4vw, 56px);
  overflow: hidden;
  isolation: isolate;
  background: #000;
  opacity: var(--show-visibility);
  visibility: hidden;
  pointer-events: none;
}

.show__sticky::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: clamp(260px, 42vh, 520px);
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.38) 34%, rgba(0, 0, 0, 0.86) 72%, #000 100%);
  pointer-events: none;
}

.show.is-show-active .show__sticky {
  visibility: visible;
}

.show.is-show-exiting .show__sticky {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.show__image,
.show__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.show__image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  opacity: clamp(0, calc(var(--show-progress) * 7), 1);
  filter: saturate(0.88) contrast(1.04);
  transform: scale(clamp(0.78, calc(0.78 + var(--show-progress) * 0.28), 1));
  transform-origin: center;
  will-change: opacity, transform;
}

.show__overlay {
  z-index: -1;
  opacity: clamp(0, calc(var(--show-progress) * 1.35), 1);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.16) 48%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.74) 100%);
}

.show__content {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: space-between;
  min-height: 100%;
  opacity: clamp(0, calc((var(--show-progress) - 0.06) * 5.8), 1);
  will-change: opacity, transform;
}

.show__statement {
  justify-self: end;
  width: min(100%, 620px);
  text-align: left;
  text-shadow: 0 18px 90px rgba(0, 0, 0, 0.72);
}

.show h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4.6vw, 5.4rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.show__statement p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.82rem, 1.2vw, 1.05rem);
  font-weight: 650;
  line-height: 1.6;
}

.show__features {
  display: grid;
  justify-self: start;
  align-self: end;
  width: min(100%, 420px);
  gap: 7px;
}

.show__features span {
  width: fit-content;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.34);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  font-size: clamp(0.68rem, 0.9vw, 0.82rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.show__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.show__button:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(5, 5, 5, 0.72);
}

.packages {
  min-height: 100svh;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.13), transparent 36%),
    #050505;
}

.packages__header,
.packages__grid {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.packages__header {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.packages__header p,
.package-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.packages__header h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 7rem);
  line-height: 0.92;
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.package-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 420px;
  padding: clamp(20px, 2.5vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 34px 130px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.package-card--featured {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.11);
}

.package-card strong {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.9;
}

.package-card ul,
.plan-button ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li,
.plan-button li {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.35;
  text-transform: uppercase;
}

.package-card a {
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.9);
  color: #050505;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.package-card a:hover {
  background: rgba(5, 5, 5, 0.7);
  color: #fff;
}

.registration {
  min-height: 100svh;
  place-items: stretch;
  padding: clamp(72px, 7vw, 110px) clamp(16px, 5vw, 84px) clamp(36px, 5vw, 72px);
  background:
    linear-gradient(180deg, #000 0%, #000 24%, rgba(0, 0, 0, 0) 54%),
    radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, 0.15) 0 9%, rgba(255, 255, 255, 0.045) 32%, transparent 64%),
    radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.055), transparent 30%),
    linear-gradient(180deg, #000 0%, #070707 44%, #000 78%, #000 100%);
}

.registration__panel {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.registration__eyebrow {
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
}

.registration h2 {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 22px auto 10px;
  color: #fff;
  font-size: clamp(3.8rem, 8.9vw, 10.2rem);
  line-height: 0.82;
  text-align: center;
}

.registration h2 span {
  display: block;
}

.registration h2 span:first-child {
  white-space: nowrap;
}

.access-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  width: min(100%, 1160px);
  margin: -34px auto clamp(18px, 3vw, 30px);
  perspective: 1400px;
}

.access-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: clamp(8px, 0.72vw, 11px);
  min-height: clamp(340px, 27vw, 400px);
  padding: clamp(22px, 2vw, 32px) clamp(22px, 2vw, 32px) clamp(10px, 1vw, 14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 38px 130px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px) saturate(1.16) brightness(1.04);
  -webkit-backdrop-filter: blur(18px) saturate(1.16) brightness(1.04);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.access-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow:
    0 54px 170px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.access-card.is-selected {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.105);
  box-shadow:
    0 46px 150px rgba(0, 0, 0, 0.72),
    0 0 90px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.access-card__status {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: stretch;
  order: 5;
  min-height: 42px;
  display: grid;
  place-items: center;
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 50px rgba(0, 0, 0, 0.38);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.access-card.is-selected .access-card__status {
  background: #fff;
  color: #050505;
  border-color: #fff;
}

.access-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.66rem, 0.72vw, 0.76rem);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
}

.access-card strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(2.45rem, 3.8vw, 4.35rem);
  line-height: 0.9;
  white-space: nowrap;
  text-shadow: 0 0 42px rgba(255, 255, 255, 0.14);
  text-align: center;
}

.access-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: clamp(8px, 1vw, 12px) 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.access-card li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.58rem, 0.62vw, 0.66rem);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.access-card li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.58);
}

.access-form {
  display: grid;
  gap: 12px;
  width: min(100%, 820px);
  margin: 0 auto;
  text-align: center;
}

.access-form__lead {
  margin: 0 auto 2px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(0.74rem, 0.9vw, 0.86rem);
  font-weight: 700;
  line-height: 1.5;
}

.signup {
  width: 100%;
  min-height: clamp(66px, 6vw, 78px);
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow:
    0 30px 110px rgba(0, 0, 0, 0.58),
    0 0 82px rgba(255, 255, 255, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(46px) saturate(1.2) brightness(1.08);
  -webkit-backdrop-filter: blur(46px) saturate(1.2) brightness(1.08);
}

.signup input {
  text-transform: none;
  padding-left: clamp(24px, 3vw, 38px);
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.94rem, 1.15vw, 1.16rem);
}

.signup button {
  min-width: clamp(176px, 17vw, 224px);
  margin: 8px;
  min-height: auto;
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 34px rgba(0, 0, 0, 0.26);
}

.signup__note {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  line-height: 1.55;
}

.verification {
  width: 100%;
  text-align: center;
}

.ye {
  display: grid;
  align-items: end;
  min-height: 112svh;
  padding: clamp(18px, 4vw, 56px);
  padding-top: clamp(420px, 52svh, 620px);
  padding-bottom: clamp(176px, 20svh, 250px);
  margin-top: clamp(-140px, -9vw, -72px);
}

.ye__image {
  object-position: center 30%;
  filter: saturate(0.82) contrast(1.06) brightness(0.92);
}

.ye__scrim {
  z-index: -1;
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.82) 5%, rgba(0, 0, 0, 0.26) 18%, rgba(0, 0, 0, 0) 34%),
    radial-gradient(circle at 52% 34%, rgba(0, 0, 0, 0) 0 20%, rgba(0, 0, 0, 0.42) 66%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.52) 72%, #000 100%);
}

.ye__content {
  width: min(100%, 1040px);
  margin: 0 auto;
  transform: translateY(clamp(32px, 6svh, 92px));
}

.ye__label {
  display: inline-flex;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.76);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(8, 8, 8, 0.22);
}

.ye h2 {
  max-width: 780px;
  margin: 22px 0 18px;
  font-size: clamp(2rem, 4.7vw, 5.25rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.ye h2 span {
  display: block;
}

.ye p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.92rem, 1.4vw, 1.2rem);
  font-weight: 500;
  line-height: 1.45;
}

.ye p + p {
  margin-top: 18px;
}

.ye__button {
  display: inline-grid;
  place-items: center;
  min-height: 54px;
  margin-top: 28px;
  padding: 0 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #050505;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.ye__button:hover {
  transform: translateY(-1px);
  color: #fff;
  background: rgba(5, 5, 5, 0.72);
}

.site-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(10px, 2vw, 28px);
  width: min(calc(100% - clamp(36px, 8vw, 112px)), 1040px);
  min-height: 52px;
  padding: 0 clamp(18px, 3vw, 34px);
  margin: 0 auto 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background:
    radial-gradient(circle at 24% 0%, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.022)),
    rgba(5, 5, 5, 0.62);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(18px) saturate(1.06);
  -webkit-backdrop-filter: blur(18px) saturate(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 48px rgba(0, 0, 0, 0.34);
}

.site-footer span,
.site-footer a {
  justify-self: center;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: #fff;
}

.watch-page {
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.watch {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #000;
  color: #fff;
}

.watch__video,
.watch__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.watch__video {
  z-index: 0;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.9) contrast(1.06);
  transition: opacity 1400ms ease;
  pointer-events: none;
}

.watch__veil {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.12) 0 12%, transparent 38%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.82));
  transition: opacity 1400ms ease;
}

.watch__countdown {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: clamp(18px, 2.2vw, 30px);
  padding: clamp(22px, 5vw, 72px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.13), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 52%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
  transition:
    opacity 900ms ease,
    transform 900ms ease,
    visibility 900ms ease;
}

.watch__countdown p {
  justify-self: center;
  margin: 0;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.72rem, 0.95vw, 0.92rem);
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.watch__countdown h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3.8rem, 12.2vw, 13rem);
  font-weight: 700;
  line-height: 0.78;
  text-shadow:
    0 0 38px rgba(255, 255, 255, 0.16),
    0 26px 110px rgba(255, 255, 255, 0.1);
}

.live-badge {
  position: fixed;
  top: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(5, 5, 5, 0.28);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.viewer-count {
  position: fixed;
  top: clamp(18px, 3vw, 34px);
  right: calc(clamp(18px, 3vw, 34px) + 112px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(5, 5, 5, 0.28);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.viewer-count svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  opacity: 0.78;
}

.watch-controls {
  position: fixed;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.watch-controls > * {
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.camera-status {
  position: fixed;
  left: clamp(18px, 3vw, 34px);
  top: clamp(18px, 3vw, 34px);
  z-index: 4;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(5, 5, 5, 0.3);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 70px rgba(0, 0, 0, 0.32);
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.camera-switcher {
  position: fixed;
  left: clamp(18px, 3vw, 34px);
  top: clamp(82px, 9vw, 106px);
  z-index: 4;
  display: grid;
  gap: 7px;
  width: min(280px, 24vw);
  min-width: 230px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025) 48%, rgba(255, 255, 255, 0.06)),
    rgba(5, 5, 5, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 32px 100px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.camera-switcher p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
}

.camera-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.78);
  padding: 0 12px;
  cursor: pointer;
  text-align: left;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.camera-button span {
  font-size: 0.72rem;
  font-weight: 700;
}

.camera-button em {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 700;
}

.camera-button.is-active {
  border-color: rgba(255, 255, 255, 0.46);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 44px rgba(0, 0, 0, 0.28);
}

.camera-button.is-active em {
  color: rgba(255, 255, 255, 0.64);
}

.camera-button em:empty {
  display: none;
}

.volume-control,
.fullscreen-button,
.quality-button,
.settings-toggle-button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(5, 5, 5, 0.24);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 56px rgba(0, 0, 0, 0.28);
}

.volume-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  font-size: 0.72rem;
  font-weight: 700;
}

.volume-control input {
  width: 112px;
  accent-color: #fff;
  cursor: pointer;
}

.fullscreen-button,
.quality-button,
.settings-toggle-button {
  padding: 0 14px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.fullscreen-button:hover,
.quality-button:hover,
.settings-toggle-button:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(5, 5, 5, 0.24);
}

.quality-button.is-active {
  border-color: rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.74)),
    #fff;
  color: #050505;
}

.quality-button.is-locked,
.fullscreen-button.is-locked,
.settings-toggle-button.is-locked,
.camera-button.is-locked {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.quality-button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.fullscreen-button {
  min-width: 42px;
  padding: 0;
}

.fullscreen-icon {
  position: relative;
  display: block;
  width: 17px;
  height: 17px;
  margin: 0 auto;
}

.fullscreen-icon i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-color: currentColor;
  border-style: solid;
}

.fullscreen-icon i:nth-child(1) {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.fullscreen-icon i:nth-child(2) {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}

.fullscreen-icon i:nth-child(3) {
  right: 0;
  bottom: 0;
  border-width: 0 2px 2px 0;
}

.fullscreen-icon i:nth-child(4) {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}

.settings-toggle-button.is-active {
  border-color: rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.74)),
    #fff;
  color: #050505;
}

.settings-toggle-button {
  min-width: 42px;
  padding: 0;
  display: inline-grid;
  place-items: center;
}

.settings-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.live-chat {
  position: fixed;
  top: clamp(16px, 2.4vw, 34px);
  right: 0;
  bottom: clamp(18px, 3vw, 34px);
  z-index: 3;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: calc(min(360px, 28vw) + clamp(14px, 3vw, 34px));
  min-width: calc(260px + clamp(14px, 3vw, 34px));
  pointer-events: none;
  opacity: 0;
  transition: opacity 900ms ease;
}

.live-chat__messages {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  min-height: 0;
  overflow: hidden;
  padding: 88px clamp(14px, 3vw, 34px) 2px 44px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 100%);
}

.chat-message {
  align-self: flex-end;
  max-width: min(100%, 360px);
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.24);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.68rem, 0.9vw, 0.82rem);
  font-weight: 500;
  line-height: 1.35;
  text-transform: none;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  animation: chatEnter 240ms ease-out both;
}

.chat-message strong {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.chat-message--user {
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.08);
}

.live-chat__form {
  pointer-events: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  margin-top: 10px;
  padding-right: clamp(14px, 3vw, 34px);
  padding-left: 44px;
}

.live-chat__input {
  min-width: 0;
}

.live-chat__input input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  outline: 0;
  padding: 0 15px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 56px rgba(0, 0, 0, 0.22);
}

.live-chat__input input[aria-disabled="true"] {
  cursor: pointer;
  user-select: none;
}

.watch.has-digital .live-chat__input input {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.26);
}

.chat-send-button {
  min-width: 68px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    #fff;
  color: #050505;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
}

.chat-send-button:disabled {
  cursor: not-allowed;
  opacity: 0.44;
}

.chat-warning {
  min-height: 1em;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.35;
}

.live-badge span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ff1e1e;
  box-shadow: 0 0 18px rgba(255, 30, 30, 0.86);
  animation: livePulse 1100ms ease-in-out infinite;
}

.watch.is-playing .watch__video {
  opacity: 1;
}

.watch.is-playing .watch__veil {
  opacity: 0.42;
}

.watch.is-playing .watch__countdown {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.08);
}

.watch.is-playing .live-badge,
.watch.is-playing .viewer-count {
  opacity: 1;
  transform: translateY(0);
}

.watch.is-playing .watch-controls {
  opacity: 1;
  transform: translateY(0);
}

.watch.is-playing .live-chat {
  opacity: 1;
}

.watch.is-playing .camera-switcher,
.watch.is-playing .camera-status {
  opacity: 1;
  transform: translate(0);
}

.watch.is-playing.is-ui-hidden .live-badge,
.watch.is-playing.is-ui-hidden .viewer-count,
.watch.is-playing.is-ui-hidden .camera-switcher,
.watch.is-playing.is-ui-hidden .camera-status,
.watch.is-playing.is-ui-hidden .live-chat,
.watch.is-playing.is-ui-hidden .watch-controls > :not(.settings-toggle-button) {
  opacity: 0;
  pointer-events: none;
}

.watch.is-playing.is-ui-hidden .live-badge,
.watch.is-playing.is-ui-hidden .viewer-count,
.watch.is-playing.is-ui-hidden .camera-status {
  transform: translateY(-8px);
}

.watch.is-playing.is-ui-hidden .camera-switcher {
  transform: translateX(-10px);
}

.watch.is-playing.is-ui-hidden .watch-controls > :not(.settings-toggle-button) {
  transform: translateY(8px);
}

.paywall {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.16), transparent 26%),
    radial-gradient(circle at 84% 80%, rgba(255, 255, 255, 0.09), transparent 28%),
    rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.paywall.is-open {
  display: grid;
}

.paywall__panel {
  position: relative;
  width: min(100%, 1120px);
  max-height: min(92svh, 860px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.09), transparent 24%, rgba(255, 255, 255, 0.06) 62%, transparent 100%),
    rgba(8, 8, 8, 0.58);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 42px 180px rgba(0, 0, 0, 0.74);
  text-align: center;
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.paywall__close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  padding: 6px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  opacity: 0.82;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.paywall__close::before {
  content: "\00d7";
  font-size: 1.9rem;
}

.paywall__close:hover {
  opacity: 1;
  transform: scale(1.08);
}

.paywall__eyebrow,
.paywall__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.paywall h2 {
  margin: 12px auto 28px;
  max-width: 880px;
  color: #fff;
  font-size: clamp(2.4rem, 6.2vw, 6.8rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.paywall__plans {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.plan-button {
  position: relative;
  min-height: 294px;
  padding: 76px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035) 42%, rgba(255, 255, 255, 0.09)),
    rgba(255, 255, 255, 0.045);
  color: #fff;
  cursor: pointer;
  display: grid;
  grid-template-rows: 34px 72px 1fr;
  align-content: start;
  justify-items: stretch;
  gap: 10px;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 26px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.plan-button::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 30%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: opacity 180ms ease;
}

.plan-button[data-state]::before {
  content: attr(data-state);
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  min-width: 104px;
  min-height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 7px 12px 1px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 2.1;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}

.plan-button[data-state="Select"]::before {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.plan-button span {
  position: relative;
  z-index: 1;
  align-self: end;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.25;
  text-transform: uppercase;
}

.plan-button strong {
  position: relative;
  z-index: 1;
  align-self: center;
  color: #fff;
  font-size: clamp(2.15rem, 4vw, 3.85rem);
  line-height: 0.9;
}

.plan-button ul {
  position: relative;
  z-index: 1;
  align-self: start;
  gap: 7px;
  margin-top: 8px;
  text-align: left;
}

.plan-button li {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  line-height: 1.32;
}

.plan-button li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}

.plan-button.is-selected li {
  color: rgba(255, 255, 255, 0.78);
}

.plan-button.is-selected {
  border-color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.46), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.075) 48%, rgba(255, 255, 255, 0.18)),
    rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 34px 90px rgba(0, 0, 0, 0.52),
    0 0 52px rgba(255, 255, 255, 0.16);
  transform: translateY(-6px) scale(1.012);
}

.plan-button.is-selected::after {
  opacity: 1;
}

.plan-button.is-selected[data-state]::before {
  color: #050505;
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(255, 255, 255, 0.16);
}

.plan-button.is-selected span,
.plan-button.is-selected strong {
  color: #fff;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.18);
}

.plan-button.is-current {
  border-color: rgba(255, 255, 255, 0.55);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.2), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045) 48%, rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.06);
}

.plan-button.is-current[data-state]::before {
  color: #050505;
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.9);
}

.plan-button.is-included {
  opacity: 0.48;
}

.plan-button.is-included[data-state]::before {
  color: rgba(255, 255, 255, 0.58);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

.plan-button.is-unavailable {
  cursor: not-allowed;
}

.pay-button {
  width: min(100%, 380px);
  min-height: 58px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82)),
    #fff;
  color: #050505;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 24px 70px rgba(255, 255, 255, 0.1);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.pay-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 28px 80px rgba(255, 255, 255, 0.14);
}

.pay-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.card-icon {
  position: relative;
  width: 19px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.card-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 3px;
  height: 2px;
  background: currentColor;
  opacity: 0.72;
}

.upgrade-success {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  padding: clamp(20px, 5vw, 56px);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 50% 58%, rgba(0, 0, 0, 0.24), transparent 34%),
    rgba(0, 0, 0, 0.84);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  backdrop-filter: blur(28px) saturate(0.85) brightness(0.68);
  -webkit-backdrop-filter: blur(28px) saturate(0.85) brightness(0.68);
  transition:
    opacity 520ms ease,
    visibility 520ms ease;
}

.upgrade-success.is-visible {
  opacity: 1;
  visibility: visible;
}

.upgrade-success.is-leaving {
  opacity: 0;
}

.upgrade-success__panel {
  width: min(100%, 620px);
  border: 0;
  border-radius: 0;
  padding: clamp(28px, 5vw, 56px) 0;
  background: transparent;
  text-align: center;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.upgrade-success__panel p,
.upgrade-success__panel span {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.upgrade-success__panel h2 {
  margin: 14px 0 16px;
  color: #fff;
  font-size: clamp(2rem, 5.6vw, 5rem);
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow:
    0 0 36px rgba(255, 255, 255, 0.14),
    0 34px 120px rgba(0, 0, 0, 0.72);
}

.upgrade-success.is-visible .upgrade-success__panel {
  animation: upgradeReveal 900ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

@keyframes upgradeReveal {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(14px) scale(0.96);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes chatEnter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes confirmationScan {
  0%,
  100% {
    opacity: 0.34;
    transform: scaleX(0.72);
  }

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

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.72);
  }
}

@media (max-width: 760px) {
  .live-badge {
    right: 16px;
    top: 16px;
  }

  .viewer-count {
    right: 118px;
    top: 16px;
  }

  .camera-status {
    left: 16px;
    right: auto;
    top: 16px;
  }

  .camera-switcher {
    left: 16px;
    right: 16px;
    top: 64px;
    width: auto;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .camera-switcher p {
    grid-column: 1 / -1;
  }

  .live-chat {
    top: auto;
    left: 16px;
    right: 16px;
    bottom: 78px;
    width: auto;
    min-width: 0;
    height: 36vh;
  }

  .watch-controls {
    right: 16px;
    left: 16px;
    justify-content: space-between;
  }

  .volume-control {
    flex: 1;
  }

  .volume-control input {
    width: 100%;
  }

  .paywall__plans {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    height: 225svh;
  }

  .hero__mark {
    font-size: var(--hero-mark-size);
  }

  .hero__intro {
    inset: 18px;
    width: min(86vw, 360px);
    font-size: 0.72rem;
  }

  .hero__subtitle {
    top: clamp(144px, 35vw, 220px);
    width: min(88vw, 420px);
    font-size: clamp(0.84rem, 3vw, 1.08rem);
  }

  .hero__corner-note {
    right: 18px;
    bottom: 18px;
    max-width: min(82vw, 360px);
    font-size: 0.72rem;
  }

  .hero__worldwide {
    left: 18px;
    bottom: 18px;
    max-width: 42vw;
    font-size: 0.72rem;
  }

  .hero__date {
    top: calc(50% + clamp(64px, 21vw, 112px));
    font-size: 0.72rem;
  }

  .registration {
    min-height: 100svh;
  }

  .registration__panel {
    padding: 0;
  }

  .registration h2 {
    font-size: clamp(2.8rem, 13.4vw, 5.2rem);
  }

  .access-grid {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .access-card {
    min-height: 0;
    padding: 24px;
    border-radius: 24px;
  }

  .access-form {
    text-align: left;
  }

  .signup {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .signup input,
  .signup button {
    min-height: 58px;
  }

  .signup button {
    width: 100%;
    margin: 0;
  }

  .verification__code {
    gap: 6px;
  }

  .packages {
    padding: 48px 16px;
  }

  .packages__grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: 0;
  }

  .show__sticky,
  .ye {
    padding: 16px;
  }

  .show__image {
    object-position: 52% center;
  }

  .show__content {
    align-content: space-between;
    gap: 24px;
  }

  .show__statement {
    justify-self: stretch;
    padding-top: 8px;
  }

  .show__features {
    width: min(100%, 340px);
  }

  .ye {
    min-height: 112svh;
    padding-bottom: clamp(132px, 22svh, 190px);
  }

  .ye__image {
    object-position: 50% center;
  }

  .ye__content {
    transform: none;
  }

  .site-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% - 28px);
    min-height: 54px;
    gap: 8px;
    padding: 0 14px calc(env(safe-area-inset-bottom) * 0.5);
    margin-bottom: 14px;
    border-radius: 999px;
    font-size: 0.56rem;
  }
}

@media (min-width: 761px) and (max-width: 1120px) {
  .registration__panel {
    width: min(100%, 900px);
  }

  .registration h2 {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .access-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -18px;
  }

  .packages__grid,
  .paywall__plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .hero__intro {
    inset: 16px;
  }
}

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