:root {
  --page-bg: #f2f3f5;
  --page-panel: #030303;
  --page-panel-2: #0f1013;
  --surface-border: rgba(255, 255, 255, 0.12);
  --surface-soft: rgba(255, 255, 255, 0.06);
  --text-main: #f7f8fb;
  --text-dim: rgba(255, 255, 255, 0.72);
  --text-soft: rgba(255, 255, 255, 0.52);
  --brand: #ff2a23;
  --accent: #0e3f94;
  --accent-soft: rgba(27, 91, 198, 0.24);
  --danger-glow: rgba(255, 63, 57, 0.34);
  --panel-shadow: 0 26px 60px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: "Outfit", "Segoe UI", sans-serif;
  overflow-x: hidden;
  transition: background-color 220ms ease, color 220ms ease;
}

img,
video,
canvas,
iframe {
  max-width: 100%;
}

img,
video,
canvas {
  height: auto;
}

button,
input,
a {
  font: inherit;
}

.page-frame {
  position: relative;
  min-height: 100vh;
  padding: 0;
}

.payment-success-page {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.payment-success-page__center {
  width: min(100%, 420px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.payment-success-page__animation {
  width: 200px;
  height: 200px;
}

.payment-success-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.payment-success-page__title {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
}

.payment-success-page__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
}

.payment-success-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 15px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3c57 0%, #ff5d3a 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(255, 76, 86, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.payment-success-page__button:hover,
.payment-success-page__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(255, 76, 86, 0.34);
}

.subscribe-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(123, 9, 38, 0.18), transparent 26%),
    linear-gradient(180deg, #020202 0%, #000 100%);
}

.not-found-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(123, 9, 38, 0.16), transparent 28%),
    linear-gradient(180deg, #020202 0%, #000 100%);
}

.not-found-shell {
  min-height: calc(100vh - 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 42px 24px 0;
}

.not-found-card {
  width: min(100%, 640px);
  padding: 46px 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(24, 6, 10, 0.96), rgba(10, 4, 7, 0.98));
  box-shadow: 0 0 0 1px rgba(255, 42, 35, 0.06), 0 30px 60px rgba(0, 0, 0, 0.38);
  text-align: center;
}

.not-found-card__code {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.34);
  font-size: clamp(4rem, 2.4rem + 4vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.not-found-card__title {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 1.5rem + 1.8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
}

.not-found-card__copy {
  max-width: 440px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
}

.not-found-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 28px;
  padding: 0 24px;
  border-radius: 16px;
  background: linear-gradient(90deg, #ff322f, #ff2a6d);
  color: #fff;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(255, 31, 63, 0.2);
}

.subscribe-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px clamp(20px, 4vw, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.92);
}

.subscribe-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.subscribe-header__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
}

.subscribe-main {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 28px 24px 0;
}

.payment-main {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.payment-methods {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.payment-methods__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 180px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.payment-methods__label {
  white-space: nowrap;
}

.payment-methods__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.payment-methods__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-methods__button.is-active {
  border-color: rgba(255, 68, 68, 0.28);
  background: linear-gradient(135deg, #ff3148 0%, #ff6a3d 100%);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(255, 60, 73, 0.24);
}

.payment-card {
  width: min(100%, 640px);
  padding: 30px 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(20, 5, 9, 0.96), rgba(11, 4, 6, 0.98));
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 57, 80, 0.04);
}

.payment-card__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 77, 77, 0.14);
  color: rgba(255, 221, 221, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-card__title {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(1.8rem, 1.5rem + 1vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.payment-card__copy {
  margin: 14px 0 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 1.75;
}

.payment-crypto-options {
  margin-top: 22px;
}

.payment-crypto-options__buttons {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-crypto-options__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.payment-crypto-options__button:hover,
.payment-crypto-options__button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.24);
}

.payment-crypto-options__button.is-active {
  border-color: rgba(113, 220, 187, 0.72);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(113, 220, 187, 0.18);
}

.payment-crypto-options__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  max-width: 100%;
}

.payment-crypto-options__icon img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.payment-crypto-options__text {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.payment-crypto-options__note {
  margin: 14px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.6;
}

.payment-warning {
  margin-top: 22px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(255, 78, 78, 0.34);
  border-radius: 18px;
  background: rgba(120, 10, 18, 0.14);
  color: #ff6d6d;
}

.payment-warning__title,
.payment-warning__text,
.payment-warning__email,
.payment-warning__alert,
.payment-warning__note-label,
.payment-warning__note {
  margin: 0;
}

.payment-warning__title {
  color: #ff4343;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.payment-warning__text {
  margin-top: 14px;
  color: #ff7f7f;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
}

.payment-warning__email {
  margin-top: 16px;
  color: #ff8c8c;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.6;
}

.payment-warning__email span {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  word-break: break-word;
}

.payment-warning__alert {
  margin-top: 18px;
  color: #ff4545;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.55;
}

.payment-warning__note-label {
  margin-top: 18px;
  color: #ff6161;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-warning__note {
  margin-top: 8px;
  color: #ff8a8a;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.8;
}

.payment-warning__note a {
  color: #ffb0b0;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.payment-warning__note a:hover,
.payment-warning__note a:focus-visible {
  color: #ffffff;
}

.payment-card__button {
  margin-top: 26px;
  min-width: 220px;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff3148 0%, #ff6a3d 100%);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(255, 60, 73, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.payment-card__button:hover,
.payment-card__button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 38px rgba(255, 60, 73, 0.32);
}

.payment-card__button:disabled {
  opacity: 0.66;
  cursor: wait;
  transform: none;
  box-shadow: 0 12px 20px rgba(255, 60, 73, 0.18);
}

.payment-card__feedback {
  min-height: 24px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.5;
}

.payment-card__feedback.is-success {
  color: #7ef0b2;
}

.payment-card__feedback.is-error {
  color: #ff9ea4;
}

.subscribe-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px;
}

.subscribe-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 91, 91, 0.14);
  border-radius: 999px;
  background: rgba(80, 10, 10, 0.54);
  color: rgba(255, 225, 225, 0.86);
  font-size: 0.76rem;
  font-weight: 600;
}

.subscribe-hero__title {
  max-width: 980px;
  margin: 28px 0 0;
  color: #fff;
  font-size: clamp(2.4rem, 1.8rem + 2vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.subscribe-hero__highlight {
  margin: 8px 0 0;
  background: linear-gradient(90deg, #ff3b3b 0%, #ff2e77 45%, #ad46ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(3rem, 2rem + 2.4vw, 5rem);
  font-weight: 800;
  line-height: 1;
}

.subscribe-hero__copy {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.7;
}

.subscribe-plan-card {
  position: relative;
  width: min(100%, 420px);
  margin-top: 44px;
  padding: 34px 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(25, 4, 8, 0.96), rgba(12, 3, 5, 0.98));
  box-shadow: 0 0 0 1px rgba(255, 26, 60, 0.06), 0 0 44px rgba(255, 26, 60, 0.08);
  text-align: left;
}

.subscribe-plan-card__pill {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff3b3b, #ff2f8b);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 20px rgba(255, 31, 63, 0.24);
}

.subscribe-plan-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ff3747, #ff1161);
  color: #fff;
  box-shadow: 0 14px 26px rgba(255, 31, 63, 0.24);
}

.subscribe-plan-card__icon svg {
  width: 24px;
  height: 24px;
}

.subscribe-plan-card__title {
  margin: 18px 0 4px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.subscribe-plan-card__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.82rem;
}

.subscribe-plan-card__discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 74, 95, 0.14);
  color: #ff5d70;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.subscribe-plan-card__price {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 0;
  color: #fff;
  line-height: 1;
}

.subscribe-plan-card__price-old {
  color: rgba(255, 255, 255, 0.34);
  font-size: clamp(1.4rem, 1.15rem + 0.55vw, 1.9rem);
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(255, 92, 116, 0.82);
  align-self: center;
}

.subscribe-plan-card__price-current {
  color: #ffffff;
  font-size: clamp(3.2rem, 2.65rem + 1.4vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.subscribe-plan-card__price-term {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(1.35rem, 1.05rem + 0.6vw, 1.8rem);
  font-weight: 700;
  padding-bottom: 7px;
}

.subscribe-plan-card__timer {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
}

.subscribe-plan-card__status {
  margin: 14px 0 0;
  color: #ff8b95;
  font-size: 0.95rem;
  font-weight: 700;
}

.subscribe-plan-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, #ff3232 0%, #ff2b7f 100%);
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(255, 31, 63, 0.22);
}

.subscribe-plan-card__list {
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
}

.subscribe-plan-card__list li {
  position: relative;
  margin-top: 10px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}

.subscribe-plan-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff3b3b, #ff2f8b);
  box-shadow: 0 0 0 4px rgba(255, 49, 92, 0.12);
}

.subscribe-plan-card__note {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(173, 255, 196, 0.66);
  font-size: 0.78rem;
}

.subscribe-section {
  margin-top: 90px;
}

.subscribe-section__heading {
  text-align: center;
}

.subscribe-section__heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 1.5rem + 1vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.subscribe-section__heading h2 span {
  background: linear-gradient(90deg, #ff3b3b 0%, #ff2f8b 45%, #c04dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subscribe-section__heading p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.94rem;
}

.subscribe-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 860px);
  margin: 34px auto 0;
}

.subscribe-feature-card {
  min-height: 114px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.subscribe-feature-card__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: #ff3d52;
}

.subscribe-feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.subscribe-feature-card h3 {
  margin: 18px 0 6px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.subscribe-feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  line-height: 1.5;
}

.subscribe-section--devices {
  margin-top: 86px;
}

.subscribe-device-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.subscribe-device-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 86px;
  padding: 10px 10px 0;
}

.subscribe-device-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(84, 11, 62, 0.84), rgba(37, 9, 54, 0.84));
  color: #ff4060;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.subscribe-device-card__icon svg {
  width: 20px;
  height: 20px;
}

.subscribe-device-card span:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 600;
}

.subscribe-cta {
  width: min(100%, 860px);
  margin: 80px auto 0;
  padding: 36px 24px 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(122, 11, 17, 0.92), rgba(70, 0, 78, 0.9));
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.subscribe-cta__icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  color: #ff5438;
}

.subscribe-cta__icon svg {
  width: 100%;
  height: 100%;
}

.subscribe-cta h2 {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(2rem, 1.5rem + 1.2vw, 3rem);
  line-height: 1.05;
}

.subscribe-cta p {
  max-width: 560px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.7;
}

.subscribe-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 50px;
  margin-top: 24px;
  padding: 0 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, #ff3232 0%, #ff2b7f 100%);
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(255, 31, 63, 0.22);
}

.subscribe-cta__hint {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.78rem;
}

.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(125, 13, 21, 0.32), transparent 28%),
    linear-gradient(90deg, #230406 0%, #0a0203 48%, #000 48%, #000 100%);
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  min-height: calc(100vh - 88px);
}

.auth-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  padding: 28px 22px 34px;
  background: linear-gradient(180deg, rgba(62, 5, 9, 0.88), rgba(35, 5, 8, 0.94));
  overflow: hidden;
}

.auth-showcase::before,
.auth-showcase::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 82, 82, 0.7);
  filter: blur(0.2px);
}

.auth-showcase::before {
  top: 126px;
  right: 42px;
  width: 10px;
  height: 10px;
}

.auth-showcase::after {
  right: 18px;
  top: 248px;
  width: 6px;
  height: 6px;
  box-shadow: -46px 80px 0 rgba(255, 82, 82, 0.6);
}

.auth-showcase__brand {
  position: relative;
  z-index: 1;
}

.auth-showcase__tag {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.auth-showcase__copy {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-top: 0;
}

.auth-showcase__title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 1.9rem + 1.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.auth-showcase__title span {
  color: #ff3737;
}

.auth-showcase__text {
  max-width: 640px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.7;
}

.auth-feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.auth-feature-card {
  min-height: 92px;
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.01);
}

.auth-feature-card__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: #ff4c4c;
}

.auth-feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.auth-feature-card__title {
  margin: 12px 0 4px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
}

.auth-feature-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  line-height: 1.45;
}

.auth-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 26px;
  margin-top: auto;
}

.auth-stats__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.auth-stats__item strong {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
}

.auth-stats__item span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
}

.auth-panel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #000;
}

.auth-panel {
  width: min(100%, 420px);
  padding: 20px 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(54, 6, 10, 0.94), rgba(28, 5, 8, 0.96));
  box-shadow: 0 0 0 1px rgba(255, 48, 48, 0.08), 0 0 42px rgba(255, 24, 24, 0.18);
}

.auth-panel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 12px;
}

.auth-panel__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.auth-panel__heading {
  text-align: center;
}

.auth-panel__heading h2 {
  margin: 0;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
}

.auth-panel__heading p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.auth-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 18px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.auth-switcher__button {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
}

.auth-switcher__button.is-active {
  background: linear-gradient(180deg, #ff473f 0%, #ff1738 100%);
  color: #fff;
  box-shadow: 0 12px 20px rgba(255, 31, 63, 0.2);
}

.auth-form {
  margin-top: 18px;
}

.auth-field {
  display: block;
  margin-top: 14px;
}

.auth-field[hidden],
.auth-check[hidden],
.auth-otp-panel[hidden],
.auth-otp-note[hidden],
.auth-otp-timer[hidden],
.auth-resend-button[hidden] {
  display: none !important;
}

.auth-field span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 600;
}

.auth-field input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font: inherit;
}

.auth-field__input-wrap {
  position: relative;
}

.auth-field__input-wrap .auth-password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  transform: translateY(-50%);
}

.auth-field__input-wrap .auth-password-toggle:hover {
  color: rgba(255, 255, 255, 0.82);
}

.auth-field__input-wrap .auth-password-toggle svg {
  width: 18px;
  height: 18px;
}

.auth-field__input-wrap input {
  padding-right: 48px;
}

.auth-field input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.auth-field input[readonly] {
  cursor: default;
  opacity: 0.82;
}

.auth-otp-panel {
  margin-top: 14px;
}

.auth-otp-note {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.5;
}

.auth-otp-timer {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  line-height: 1.4;
}

.auth-resend-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  margin: 0 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.auth-resend-button:hover,
.auth-resend-button:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  outline: none;
}

.auth-form__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.auth-link {
  color: #ff6868;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 500;
}

.auth-submit {
  width: 100%;
  height: 50px;
  margin-top: 16px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff473f 0%, #ff1738 100%);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 16px 26px rgba(255, 31, 63, 0.24);
}


.auth-feedback {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  line-height: 1.45;
}

.auth-feedback.is-error {
  border-color: rgba(255, 74, 74, 0.24);
  background: rgba(120, 16, 24, 0.26);
  color: #ffd1d7;
}

.auth-feedback.is-success {
  border-color: rgba(52, 196, 115, 0.22);
  background: rgba(18, 87, 53, 0.28);
  color: #c9ffe0;
}

.auth-divider {
  position: relative;
  margin-top: 18px;
  text-align: center;
}

.auth-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.auth-divider span {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  background: rgba(42, 6, 10, 0.98);
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.auth-socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.auth-socials__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
}

.auth-socials__button svg {
  width: 18px;
  height: 18px;
}

.auth-terms {
  margin: 16px auto 0;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.66rem;
  line-height: 1.6;
  text-align: center;
}

.auth-terms a {
  color: #ff6a6a;
  text-decoration: none;
}


body[data-theme="light"] {
  background: #f4f5f8;
  color: #101216;
}

.site-header {
  position: relative;
  z-index: 2000;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 22px;
  min-height: 88px;
  padding: 18px clamp(34px, 7.7vw, 148px) 14px;
  overflow: visible;
  background: #000;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

body[data-theme="light"] .site-header {
  background: #000;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 70%);
  pointer-events: none;
}

body[data-theme="light"] .site-header::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 70%);
}

.brand-block,
.mobile-actions,
.primary-nav,
.header-actions {
  position: relative;
  z-index: 2;
}

.brand-block {
  flex: 0 0 auto;
}

.brand-mark {
  text-decoration: none;
  font-size: clamp(1.65rem, 1.4rem + 0.8vw, 2.08rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.brand-mark__movie {
  color: #ff2a23;
}

.brand-mark__wave {
  color: #2f7cff;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.mobile-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.mobile-icon-button svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: auto;
  flex-wrap: nowrap;
}

.genres-menu,
.country-menu {
  position: relative;
  z-index: 1200;
}

.genres-menu__toggle,
.country-menu__toggle {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
  cursor: pointer;
  appearance: none;
}

.genres-dropdown,
.country-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 1500;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-width: 260px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17, 18, 21, 0.98), rgba(8, 9, 11, 0.98));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.genres-menu:hover .genres-dropdown,
.genres-menu:focus-within .genres-dropdown,
.country-menu:hover .country-dropdown,
.country-menu:focus-within .country-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.genres-dropdown__item,
.country-dropdown__item {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  white-space: nowrap;
  transition: 180ms ease;
}

button.nav-link {
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

body[data-theme="light"] .nav-link {
  color: rgba(16, 18, 22, 0.7);
}

.nav-link:hover {
  color: var(--text-main);
  background: var(--surface-soft);
}

.nav-link--active {
  border-color: rgba(168, 52, 49, 0.44);
  background: linear-gradient(180deg, rgba(69, 12, 13, 0.9), rgba(53, 8, 9, 0.9));
  color: #fff5f5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

body[data-theme="light"] .nav-link--active {
  color: #fff7f7;
}

.nav-icon {
  display: inline-flex;
  width: 12px;
  height: 12px;
}

.nav-icon svg,
.nav-icon img,
.search-icon svg,
.icon-button svg,
.chevron svg {
  width: 100%;
  height: 100%;
}

.nav-icon svg,
.search-icon svg,
.icon-button svg,
.chevron svg {
  fill: currentColor;
}

.nav-icon img {
  object-fit: contain;
}

.site-header .nav-icon,
.site-header .search-icon,
.site-header .button-icon,
.site-header .icon-button,
.site-header .mobile-icon-button,
.site-header .language-button,
.site-header .genres-menu__toggle,
.site-header .country-menu__toggle {
  color: #fff;
}

.site-header .nav-icon svg,
.site-header .search-icon svg,
.site-header .button-icon svg,
.site-header .icon-button svg,
.site-header .mobile-icon-button svg,
.site-header .language-button svg,
.site-header .genres-menu__toggle svg,
.site-header .country-menu__toggle svg {
  fill: currentColor;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
  flex-wrap: nowrap;
}

.notification-menu {
  position: relative;
  z-index: 50;
}

.language-menu {
  position: relative;
  z-index: 50;
}

.community-menu {
  position: relative;
  z-index: 50;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -3px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff3142, #ff001d);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(255, 32, 56, 0.35);
}

.request-button,
.community-button,
.language-button,
.signin-button,
.icon-button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
}

body[data-theme="light"] .language-button,
body[data-theme="light"] .icon-button,
body[data-theme="light"] .search-box {
  border-color: rgba(16, 18, 22, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.request-button,
.community-button,
.language-button,
.signin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 999px;
  padding: 0 17px;
  cursor: pointer;
  text-decoration: none;
}

.request-button,
.community-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, rgba(8, 29, 83, 0.95), rgba(6, 20, 48, 0.95));
  border-color: rgba(73, 142, 255, 0.42);
  font-weight: 500;
}

.community-button {
  gap: 9px;
}

.button-icon {
  width: 15px;
  height: 15px;
}

.button-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.button-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.community-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 1600;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 17, 20, 0.98), rgba(8, 9, 11, 0.98));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.community-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.community-dropdown__item:hover,
.community-dropdown__item:focus-visible {
  background: rgba(255, 255, 255, 0.07);
}

.community-dropdown__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.community-dropdown__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  width: clamp(230px, 17vw, 306px);
  min-width: 0;
  height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(35, 35, 35, 0.92), rgba(30, 30, 30, 0.92));
  color: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

body[data-theme="light"] .search-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 244, 247, 0.96));
  color: rgba(16, 18, 22, 0.44);
}

.search-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text-main);
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.search-results {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  z-index: 1600;
  max-height: 420px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 17, 20, 0.98), rgba(8, 9, 11, 0.98));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.search-results__item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  color: inherit;
  text-decoration: none;
}

.search-results__item:hover,
.search-results__item:focus-visible {
  background: rgba(255, 255, 255, 0.07);
}

.search-results__poster {
  width: 46px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  background: rgba(255, 255, 255, 0.06);
}

.search-results__poster--fallback {
  display: block;
}

.search-results__copy {
  min-width: 0;
}

.search-results__title {
  display: block;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.search-results__meta {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.74rem;
}

.search-results__empty {
  padding: 16px 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  text-align: center;
}

body[data-theme="light"] .search-box input {
  color: #101216;
}

body[data-theme="light"] .search-box input::placeholder {
  color: rgba(16, 18, 22, 0.42);
}

.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
}

.notification-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 999;
  width: 430px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(16, 17, 20, 0.98), rgba(8, 9, 11, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.notification-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.notification-panel__title {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.96rem;
  font-weight: 700;
}

.notification-panel__clear {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 180ms ease;
}

.notification-panel__clear:hover,
.notification-panel__clear:focus-visible {
  color: #ffffff;
}

.notification-panel__list {
  max-height: 430px;
  overflow-y: auto;
}

.notification-panel__list::-webkit-scrollbar {
  width: 8px;
}

.notification-panel__list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(123, 142, 160, 0.36);
}

.notification-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.notification-item:last-child {
  border-bottom: 0;
}

.notification-item--unread {
  background: linear-gradient(180deg, rgba(21, 32, 52, 0.96), rgba(13, 18, 28, 0.96));
}

.notification-item__avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.notification-item__avatar::after {
  content: "";
  position: absolute;
  top: 1px;
  right: -2px;
  width: 8px;
  height: 8px;
  border: 2px solid #111318;
  border-radius: 50%;
  background: #20c6de;
}

.notification-item__avatar--amber {
  background: linear-gradient(180deg, #ffbe55, #ff7f1e);
}

.notification-item__avatar--mint {
  background: linear-gradient(180deg, #35dcb6, #1aa184);
}

.notification-item__avatar--salmon {
  background: linear-gradient(180deg, #ff907c, #ff5e52);
}

.notification-item__avatar--blue {
  background: linear-gradient(180deg, #71c3ff, #2c87ff);
}

.notification-item__avatar--rose {
  background: linear-gradient(180deg, #ff96ba, #ff5f90);
}

.notification-item__avatar--gold {
  background: linear-gradient(180deg, #ffd86c, #ffae26);
}

.notification-item__body {
  min-width: 0;
}

.notification-item__message {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  line-height: 1.34;
}

.notification-item__message strong {
  color: #ffffff;
  font-weight: 700;
}

.notification-item__link {
  color: inherit;
  text-decoration: none;
}

.notification-item__link:hover,
.notification-item__link:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.72);
}

.notification-item__posters {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.notification-item__poster {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex: 0 0 auto;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.notification-item__poster:hover,
.notification-item__poster:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.24);
}

.notification-item__poster img,
.notification-item__poster-fallback {
  display: block;
  width: 100%;
  height: 100%;
}

.notification-item__poster img {
  object-fit: cover;
}

.notification-item__poster-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.notification-item__meta {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  line-height: 1.3;
}

.notification-item__menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.56);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.notification-item__menu:hover,
.notification-item__menu:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.notification-panel__empty {
  margin: 0;
  padding: 28px 24px 30px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
  line-height: 1.45;
  text-align: center;
}

.icon-button--theme {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 238, 238, 0.98));
  color: #14171c;
}

body[data-theme="light"] .icon-button:not(.icon-button--theme) {
  background: rgba(255, 255, 255, 0.86);
  color: #14171c;
}

body[data-theme="light"] .notification-panel {
  border-color: rgba(16, 18, 22, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 244, 247, 0.98));
  box-shadow: 0 18px 40px rgba(17, 22, 33, 0.12);
}

body[data-theme="light"] .notification-panel__title {
  color: #12151b;
}

body[data-theme="light"] .notification-panel__empty {
  color: rgba(16, 18, 22, 0.62);
}

body[data-theme="light"] .icon-button--theme {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(34, 34, 34, 0.98));
  color: #fff;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.language-button__flag {
  font-size: 1rem;
  line-height: 1;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 190px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 18, 20, 0.98), rgba(8, 8, 10, 0.98));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  text-align: left;
}

.language-option:hover,
.language-option.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.language-option__flag {
  font-size: 1.05rem;
  line-height: 1;
}

.language-option__label {
  font-size: 0.88rem;
  font-weight: 500;
}

body[data-theme="light"] .language-button {
  background: rgba(255, 255, 255, 0.86);
  color: #14171c;
}

.chevron {
  width: 13px;
  height: 13px;
  color: var(--text-soft);
}

.signin-button {
  border: 0;
  background: linear-gradient(180deg, #ff2d2d 0%, #ff3a27 100%);
  box-shadow: 0 0 24px rgba(255, 54, 49, 0.42);
  font-weight: 600;
}

.home-main {
  min-height: 100vh;
}

.movies-page {
  min-height: calc(100vh - 88px);
  padding: 18px 24px 0;
  background:
    radial-gradient(circle at top right, rgba(67, 110, 190, 0.12), transparent 24%),
    linear-gradient(180deg, #050608 0%, #030304 100%);
}

.account-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 28px 24px 0;
}

.account-hero-card,
.account-section,
.account-plan,
.account-settings__item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.96), rgba(9, 9, 9, 0.98));
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.18);
}

.account-hero-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  background:
    radial-gradient(circle at left center, rgba(255, 52, 68, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(23, 9, 10, 0.98), rgba(8, 8, 8, 0.98));
}

.account-hero-card__profile {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.account-hero-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff403d 0%, #ff1536 100%);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: 0 0 28px rgba(255, 31, 63, 0.28);
}

.account-hero-card__avatar.has-image {
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 28px rgba(51, 133, 255, 0.2);
}

.account-hero-card__copy {
  min-width: 0;
}

.account-hero-card__headline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.account-hero-card__headline h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 1.58rem + 0.8vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.account-hero-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff473f 0%, #ff1738 100%);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
}

.account-hero-card__badge.is-free {
  background: #878484;
}

.account-hero-card__badge.is-premium {
  background: #ff343d;
}

.account-hero-card__email,
.account-hero-card__meta {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.account-hero-card__edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
}

.account-hero-card__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.account-hero-card__actions button[hidden] {
  display: none !important;
}

.account-hero-card__save,
.account-hero-card__cancel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
}

.account-hero-card__save {
  border: 0;
  background: linear-gradient(180deg, #ff473f 0%, #ff1738 100%);
  color: #fff;
}

.account-hero-card__cancel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
}

.account-hero-card__edit-form {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 12px;
}

.account-hero-card__edit-form[hidden] {
  display: none !important;
}

.account-hero-card__edit-form.is-visible {
  display: grid;
}

.account-hero-card__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.account-hero-card__field > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 500;
}

.account-hero-card__field input[type="text"],
.account-hero-card__field input[type="file"] {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font: inherit;
}

.account-hero-card__field input[type="file"] {
  padding: 8px 10px;
  min-height: 40px;
}

.account-hero-card__feedback {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
}

.account-hero-card__feedback.is-error {
  color: #ff8a94;
}

.account-hero-card__feedback.is-success {
  color: #6ae19a;
}

.account-section {
  margin-top: 24px;
  padding: 18px;
}

.account-section__header {
  margin-bottom: 14px;
}

.account-section__header h2 {
  margin: 0;
  color: #fff;
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.account-plan {
  position: relative;
  max-width: 320px;
  padding: 18px 16px 16px;
  border-color: rgba(255, 67, 67, 0.24);
  background: linear-gradient(180deg, rgba(31, 7, 10, 0.98), rgba(15, 5, 7, 0.98));
}

.account-plan__tag {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 0 18px 0 18px;
  background: linear-gradient(180deg, #ff473f 0%, #ff1738 100%);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
}

.account-plan h3 {
  max-width: 180px;
  margin: 0;
  color: #fff;
  font-size: 1.34rem;
  line-height: 1.2;
}

.account-plan__price {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
  color: #fff;
  letter-spacing: -0.03em;
}

.account-plan__price-old {
  color: rgba(255, 255, 255, 0.34);
  font-size: 1.18rem;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(255, 92, 116, 0.82);
  align-self: center;
}

.account-plan__price-current {
  color: #ffffff;
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.account-plan__price-term {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.1rem;
  font-weight: 700;
  padding-bottom: 5px;
}

.account-plan__features {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.account-plan__features li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
}

.account-plan__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #32d279;
}

.account-plan__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: 18px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ff473f 0%, #ff1738 100%);
  color: #fff;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 16px 24px rgba(255, 31, 63, 0.22);
}

.account-library-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.account-library-panel {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(17, 17, 20, 0.94), rgba(8, 8, 10, 0.96));
}

.account-library-panel__header {
  margin-bottom: 14px;
}

.account-library-panel__header h3 {
  margin: 0;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
}

.account-library-panel__content.trending-grid {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

.account-library-panel__content::-webkit-scrollbar {
  height: 8px;
}

.account-library-panel__content::-webkit-scrollbar-track {
  background: transparent;
}

.account-library-panel__content::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.account-library-panel__content.trending-grid .trending-card {
  flex: 0 0 210px;
  width: 210px;
  min-width: 210px;
  max-width: 210px;
  scroll-snap-align: start;
}

.account-library-panel__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  width: 100%;
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 720px) {
  .account-library-panel__content.trending-grid .trending-card {
    flex-basis: 170px;
    width: 170px;
    min-width: 170px;
    max-width: 170px;
  }
}

.account-settings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.account-settings__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px;
  color: inherit;
  cursor: pointer;
}

.account-settings__item--password {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
}

.account-settings__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.account-settings__copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
}

.account-settings__label {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.78rem;
}

.account-settings__value {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
}

.account-settings__arrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.4rem;
  line-height: 1;
}

.account-password-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 10, 0.45);
}

.account-password-form[hidden] {
  display: none !important;
}

.account-password-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.account-password-form__field > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 500;
}

.account-password-form__field input,
.account-password-form__field .auth-field__input-wrap input {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  font: inherit;
}

.account-password-form__field input:focus,
.account-password-form__field .auth-field__input-wrap input:focus {
  outline: none;
  border-color: rgba(255, 70, 70, 0.42);
  box-shadow: 0 0 0 3px rgba(255, 70, 70, 0.12);
}

.account-password-form__actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-password-form__save,
.account-password-form__cancel {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.account-password-form__save {
  border: 0;
  background: linear-gradient(180deg, #ff473f 0%, #ff1738 100%);
  color: #fff;
}

.account-password-form__cancel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
}

.account-password-form__save[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.account-password-form__feedback {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
}

.account-password-form__feedback.is-error {
  color: #ff8a94;
}

.account-password-form__feedback.is-success {
  color: #6ae19a;
}

.account-logout-wrap {
  display: flex;
  justify-content: center;
  padding-bottom: 1rem;
}

.account-logout-button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-radius: 14px;
  padding: 0.9rem 1.75rem;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.account-logout-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 77, 77, 0.35);
  background: rgba(255, 77, 77, 0.1);
}

.movies-page__hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 0;
}

.movies-filters {
  max-width: 1180px;
  margin: 0 auto;
}

.movies-filters__toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.movies-filters__group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.movies-filters__group--selects {
  margin-left: 4px;
}

.movies-filters__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(15, 15, 17, 0.96), rgba(10, 10, 12, 0.96));
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 500;
}

.movies-filters__chip--ghost {
  background: linear-gradient(180deg, rgba(28, 8, 8, 0.92), rgba(17, 8, 8, 0.92));
  border-color: rgba(255, 69, 69, 0.16);
}

.movies-filters__chip--active {
  border-color: rgba(255, 76, 76, 0.24);
  background: linear-gradient(180deg, #ff473f 0%, #ff1336 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 31, 63, 0.28);
}

.movies-filters__chip--select {
  padding-right: 10px;
}

.movies-filters__chip--control {
  position: relative;
  gap: 10px;
  min-width: 180px;
  padding-right: 12px;
}

.movies-filters__chip--advanced {
  margin-left: auto;
}

.movies-filters__chip-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  flex: 0 0 auto;
}

.movies-filters__chip-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.movies-filters__native-select {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  appearance: none;
  cursor: pointer;
}

.movies-filters__native-select option {
  color: #0f1115;
}

.movies-filters__chip-icon svg,
.movies-filters__chevron svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.movies-filters__chevron {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.42);
}

.movies-filters__reset {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  font-size: 0.82rem;
}

.movies-results {
  padding-top: 18px;
}

.movies-results__count {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.movies-results__actions {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.movies-results__more[disabled] {
  opacity: 0.6;
  cursor: wait;
}

.movies-filters__panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.movies-range {
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(8, 14, 28, 0.9), rgba(5, 8, 14, 0.9));
  border: 1px solid rgba(38, 101, 215, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.movies-range--rating {
  background: linear-gradient(180deg, rgba(28, 20, 6, 0.9), rgba(16, 11, 4, 0.9));
  border-color: rgba(171, 125, 17, 0.26);
}

.movies-range__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.movies-range__heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.movies-range__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(23, 77, 168, 0.95), rgba(13, 39, 92, 0.95));
  color: #9bc5ff;
}

.movies-range__icon--gold {
  background: linear-gradient(180deg, rgba(154, 121, 8, 0.98), rgba(89, 67, 5, 0.98));
  color: #ffe37e;
}

.movies-range__icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.movies-range__title {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 600;
}

.movies-range__subtitle {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
}

.movies-range__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  height: 30px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

.movies-range__pill--blue {
  background: linear-gradient(180deg, rgba(17, 61, 142, 0.95), rgba(12, 42, 96, 0.95));
  color: #9bc7ff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.movies-range__pill--gold {
  background: linear-gradient(180deg, rgba(117, 93, 9, 0.98), rgba(88, 68, 5, 0.98));
  color: #ffe26e;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.movies-range__track {
  position: relative;
  margin-top: 22px;
  height: 34px;
  cursor: pointer;
}

.movies-range__line {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.movies-range__line--active {
  left: 0;
  right: auto;
  background: linear-gradient(90deg, rgba(255, 71, 84, 0.82), rgba(255, 65, 94, 0.95));
  box-shadow: 0 0 14px rgba(255, 44, 72, 0.32);
}

.movies-range__line--year {
  width: 73%;
}

.movies-range__line--rating {
  width: 100%;
}

.movies-range__thumb {
  position: absolute;
  top: 8px;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: #ff3044;
  box-shadow: 0 0 18px rgba(255, 51, 72, 0.55);
  cursor: grab;
  touch-action: none;
}

.movies-range__thumb:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.movies-range__thumb--year-left {
  left: 71%;
}

.movies-range__thumb--year-right {
  left: calc(100% - 16px);
}

.movies-range__thumb--rating-left {
  left: 0;
}

.movies-range__thumb--rating-right {
  left: calc(100% - 16px);
}

.movies-range__limits {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.movies-range__limit-label {
  display: block;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.58rem;
  line-height: 1.1;
}

.movies-range__limit-value {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.movies-range__limits-right {
  text-align: right;
}

.hero-slider {
  position: relative;
  height: 72vh;
  min-height: 560px;
  overflow: hidden;
  background: #050608;
}

body[data-theme="light"] .hero-slider,
body[data-theme="light"] .content-switcher,
body[data-theme="light"] .trending-section {
  background: #f4f5f8;
}

.slider-track {
  position: relative;
  height: 72vh;
  min-height: 560px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 450ms ease, visibility 450ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide__backdrop,
.hero-slide__overlay,
.hero-slide__intro {
  position: absolute;
  inset: 0;
}

.hero-slide__backdrop {
  background-size: cover;
  background-position: center;
  transform: none;
}

.hero-slide__backdrop--one {
  background:
    radial-gradient(circle at 78% 40%, rgba(175, 228, 255, 0.42), transparent 13%),
    radial-gradient(circle at 60% 43%, rgba(255, 88, 25, 0.42), transparent 7%),
    radial-gradient(circle at 84% 72%, rgba(132, 176, 224, 0.28), transparent 11%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(5, 8, 12, 0.82) 28%, rgba(5, 10, 16, 0.52) 56%, rgba(9, 13, 18, 0.34) 72%, rgba(7, 10, 15, 0.54) 100%),
    linear-gradient(180deg, rgba(54, 59, 63, 0.36), rgba(10, 13, 16, 0.88)),
    radial-gradient(circle at 84% 49%, rgba(148, 212, 255, 0.18), rgba(3, 5, 10, 0) 28%);
}

.hero-slide__backdrop--two {
  background:
    radial-gradient(circle at 74% 44%, rgba(0, 156, 255, 0.34), transparent 15%),
    radial-gradient(circle at 62% 35%, rgba(255, 0, 110, 0.24), transparent 10%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(6, 8, 15, 0.68) 34%, rgba(5, 13, 31, 0.4) 68%, rgba(6, 9, 17, 0.55) 100%),
    linear-gradient(135deg, #040507 0%, #0b1223 45%, #0a1c33 100%);
}

.hero-slide__backdrop--three {
  background:
    radial-gradient(circle at 75% 42%, rgba(255, 201, 94, 0.24), transparent 16%),
    radial-gradient(circle at 58% 48%, rgba(255, 82, 11, 0.3), transparent 11%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(8, 7, 4, 0.66) 36%, rgba(31, 21, 8, 0.38) 68%, rgba(14, 12, 8, 0.54) 100%),
    linear-gradient(135deg, #080707 0%, #1a120b 46%, #2c2517 100%);
}

.hero-slide__backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.02) 48%, rgba(0, 0, 0, 0.14)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 132px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 118px
    );
  mix-blend-mode: normal;
  opacity: 0.06;
}

.hero-slide__backdrop::after {
  content: "";
  position: absolute;
  inset: 92px 12% 0 auto;
  width: 46%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(230, 241, 252, 0.08), rgba(102, 138, 176, 0.01)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%);
  clip-path: polygon(0 0, 100% 0, 100% 84%, 74% 84%, 74% 100%, 0 100%);
  opacity: 0.1;
}

.hero-slide__overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.025), transparent 35%);
}

body[data-theme="light"] .hero-slide__overlay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.16), transparent 35%);
}

.hero-slide__intro,
.hero-slider__static-content {
  position: absolute;
  left: clamp(140px, 16vw, 308px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(640px, calc(100% - 420px));
  text-align: left;
  color: #fff;
}

body[data-theme="light"] .hero-slide__intro,
body[data-theme="light"] .hero-slider__static-content {
  color: #fff;
}

.hero-slide__intro {
  top: 40%;
  transform: translateY(-50%);
}

.hero-slider__static-content {
  top: 59%;
  transform: translateY(-50%);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-tags span {
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 500;
}

.hero-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 2.5rem + 1.6vw, 4.2rem);
  font-weight: 500;
  line-height: 0.9;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.hero-rating {
  color: #ffcf3f;
}

.hero-heading {
  margin: 0;
  max-width: 14ch;
  color: #fff;
  font-size: clamp(2.8rem, 2.1rem + 1vw, 3.55rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero-copy {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-price {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.02rem;
  font-weight: 400;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(180deg, #ff3129 0%, #ff1616 100%);
  box-shadow: 0 18px 34px rgba(255, 37, 37, 0.38);
  color: #fff;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
}

.hero-cta[hidden] {
  display: none;
}

.hero-cta__icon {
  width: 16px;
  height: 16px;
}

.hero-cta__icon svg,
.slider-arrow svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(77, 91, 102, 0.38);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.slider-arrow--left {
  left: 18px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.slider-arrow--right {
  right: 2px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 4px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition: 180ms ease;
}

.slider-dot.is-active {
  width: 32px;
  height: 4px;
  background: #fff;
}

.content-switcher {
  display: flex;
  justify-content: center;
  padding: 26px 20px 44px;
  background: #000;
}

.content-switcher__inner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(5, 5, 5, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

body[data-theme="light"] .content-switcher__inner {
  border-color: rgba(16, 18, 22, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 243, 246, 0.98));
  box-shadow: 0 8px 20px rgba(17, 22, 33, 0.08);
}

.content-switcher__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 150px;
  height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: 180ms ease;
}

body[data-theme="light"] .content-switcher__tab {
  color: rgba(16, 18, 22, 0.72);
}

.content-switcher__tab.is-active {
  background: linear-gradient(180deg, #ff3d34 0%, #ff0f64 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 33, 57, 0.34);
}

.content-switcher__icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.content-switcher__icon svg,
.content-switcher__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.trending-section {
  padding: 0 clamp(18px, 3vw, 28px) 60px;
  background: #000;
}

.latest-section {
  padding-top: 4px;
}

.site-stats {
  padding: 18px 24px 26px;
  background:
    radial-gradient(circle at left center, rgba(110, 22, 22, 0.28), transparent 28%),
    radial-gradient(circle at right center, rgba(22, 48, 86, 0.28), transparent 26%),
    #060606;
}

.site-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}

.site-stats__card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(14, 14, 16, 0.94), rgba(9, 9, 11, 0.94));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.site-stats__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(95, 18, 18, 0.95), rgba(49, 10, 10, 0.95));
  color: #ff5252;
  box-shadow: inset 0 0 0 1px rgba(255, 120, 120, 0.1);
}

.site-stats__icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.site-stats__copy {
  min-width: 0;
}

.site-stats__value {
  margin: 0;
  color: rgba(255, 255, 255, 0.97);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
}

.site-stats__label {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.6rem;
  line-height: 1.2;
}

.site-footer {
  margin-top: 56px;
  background: #17191f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 34px 24px 28px;
  display: grid;
  grid-template-columns: minmax(280px, 1.8fr) repeat(4, minmax(130px, 0.75fr));
  gap: 28px 42px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__logo {
  display: inline-flex;
  align-self: flex-start;
  align-items: baseline;
  gap: 0;
  padding: 0;
  background: transparent;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  text-decoration: none;
}

.site-footer__logo-movie {
  color: #ff4a43;
}

.site-footer__logo-wave {
  color: #4a86ff;
}

.site-footer__description,
.site-footer__disclaimer {
  max-width: 760px;
  margin: 0;
  color: rgba(184, 196, 228, 0.9);
  font-size: 0.96rem;
  line-height: 1.65;
}

.site-footer__disclaimer {
  font-size: 0.84rem;
  line-height: 1.7;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.site-footer__heading {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-footer__link {
  color: #18d6ef;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #7fefff;
  text-decoration: underline;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 0 24px;
  background: #101216;
}

.site-footer__copyright {
  margin: 0;
  color: rgba(184, 196, 228, 0.88);
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 1100px) {
  .site-footer__inner {
    grid-template-columns: minmax(260px, 1.5fr) repeat(2, minmax(150px, 1fr));
  }
}

@media (max-width: 760px) {
  .site-footer {
    margin-top: 42px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 18px 24px;
  }

  .site-footer__logo {
    font-size: 1.6rem;
  }

  .site-footer__description,
  .site-footer__disclaimer,
  .site-footer__copyright {
    font-size: 0.92rem;
  }
}

.details-page {
  min-height: calc(100vh - 88px);
  padding-bottom: 0;
  background:
    radial-gradient(circle at top right, rgba(60, 96, 175, 0.14), transparent 24%),
    linear-gradient(180deg, #060709 0%, #030304 100%);
}

.details-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

.details-hero__backdrop,
.details-hero__overlay {
  position: absolute;
  inset: 0;
}

.details-hero__backdrop {
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.details-hero__overlay {
  background:
    linear-gradient(90deg, rgba(4, 5, 8, 0.2) 0%, rgba(4, 6, 10, 0.2) 38%, rgba(4, 6, 10, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.details-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px 72px;
}

.details-poster {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 0.72;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.36);
}

.details-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-copy__eyebrow {
  display: none;
}

.details-copy__title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 2.2rem + 2.2vw, 5rem);
  line-height: 0.95;
}

.details-copy__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
}

.details-copy__ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.details-copy__genres {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.details-copy__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 22px;
  align-items: center;
}

.details-copy__actions .details-action {
  white-space: nowrap;
}

.details-copy__summary {
  max-width: 62ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.04rem;
  line-height: 1.8;
}

.details-copy__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  margin-top: 22px;
}

.details-copy__status {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.details-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 0;
}

.details-cast-section {
  padding-top: 34px;
}

.details-player-section {
  padding-top: 34px;
}

.details-player-shell {
  position: relative;
  width: min(100%, 1080px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(255, 71, 63, 0.12), transparent 32%),
    #090b10;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 24px 44px rgba(0, 0, 0, 0.32);
}

.details-player-shell__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  border: 0;
  background:
    var(--details-player-overlay-image, none),
    linear-gradient(180deg, rgba(7, 9, 14, 0.18), rgba(7, 9, 14, 0.58)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 38%);
  background-size: cover, auto, auto;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  cursor: pointer;
}

.details-player-shell__overlay[hidden] {
  display: none !important;
}

.details-player-shell__overlay-play {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
}

.details-player-shell__overlay-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid #ffffff;
}

.details-player-shell__frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  background: #05060a;
  border: 0;
}

.details-player-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.details-player-actions__button {
  min-width: 132px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.details-player-actions__button.is-active {
  border-color: rgba(255, 68, 68, 0.3);
  background: linear-gradient(180deg, #ff473f 0%, #ff1738 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 31, 63, 0.2);
}

.details-player-note {
  margin: 14px auto 0;
  max-width: 760px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.6;
}

.details-player-series-controls {
  width: min(100%, 1080px);
  margin: 20px auto 0;
  text-align: left;
}

.details-player-series-controls .details-episodes__toolbar {
  margin-bottom: 16px;
}

.details-player-series-controls .details-episodes__season-picker {
  min-width: 240px;
}

.details-utility {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}

.details-utility__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
}

.details-utility__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.details-utility__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.details-utility__button--like {
  min-width: 58px;
  padding: 0 10px;
  gap: 6px;
}

.details-utility__button--like.is-active {
  border-color: rgba(255, 76, 76, 0.24);
  background: rgba(255, 71, 63, 0.16);
  color: #ffffff;
}

.details-utility__button.is-active {
  border-color: rgba(255, 76, 76, 0.24);
  background: rgba(255, 71, 63, 0.16);
  color: #ffffff;
}

.details-utility__count {
  min-width: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.details-share-panel {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: max-height 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.details-share-panel[hidden] {
  display: flex;
}

.details-share-panel.is-open {
  max-height: 170px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.details-share-panel__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.details-share-panel__item:hover,
.details-share-panel__item:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.26);
}

.details-share-panel__item--facebook {
  background: #4c6fbe;
}

.details-share-panel__item--x {
  background: #050505;
}

.details-share-panel__item--telegram {
  background: #1f9fea;
}

.details-share-panel__item--whatsapp {
  background: #25d366;
}

.details-share-panel__item--copy {
  background: linear-gradient(180deg, #2f3541 0%, #181d25 100%);
}

.details-subscribe-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 24px;
}

.details-subscribe-modal[hidden] {
  display: none !important;
}

.details-subscribe-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 8, 0.72);
  backdrop-filter: blur(8px);
}

.details-subscribe-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 32px 28px 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top, rgba(255, 61, 86, 0.2), transparent 56%),
    linear-gradient(180deg, rgba(29, 14, 18, 0.98), rgba(17, 17, 21, 0.98));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.details-subscribe-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.details-subscribe-modal__title {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
}

.details-subscribe-modal__copy {
  margin: 14px auto 24px;
  max-width: 30ch;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
}

.details-subscribe-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff3148 0%, #ff6a3d 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 35px rgba(255, 60, 73, 0.28);
}

.details-trailer-modal {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: grid;
  place-items: center;
  padding: 24px;
}

.details-trailer-modal[hidden] {
  display: none !important;
}

.details-trailer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 8, 0.78);
  backdrop-filter: blur(8px);
}

.details-trailer-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  padding: 24px 24px 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top, rgba(255, 61, 86, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(18, 16, 22, 0.98), rgba(12, 12, 16, 0.98));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.details-trailer-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.details-trailer-modal__title {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 800;
}

.details-trailer-modal__player {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #06070c;
}

.details-trailer-modal__iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #06070c;
}

.details-trailer-modal__message {
  margin: 0;
  padding: 40px 16px 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.details-pill,
.details-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  gap: 8px;
  cursor: pointer;
}

.details-pill {
  min-height: 40px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
}

.details-pill__label {
  font-weight: 800;
}

.details-pill--imdb {
  background: linear-gradient(180deg, #ffd029 0%, #ffbe13 100%);
  border-color: rgba(255, 208, 41, 0.3);
  color: #181200;
}

.details-action--primary {
  border-color: rgba(255, 76, 76, 0.26);
  background: linear-gradient(180deg, #ff473f 0%, #ff1738 100%);
  box-shadow: 0 16px 28px rgba(255, 31, 63, 0.26);
}

.details-action:not(.details-action--primary) {
  background: rgba(255, 255, 255, 0.08);
}

.details-action[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.details-fact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.details-fact__label {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.details-fact__value {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
}

.details-cast-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 150px);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

.details-cast-grid::-webkit-scrollbar {
  height: 8px;
}

.details-cast-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.details-episodes-section {
  padding-top: 14px;
}

.details-episodes__selectors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.details-episodes__selector-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.details-episodes__selector-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.details-episodes__selector-icon {
  width: 15px;
  height: 15px;
  object-fit: contain;
  opacity: 0.9;
}

.details-episodes__selector {
  width: 100%;
  min-height: 42px;
  padding: 0 38px 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-color: rgba(14, 14, 18, 0.95);
  color: #ffffff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.82) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.details-episodes__selector:focus {
  outline: none;
  border-color: rgba(255, 76, 76, 0.46);
  box-shadow: 0 0 0 3px rgba(255, 76, 76, 0.14);
}

.details-episodes__toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.details-episodes__season-picker {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  color: #ffffff;
}

.details-episodes__season-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: #111111;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.details-episodes__season-toggle:hover,
.details-episodes__season-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background: #151515;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.03);
  outline: none;
}

.details-episodes__season-icon,
.details-episodes__season-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
}

.details-episodes__season-icon svg,
.details-episodes__season-chevron svg {
  width: 18px;
  height: 18px;
}

.details-episodes__season-label {
  flex: 1;
  font-size: 0.98rem;
  font-weight: 700;
  text-align: left;
}

.details-episodes__season-chevron {
  transition: transform 0.2s ease;
}

.details-episodes__season-picker.is-open .details-episodes__season-chevron {
  transform: rotate(180deg);
}

.details-episodes__season-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 12;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  min-width: 220px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: #101010;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.details-episodes__season-menu[hidden] {
  display: none !important;
}

.details-episodes__season-option {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #ffffff;
  text-align: left;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.details-episodes__season-option:hover,
.details-episodes__season-option:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.details-episodes__season-option.is-active {
  background: transparent;
  color: #ffffff;
}

.details-episodes__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 12px;
  margin-top: 16px;
}

.details-episodes__item {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #2c2c2c;
  color: #ffffff;
  text-align: left;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.35;
}

.details-episodes__item.is-active {
  border-color: rgba(255, 255, 255, 0.82);
  background: #303030;
}

.details-episodes__status {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.welcome-page {
  min-height: calc(100vh - 104px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 0;
}

.welcome-banner {
  width: min(100%, 920px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.welcome-banner__image {
  display: block;
  width: min(100%, 360px);
  height: auto;
  object-fit: contain;
}

.welcome-search {
  width: min(100%, 560px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.welcome-search__input {
  flex: 1;
  min-width: 0;
  height: 56px;
  padding: 0 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(20, 20, 24, 0.92);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.welcome-search__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.welcome-search__input:focus {
  border-color: rgba(255, 79, 88, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 79, 88, 0.12);
}

.welcome-search__button {
  height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff3d4a 0%, #ff5a36 100%);
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(255, 61, 74, 0.24);
}

.welcome-search__button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  box-shadow: none;
}

.welcome-headline {
  width: min(100%, 760px);
  margin: 6px 0 0;
  color: #ffffff;
  text-align: center;
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.welcome-note {
  width: min(100%, 720px);
  margin: 4px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.6;
}

.welcome-note__link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.welcome-note__link:hover,
.welcome-note__link:focus-visible {
  color: #ff5a5f;
  text-decoration: underline;
}

.welcome-view-site {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 30px auto 0;
  padding: 14px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff3d4a 0%, #ff5a36 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(255, 61, 74, 0.22);
}

.welcome-view-site__icon {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.welcome-content {
  width: min(100%, 980px);
  margin: 42px auto 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px 32px;
  border-radius: 28px;
  background: #272727;
}

.welcome-content__section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.welcome-content__title {
  width: min(100%, 900px);
  margin: 0;
  color: #ffffff;
  text-align: left;
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
  font-weight: 800;
  line-height: 1.2;
}

.welcome-content__text {
  width: min(100%, 900px);
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.7;
}

.welcome-content__text--strong {
  color: #ffffff;
  font-weight: 700;
}

.faq-page {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 98px);
}

.faq-section {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.faq-section__intro {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.faq-section__eyebrow {
  margin: 0 0 10px;
  color: #ff4b55;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-section__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 1.4rem + 1.6vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.faq-section__copy {
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-card {
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    #151515;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.faq-card__question {
  margin: 0;
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1.45;
}

.faq-card__answer {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.8;
}

.faq-card__link {
  color: #27d7ff;
  font-weight: 600;
  text-decoration: none;
}

.faq-card__link:hover,
.faq-card__link:focus-visible {
  color: #7be7ff;
  text-decoration: underline;
}

.faq-page > div[style] {
  width: min(100%, calc(100% - 48px));
  margin: 0 auto;
}

.faq-page iframe,
.request-form iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  border: 0;
  border-radius: 18px;
  background: rgba(10, 10, 14, 0.9);
}

.welcome-subscribe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin: 28px auto 0;
  padding: 0 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff3d4a 0%, #ff5a36 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(255, 61, 74, 0.22);
}

@media (max-width: 760px) {
  .welcome-search {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .welcome-search__input {
    height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 0.92rem;
  }

  .welcome-search__button {
    width: auto;
    min-width: 108px;
    height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 0.92rem;
  }

  .welcome-headline {
    width: min(100%, 560px);
    font-size: clamp(1.15rem, 5.4vw, 1.65rem);
  }

  .welcome-view-site {
    margin-top: 24px;
    padding: 13px 20px;
    font-size: 0.95rem;
  }

  .welcome-content {
    margin-top: 32px;
    gap: 22px;
    padding: 28px 18px;
    border-radius: 22px;
  }

  .welcome-content__title {
    font-size: clamp(1.1rem, 4.3vw, 1.35rem);
  }

  .welcome-content__text {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .welcome-subscribe-button {
    min-height: 50px;
    margin-top: 22px;
    padding: 0 22px;
    font-size: 0.94rem;
  }

  .faq-section {
    width: min(100%, calc(100% - 24px));
    padding: 34px 0 56px;
  }

  .faq-section__intro {
    margin-bottom: 24px;
  }

  .faq-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .faq-card__question {
    font-size: 1.02rem;
  }

  .faq-card__answer {
    font-size: 0.92rem;
    line-height: 1.7;
  }
}

.details-cast-card {
  min-width: 0;
}

.details-cast-card__media {
  aspect-ratio: 0.88;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.details-cast-card__image,
.details-cast-card__placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.details-cast-card__image {
  object-fit: cover;
}

.details-cast-card__placeholder {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.details-cast-card__placeholder--0 {
  background: linear-gradient(135deg, #9e2a2b, #ef6351);
}

.details-cast-card__placeholder--1 {
  background: linear-gradient(135deg, #2541b2, #1768ac);
}

.details-cast-card__placeholder--2 {
  background: linear-gradient(135deg, #6c3baa, #9d4edd);
}

.details-cast-card__placeholder--3 {
  background: linear-gradient(135deg, #2a9d8f, #52b788);
}

.details-cast-card__placeholder--4 {
  background: linear-gradient(135deg, #f77f00, #fcbf49);
}

.details-cast-card__name {
  margin: 12px 0 4px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.details-cast-card__role {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  line-height: 1.4;
}

.trending-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.trending-section__title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trending-section__flame {
  display: inline-flex;
  width: 14px;
  height: 14px;
  color: #ff7a00;
}

.trending-section__flame svg,
.trending-section__more-icon svg,
.trending-card__action svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.trending-section__title {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.08rem;
  font-weight: 500;
}

body[data-theme="light"] .trending-section__title {
  color: #111827;
}

.trending-section__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  font-size: 0.86rem;
}

body[data-theme="light"] .trending-section__more {
  color: rgba(16, 18, 22, 0.56);
}

.trending-section__more-icon {
  width: 12px;
  height: 12px;
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.trending-grid__status {
  grid-column: 1 / -1;
  padding: 28px 20px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  text-align: center;
}

@media (max-width: 1280px) {
  .trending-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .trending-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .subscribe-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-primary-grid {
    grid-template-columns: 1fr;
  }

  .account-settings-grid,
  .account-security-grid {
    grid-template-columns: 1fr;
  }

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

  .account-history-grid {
    grid-template-columns: 1fr;
  }

  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-showcase {
    min-height: auto;
  }

  .auth-panel-wrap {
    padding-top: 0;
    padding-bottom: 30px;
  }

  .details-hero__content {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
  }

  .details-poster {
    max-width: 280px;
  }

  .payment-methods {
    width: min(100%, 640px);
  }

}

.trending-card {
  min-width: 0;
}

.trending-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.trending-card__poster {
  position: relative;
  aspect-ratio: 0.71;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, #111, #050505);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.trending-card__poster-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body[data-theme="light"] .trending-card__poster {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 10px 24px rgba(17, 22, 33, 0.08);
}

.trending-card__link:hover .trending-card__poster,
.trending-card__link:focus-visible .trending-card__poster {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 16px 28px rgba(0, 0, 0, 0.28);
}

.trending-card__poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.4)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 42%);
}

.trending-card__poster::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.trending-card__badge,
.trending-card__quality {
  position: absolute;
  top: 6px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 14px;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.trending-card__badge {
  left: 6px;
  background: linear-gradient(180deg, #ff3a34, #ff0f0f);
  color: #fff;
}

.trending-card__quality {
  right: 6px;
  background: rgba(0, 0, 0, 0.7);
  color: rgba(255, 255, 255, 0.9);
}

.trending-card__actions {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trending-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.trending-card__action--play {
  background: rgba(255, 255, 255, 0.18);
}

.trending-card__action-icon {
  width: 11px;
  height: 11px;
}

.trending-card__action-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trending-card__body {
  padding-top: 8px;
}

.trending-card__name {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.94rem;
  font-weight: 500;
}

body[data-theme="light"] .trending-card__name {
  color: #16181d;
}

.trending-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.7rem;
}

body[data-theme="light"] .trending-card__meta {
  color: rgba(16, 18, 22, 0.58);
}

.trending-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffcf3f;
}

.trending-card__rating-badge {
  display: block;
  width: 28px;
  height: auto;
  border-radius: 2px;
  flex: 0 0 auto;
}

.trending-card__genres {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.trending-card__genre {
  padding: 4px 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  line-height: 1;
}

body[data-theme="light"] .trending-card__genre {
  background: rgba(17, 22, 33, 0.08);
  color: rgba(16, 18, 22, 0.68);
}

.poster-shadow-rising {
  background:
    radial-gradient(circle at 42% 18%, rgba(242, 244, 241, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(50, 59, 64, 0.12), rgba(0, 0, 0, 0.7)),
    linear-gradient(120deg, #202c2c 0%, #0d1515 46%, #060909 100%);
}

.poster-neon-dreams {
  background:
    linear-gradient(180deg, rgba(5, 13, 20, 0.1), rgba(0, 0, 0, 0.62)),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0) 0 17%, rgba(18, 34, 47, 0.72) 17% 19%, rgba(0, 0, 0, 0) 19% 36%),
    linear-gradient(120deg, #13273a 0%, #08111b 56%, #03070b 100%);
}

.poster-lost-kingdom {
  background:
    radial-gradient(circle at 44% 24%, rgba(255, 255, 255, 0.64), transparent 32%),
    linear-gradient(180deg, rgba(203, 168, 111, 0.06), rgba(0, 0, 0, 0.7)),
    linear-gradient(135deg, #d1c2aa 0%, #88704e 48%, #14110f 100%);
}

.poster-deep-waters {
  background:
    radial-gradient(circle at 58% 22%, rgba(115, 86, 255, 0.2), transparent 24%),
    radial-gradient(circle at 34% 60%, rgba(33, 89, 230, 0.24), transparent 20%),
    linear-gradient(140deg, #2838be 0%, #0d1048 52%, #06070f 100%);
}

.poster-urban-legends {
  background:
    radial-gradient(circle at 48% 28%, rgba(255, 168, 0, 0.22), transparent 16%),
    linear-gradient(180deg, rgba(255, 90, 60, 0.14), rgba(0, 0, 0, 0.65)),
    linear-gradient(135deg, #8b2519 0%, #33110f 52%, #080606 100%);
}

.poster-velocity {
  background:
    radial-gradient(circle at 76% 72%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(180deg, rgba(43, 86, 94, 0.06), rgba(0, 0, 0, 0.68)),
    linear-gradient(125deg, #20342e 0%, #0f1715 46%, #060707 100%);
}

.poster-after-effect {
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 235, 175, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(55, 75, 77, 0.12), rgba(0, 0, 0, 0.72)),
    linear-gradient(125deg, #1c2e2d 0%, #091214 54%, #030505 100%);
}

.poster-eternal-flame {
  background:
    radial-gradient(circle at 46% 46%, rgba(255, 227, 220, 0.46), transparent 28%),
    linear-gradient(180deg, rgba(255, 135, 110, 0.05), rgba(0, 0, 0, 0.58)),
    linear-gradient(135deg, #c5c6cb 0%, #73676a 56%, #161113 100%);
}

.poster-code-black {
  background:
    radial-gradient(circle at 54% 26%, rgba(222, 199, 163, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(86, 90, 122, 0.08), rgba(0, 0, 0, 0.66)),
    linear-gradient(135deg, #30354f 0%, #131622 54%, #050607 100%);
}

.poster-serenity {
  background:
    radial-gradient(circle at 42% 26%, rgba(255, 240, 191, 0.2), transparent 12%),
    radial-gradient(circle at 60% 40%, rgba(177, 24, 24, 0.2), transparent 18%),
    linear-gradient(135deg, #1d2123 0%, #0c0e0f 58%, #030303 100%);
}

.poster-nebula {
  background:
    radial-gradient(circle at 46% 28%, rgba(255, 255, 255, 0.12), transparent 16%),
    radial-gradient(circle at 55% 54%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(135deg, #6c6870 0%, #27252a 58%, #0a090a 100%);
}

.poster-twitness {
  background:
    radial-gradient(circle at 52% 22%, rgba(210, 204, 176, 0.14), transparent 16%),
    linear-gradient(180deg, rgba(64, 71, 89, 0.12), rgba(0, 0, 0, 0.7)),
    linear-gradient(130deg, #2a3046 0%, #101420 54%, #050607 100%);
}

.poster-breaking-point {
  background:
    radial-gradient(circle at 40% 88%, rgba(255, 110, 31, 0.48), transparent 18%),
    linear-gradient(180deg, rgba(255, 154, 87, 0.06), rgba(0, 0, 0, 0.68)),
    linear-gradient(125deg, #311714 0%, #140c0c 56%, #050404 100%);
}

.poster-silent-echo {
  background:
    radial-gradient(circle at 48% 22%, rgba(255, 143, 62, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(250, 73, 73, 0.08), rgba(0, 0, 0, 0.68)),
    linear-gradient(135deg, #7f2119 0%, #2b0e0d 56%, #060404 100%);
}

.poster-emerald-city {
  background:
    radial-gradient(circle at 50% 16%, rgba(243, 244, 245, 0.26), transparent 20%),
    linear-gradient(180deg, rgba(117, 146, 102, 0.08), rgba(0, 0, 0, 0.64)),
    linear-gradient(135deg, #b7b39b 0%, #66704d 52%, #11120d 100%);
}

.poster-night-shift {
  background:
    radial-gradient(circle at 60% 40%, rgba(255, 103, 169, 0.22), transparent 16%),
    linear-gradient(180deg, rgba(255, 109, 57, 0.08), rgba(0, 0, 0, 0.68)),
    linear-gradient(135deg, #7e315b 0%, #23192a 46%, #070608 100%);
}

.poster-phoenix-rising {
  background:
    radial-gradient(circle at 54% 26%, rgba(255, 147, 59, 0.32), transparent 11%),
    radial-gradient(circle at 78% 44%, rgba(135, 193, 255, 0.28), transparent 18%),
    linear-gradient(135deg, #26323f 0%, #121821 48%, #050607 100%);
}

.poster-summit {
  background:
    radial-gradient(circle at 60% 26%, rgba(255, 255, 255, 0.26), transparent 16%),
    linear-gradient(180deg, rgba(173, 173, 173, 0.08), rgba(0, 0, 0, 0.62)),
    linear-gradient(135deg, #726c63 0%, #393530 52%, #0b0b0a 100%);
}

.poster-wire-room {
  background:
    radial-gradient(circle at 44% 30%, rgba(51, 204, 255, 0.24), transparent 16%),
    linear-gradient(180deg, rgba(69, 79, 92, 0.08), rgba(0, 0, 0, 0.66)),
    linear-gradient(135deg, #213446 0%, #10161d 54%, #050607 100%);
}

.poster-midnight-code {
  background:
    radial-gradient(circle at 48% 20%, rgba(255, 96, 96, 0.18), transparent 15%),
    linear-gradient(180deg, rgba(88, 63, 112, 0.08), rgba(0, 0, 0, 0.68)),
    linear-gradient(135deg, #3b2a5c 0%, #171124 54%, #060609 100%);
}

.poster-last-broadcast {
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(61, 84, 72, 0.08), rgba(0, 0, 0, 0.7)),
    linear-gradient(135deg, #2c443b 0%, #101817 52%, #040505 100%);
}

.poster-northern-case {
  background:
    radial-gradient(circle at 56% 20%, rgba(193, 227, 255, 0.24), transparent 16%),
    linear-gradient(180deg, rgba(91, 115, 135, 0.08), rgba(0, 0, 0, 0.7)),
    linear-gradient(135deg, #637587 0%, #242b33 54%, #08090b 100%);
}

.poster-golden-hour {
  background:
    radial-gradient(circle at 46% 24%, rgba(255, 200, 122, 0.26), transparent 18%),
    linear-gradient(180deg, rgba(151, 116, 62, 0.08), rgba(0, 0, 0, 0.68)),
    linear-gradient(135deg, #876033 0%, #2d2015 54%, #080605 100%);
}

.poster-signal-lost {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.16), transparent 16%),
    linear-gradient(180deg, rgba(80, 80, 80, 0.08), rgba(0, 0, 0, 0.68)),
    linear-gradient(135deg, #555658 0%, #222326 54%, #070707 100%);
}

.poster-echo-lake {
  background:
    radial-gradient(circle at 50% 22%, rgba(91, 176, 255, 0.22), transparent 18%),
    linear-gradient(180deg, rgba(71, 104, 121, 0.08), rgba(0, 0, 0, 0.68)),
    linear-gradient(135deg, #29475f 0%, #101a22 54%, #050607 100%);
}

.poster-city-under {
  background:
    radial-gradient(circle at 48% 28%, rgba(255, 73, 73, 0.18), transparent 16%),
    linear-gradient(180deg, rgba(124, 64, 64, 0.08), rgba(0, 0, 0, 0.7)),
    linear-gradient(135deg, #5e2121 0%, #1f0d0d 54%, #060404 100%);
}

.poster-driftline {
  background:
    radial-gradient(circle at 56% 18%, rgba(255, 255, 255, 0.2), transparent 16%),
    linear-gradient(180deg, rgba(114, 128, 147, 0.08), rgba(0, 0, 0, 0.68)),
    linear-gradient(135deg, #607086 0%, #28303a 54%, #08090b 100%);
}

@media (max-width: 1360px) {
  .site-header {
    gap: 14px;
    padding: 18px 28px 14px;
  }

  .primary-nav {
    gap: 4px;
  }

  .nav-link {
    padding: 0 10px;
    font-size: 0.88rem;
  }

  .header-actions {
    gap: 8px;
  }

  .request-button,
  .community-button,
  .language-button,
  .signin-button {
    padding: 0 14px;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .site-header {
    gap: 10px;
    padding: 18px 18px 14px;
  }

  .primary-nav {
    gap: 4px;
  }

  .nav-link {
    height: 28px;
    padding: 0 8px;
    font-size: 0.8rem;
  }

  .search-box {
    width: 170px;
    height: 36px;
    padding: 0 12px;
  }

  .request-button,
  .community-button,
  .language-button,
  .signin-button {
    height: 36px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

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

@media (min-width: 761px) and (max-width: 940px) {
  .site-header {
    gap: 8px;
    padding: 10px 12px;
  }

  .brand-mark {
    font-size: 1.55rem;
  }

  .primary-nav {
    gap: 2px;
  }

  .nav-link {
    height: 26px;
    padding: 0 6px;
    gap: 5px;
    font-size: 0.72rem;
  }

  .header-actions {
    gap: 6px;
  }

  .search-box {
    width: 120px;
    height: 32px;
    padding: 0 10px;
    gap: 8px;
    font-size: 0.72rem;
  }

  .search-icon {
    width: 13px;
    height: 13px;
  }

  .request-button,
  .community-button,
  .language-button,
  .signin-button {
    height: 32px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .language-button {
    gap: 5px;
    padding-right: 9px;
  }

  .icon-button {
    width: 32px;
    height: 32px;
  }

  .notification-dot {
    top: 6px;
    right: 7px;
  }
}

@media (min-width: 761px) and (max-width: 860px) {
  .brand-mark {
    font-size: 1.42rem;
  }

  .nav-icon {
    display: none;
  }

  .nav-link {
    padding: 0 5px;
    gap: 0;
    font-size: 0.68rem;
  }

  .header-actions {
    gap: 5px;
  }

  .request-button,
  .community-button,
  .language-button,
  .signin-button {
    padding: 0 8px;
    font-size: 0.68rem;
  }

  .search-box {
    width: 100px;
    padding: 0 8px;
  }

  .search-box input::placeholder {
    font-size: 0.68rem;
  }
}

@media (max-width: 760px) {
  .subscribe-header {
    padding: 16px;
  }

  .subscribe-main {
    padding: 22px 16px 48px;
  }

  .subscribe-hero__title {
    font-size: 2.2rem;
  }

  .subscribe-hero__highlight {
    font-size: 3.1rem;
  }

  .subscribe-plan-card {
    width: 100%;
  }

  .payment-main {
    gap: 20px;
  }

  .payment-methods {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 8px;
    border-radius: 20px;
  }

  .payment-methods__button {
    width: 100%;
    min-width: 0;
    padding: 0 16px;
  }

  .payment-methods__label {
    white-space: normal;
    text-align: left;
  }

  .payment-card {
    width: 100%;
    padding: 24px 18px;
    border-radius: 20px;
  }

  .payment-crypto-options__buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .payment-crypto-options__button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 0 16px;
  }

  .payment-crypto-options__note {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .payment-card__button {
    width: 100%;
    min-width: 0;
  }

  .payment-warning {
    padding: 18px 16px 16px;
  }

  .payment-warning__title {
    font-size: 1.3rem;
  }

  .payment-warning__text,
  .payment-warning__note {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .payment-warning__email {
    font-size: 1rem;
  }

  .payment-warning__email span {
    font-size: 1rem;
  }

  .payment-warning__alert,
  .payment-warning__note-label {
    font-size: 1rem;
  }

  .subscribe-feature-grid {
    grid-template-columns: 1fr;
  }

  .subscribe-section,
  .subscribe-section--devices,
  .subscribe-cta {
    margin-top: 64px;
  }

  .auth-page {
    background: linear-gradient(180deg, #1e0407 0%, #000 100%);
  }

  .auth-showcase {
    padding: 22px 16px 26px;
  }

  .auth-showcase__copy {
    margin-top: 26px;
  }

  .auth-showcase__title {
    font-size: 2.4rem;
  }

  .auth-feature-grid {
    grid-template-columns: 1fr;
  }

  .auth-stats {
    gap: 18px;
    flex-wrap: wrap;
  }

  .auth-panel-wrap {
    padding: 0 16px 26px;
  }

  .auth-panel {
    width: 100%;
    padding: 18px 16px 16px;
  }

  .page-frame {
    padding: 0 0 28px;
  }

  body.is-mobile-menu-open {
    overflow: hidden;
  }

  .site-header {
    position: relative;
    gap: 14px;
    min-height: 86px;
    padding: 16px 18px;
    background: #000;
  }

  .brand-mark {
    font-size: 1.95rem;
  }

  .mobile-actions {
    display: flex;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-mobile-search-open {
    overflow: visible;
  }

  .site-header.is-mobile-search-open .header-actions {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    z-index: 40;
    display: flex;
    justify-content: stretch;
    padding: 0;
    background: transparent;
  }

  .site-header.is-mobile-search-open .header-actions > :not(.search-box) {
    display: none;
  }

  .site-header.is-mobile-search-open .search-box {
    display: flex;
    width: 100%;
    min-width: 0;
    height: 58px;
    padding: 0 18px;
    border-radius: 20px;
    background: rgba(16, 18, 24, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  }

  .site-header.is-mobile-search-open .search-box input {
    font-size: 1rem;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 220ms ease;
  }

  .mobile-menu-overlay[hidden] {
    display: block;
    pointer-events: none;
  }

  .mobile-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 100;
    width: min(86vw, 320px);
    pointer-events: none;
  }

  .mobile-drawer[hidden] {
    display: block;
  }

  .mobile-drawer__panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    height: 100%;
    padding: 18px 16px 28px;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.99), rgba(0, 0, 0, 0.99));
    border-radius: 0 30px 30px 0;
    box-shadow: 18px 0 48px rgba(0, 0, 0, 0.3);
    transform: translateX(-108%);
    transition: transform 260ms ease;
    pointer-events: auto;
    overflow-y: auto;
  }

  body.is-mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.is-mobile-menu-open .mobile-drawer {
    pointer-events: auto;
  }

  body.is-mobile-menu-open .mobile-drawer__panel {
    transform: translateX(0);
  }

  .mobile-drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .mobile-drawer__brand {
    font-size: 1.85rem;
  }

  .mobile-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  }

  .mobile-drawer__close svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
  }

  .mobile-drawer__signin {
    width: 100%;
    justify-content: center;
    height: 56px;
    font-size: 1rem;
    font-weight: 700;
    border: 0;
    background: linear-gradient(180deg, #ff4a57, #ff2436);
    box-shadow: 0 16px 28px rgba(255, 48, 68, 0.22);
  }

  .mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 4px;
  }

  .mobile-drawer__link,
  .mobile-drawer__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 54px;
    padding: 0 18px;
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  }

  .mobile-drawer__toggle {
    width: 100%;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }

  .mobile-drawer__link {
    justify-content: flex-start;
  }

  .mobile-drawer__link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }

  .mobile-drawer__link-icon svg,
  .mobile-drawer__link-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .mobile-drawer__link-icon svg {
    fill: currentColor;
  }

  .mobile-drawer__toggle .chevron {
    color: rgba(255, 255, 255, 0.58);
    transition: transform 0.2s ease, color 0.2s ease;
  }

  .mobile-drawer__toggle.is-open .chevron {
    transform: rotate(180deg);
    color: rgba(255, 255, 255, 0.92);
  }

  .mobile-drawer__toggle.is-open {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 52, 61, 0.34);
  }

  .mobile-drawer__toggle--community {
    justify-content: flex-start;
    gap: 12px;
  }

  .mobile-drawer__toggle--community .chevron {
    margin-left: auto;
  }

  .mobile-drawer__button-icon {
    width: 18px;
    height: 18px;
  }

  .mobile-drawer__button-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .mobile-drawer__submenu {
    display: grid;
    gap: 8px;
    padding: 10px 0 4px 12px;
  }

  .mobile-drawer__submenu[hidden] {
    display: none !important;
  }

  .mobile-drawer__submenu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .mobile-drawer__submenu-link:hover,
  .mobile-drawer__submenu-link:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    outline: none;
  }

  .mobile-drawer__submenu-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }

  .mobile-drawer__submenu-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .brand-block {
    flex: 1 1 auto;
  }

  .brand-dot {
    padding-left: 1px;
  }

  .details-hero {
    min-height: auto;
  }

  .details-hero__content {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 42px 18px 48px;
  }

  .details-poster {
    max-width: 260px;
    margin: 0 auto;
  }

  .details-copy {
    text-align: center;
  }

  .details-copy__meta,
  .details-copy__ratings,
  .details-copy__genres {
    justify-content: center;
  }

  .details-copy__actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .details-copy__actions .details-action {
    flex: 1 1 140px;
    min-width: 0;
  }

  .details-utility {
    flex: 1 1 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-left: 0;
  }

  .details-utility__button {
    flex: 1 1 132px;
    min-width: 0;
    max-width: 180px;
  }

  .details-share-panel {
    justify-content: center;
    gap: 10px;
  }

  .details-share-panel__item {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 0.84rem;
  }

  .details-copy__facts {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .details-player-shell {
    border-radius: 18px;
  }

  .details-player-shell__frame {
    min-height: 220px;
  }

  .details-player-shell__overlay-play {
    width: 72px;
    height: 72px;
  }

  .details-player-shell__overlay-play::before {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 18px;
  }

  .details-player-actions__button {
    width: 100%;
    max-width: 220px;
  }

  .details-subscribe-modal {
    padding: 18px;
  }

  .details-subscribe-modal__dialog {
    padding: 28px 20px 22px;
    border-radius: 24px;
  }

  .details-subscribe-modal__title {
    font-size: 1.55rem;
  }

  .details-subscribe-modal__copy {
    font-size: 0.94rem;
  }

  .details-subscribe-modal__button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

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

  .hero-slider,
  .slider-track {
    min-height: 600px;
  }

  .hero-slide {
    padding: 40px 24px 84px;
  }

  .hero-slide__intro,
  .hero-slider__static-content {
    left: 50%;
    align-items: center;
    width: min(calc(100% - 48px), 760px);
    text-align: center;
    transform: translate(-50%, -50%);
  }

  .hero-slide__intro {
    top: 43%;
  }

  .hero-slider__static-content {
    top: 62%;
  }

  .hero-tags,
  .hero-meta {
    justify-content: center;
  }

  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-heading {
    max-width: 14ch;
    font-size: 2.25rem;
  }

  .hero-copy {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-price {
    font-size: 1rem;
  }

  .slider-arrow {
    top: auto;
    bottom: 24px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .slider-arrow--left {
    left: 18px;
  }

  .slider-arrow--right {
    right: 18px;
  }

  .slider-dots {
    bottom: 40px;
  }

  .content-switcher {
    padding: 22px 16px 34px;
  }

  .content-switcher__inner {
    width: 100%;
    max-width: 340px;
  }

  .content-switcher__tab {
      flex: 1 1 50%;
      min-width: 0;
      height: 48px;
    padding: 0 18px;
    font-size: 0.94rem;
  }

  .movies-page {
    padding: 16px 16px 48px;
  }

  .movies-filters__group--selects {
    width: 100%;
    margin-left: 0;
  }

  .movies-filters__chip--control {
    flex: 1 1 100%;
    min-width: 0;
  }

  .account-shell {
    padding: 18px 16px 48px;
  }

  .account-hero-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .account-hero-card__profile {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-hero-card__actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .account-hero-card__edit,
  .account-hero-card__save,
  .account-hero-card__cancel {
    flex: 1 1 110px;
  }

  .account-hero-card__edit-form {
    grid-template-columns: 1fr;
  }

  .account-plan {
    width: 100%;
    max-width: none;
  }

  .account-settings {
    grid-template-columns: 1fr;
  }

  .account-password-form {
    grid-template-columns: 1fr;
  }

  .movies-filters__chip--advanced {
    margin-left: 0;
  }

  .movies-filters__panel {
    grid-template-columns: 1fr;
  }

  .notification-panel {
    width: min(92vw, 380px);
    right: -42px;
    border-radius: 22px;
  }

  .notification-panel__header {
    padding: 16px 18px 12px;
  }

  .notification-item {
    padding: 14px 18px;
  }

  .trending-section {
    padding: 0 16px 40px;
  }

  .trending-section__head {
    margin-bottom: 14px;
  }

  .trending-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .site-stats {
    padding: 12px 16px 20px;
  }

  .site-stats__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 420px;
  }

  .faq-section {
    width: min(100%, calc(100% - 32px));
    padding: 40px 0 52px;
  }

  .faq-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .faq-card__question {
    font-size: 1.02rem;
    line-height: 1.4;
  }

  .faq-card__answer {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .faq-page > div[style] {
    width: min(100%, calc(100% - 32px));
  }

  .faq-page iframe,
  .request-form iframe {
    min-height: 640px;
    border-radius: 16px;
  }
}

@media (max-width: 520px) {
  .subscribe-hero__title {
    font-size: 1.9rem;
  }

  .subscribe-hero__highlight {
    font-size: 2.5rem;
  }

  .subscribe-device-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .auth-showcase__title {
    font-size: 2rem;
  }

  .auth-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .auth-socials {
    grid-template-columns: 1fr;
  }

  .hero-slider,
  .slider-track {
    min-height: 560px;
  }

  .details-episodes__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .details-episodes__selectors {
    grid-template-columns: 1fr;
  }

  .details-episodes__season-picker {
    min-width: 200px;
  }

  .details-episodes__season-menu {
    min-width: 200px;
  }

  .details-episodes__item {
    min-height: 58px;
    padding: 0 18px;
    font-size: 0.94rem;
  }

  .hero-slide {
    padding: 34px 18px 84px;
  }

  .hero-tags {
    gap: 6px;
    margin-bottom: 14px;
  }

  .hero-tags span {
    padding: 3px 8px;
    font-size: 0.62rem;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-meta {
    gap: 10px;
    margin: 12px 0 20px;
    font-size: 0.76rem;
  }

  .hero-heading {
    font-size: 1.8rem;
  }

  .hero-copy {
    font-size: 0.86rem;
  }

  .hero-cta {
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 0.88rem;
  }

  .payment-success-page {
    padding: 24px 16px;
  }

  .payment-success-page__button {
    width: 100%;
    min-width: 0;
  }

  .payment-card__title {
    font-size: 1.55rem;
  }

  .subscribe-plan-card__price {
    gap: 8px;
  }

  .subscribe-plan-card__price-current {
    font-size: clamp(2.4rem, 12vw, 3.2rem);
  }

  .subscribe-plan-card__price-term {
    font-size: 1.05rem;
    padding-bottom: 4px;
  }

  .account-plan__price-current {
    font-size: 2.3rem;
  }

  .account-plan__price-term {
    font-size: 0.95rem;
    padding-bottom: 2px;
  }

  .site-stats__inner {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .notification-panel {
    width: calc(100vw - 24px);
    right: 0;
  }

  .faq-page iframe,
  .request-form iframe {
    min-height: 560px;
    border-radius: 14px;
  }
}

@media (max-width: 420px) {
  .brand-mark,
  .mobile-drawer__brand {
    font-size: 1.7rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-heading {
    font-size: 1.6rem;
  }

  .details-copy__actions .details-action,
  .details-utility__button {
    flex-basis: 100%;
    max-width: none;
  }

  .details-player-actions {
    justify-content: stretch;
  }

  .details-player-actions__button {
    max-width: none;
  }

  .details-subscribe-modal__dialog,
  .details-trailer-modal__dialog {
    padding-left: 16px;
    padding-right: 16px;
  }

  .movies-filters__chip,
  .movies-filters__chip--control {
    width: 100%;
  }

  .request-form__input {
    height: 48px;
    font-size: 0.9rem;
  }

  .faq-page iframe,
  .request-form iframe {
    min-height: 520px;
  }
}

@media (max-width: 920px) and (orientation: landscape) {
  .hero-slider,
  .slider-track {
    min-height: 520px;
  }

  .hero-slide__intro {
    top: 40%;
  }

  .hero-slider__static-content {
    top: 60%;
  }

  .mobile-drawer__panel {
    padding-bottom: 18px;
  }
}

.request-main {
  min-height: calc(100vh - 104px);
  padding: 40px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.request-section {
  width: min(100%, 760px);
  margin: 8px auto 48px;
}

.request-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(18, 18, 24, 0.96), rgba(10, 10, 14, 0.94));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.38);
  padding: 28px 28px 30px;
}

.request-card__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.request-card__subtitle {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.request-form {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.request-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.request-form__label {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 600;
}

.request-form__input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(16, 16, 20, 0.9);
  color: #ffffff;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.request-form__input:focus {
  border-color: rgba(255, 68, 86, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 68, 86, 0.16);
}

.request-form__input--select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.82) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.request-form__submit {
  margin-top: 4px;
  height: 52px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff2f49 0%, #ff5a35 100%);
  color: #ffffff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(255, 47, 73, 0.32);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.request-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(255, 47, 73, 0.35);
  filter: brightness(1.04);
}

.request-form__submit:active {
  transform: translateY(0);
}

.request-form__feedback {
  margin-top: 6px;
}

.policy-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(123, 9, 38, 0.16), transparent 26%),
    linear-gradient(180deg, #020202 0%, #000 100%);
}

.policy-main {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 34px 24px 60px;
}

.policy-card {
  padding: 34px 30px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(20, 8, 11, 0.96), rgba(8, 4, 6, 0.98));
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.36);
}

.policy-card__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.policy-card__title {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(2rem, 1.45rem + 1.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.policy-card__intro {
  max-width: 820px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.policy-card__notice {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 86, 86, 0.18);
  border-radius: 18px;
  background: rgba(120, 15, 24, 0.18);
  color: rgba(255, 230, 230, 0.92);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.65;
}

.policy-sections {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.policy-section {
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.policy-section h2 {
  margin: 0;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.policy-section p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
  line-height: 1.75;
}

.policy-section ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.policy-section li {
  margin-top: 10px;
  line-height: 1.7;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.policy-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 760px) {
  .policy-main {
    padding: 24px 16px 44px;
  }

  .policy-card {
    padding: 24px 18px 22px;
    border-radius: 22px;
  }

  .policy-card__intro,
  .policy-section p,
  .policy-section li {
    font-size: 0.92rem;
  }

  .policy-section {
    padding: 18px 16px 16px;
    border-radius: 18px;
  }

  .request-main {
    padding: 28px 14px 0;
  }

  .request-section {
    margin-bottom: 36px;
  }

  .request-card {
    border-radius: 16px;
    padding: 20px 16px 22px;
  }

  .request-form {
    gap: 14px;
  }

  .request-form__input,
  .request-form__submit {
    height: 48px;
    border-radius: 12px;
    font-size: 0.93rem;
  }
}
