:root {
  --wp-red: #e50914;
  --wp-bg: #090a0f;
  --wp-bg-soft: #12141d;
  --wp-ink: #f2f2f5;
  --wp-muted: #a8acbd;
  --wp-border: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--wp-ink);
  background: #141414;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.wp-logo {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  font-size: 2rem;
  color: var(--wp-red);
}

.wp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wp-btn.light {
  background: #fff;
  color: #111;
}

.wp-btn.danger {
  background: var(--wp-red);
  color: #fff;
}

.wp-btn.ghost {
  border-color: var(--wp-border);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.wp-btn.tiny {
  padding: 7px 12px;
  font-size: 0.8rem;
}

.wp-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.wp-empty-card {
  border: 1px dashed var(--wp-border);
  border-radius: 16px;
  padding: 22px;
  color: var(--wp-muted);
  background: rgba(255, 255, 255, 0.03);
}

.wp-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(7, 8, 11, 0.88), rgba(7, 8, 11, 0.56));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wp-nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.wp-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wp-links a {
  color: var(--wp-muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.wp-links a.active,
.wp-links a:hover {
  color: #fff;
}

.wp-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wp-profile-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--wp-border);
  border-radius: 999px;
  padding: 4px 10px 4px 4px;
  background: rgba(255, 255, 255, 0.05);
}

.wp-profile-pill img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.wp-profile-pill span {
  font-size: 0.83rem;
  font-weight: 700;
}

.wp-profile-pill .kids-dot {
  font-size: 0.67rem;
  font-weight: 800;
  color: #111;
  background: #ffd447;
  border-radius: 999px;
  padding: 2px 7px;
}

.wp-logout-form {
  margin: 0;
}

.wp-login-page {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.wp-login-page .wp-login-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(8, 9, 14, 0.82), rgba(8, 9, 14, 0.48)),
    url('/assets/img/placeholders/bakground.jpg') center/cover no-repeat,
    #08090e;
}

.wp-home-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #05070b;
}

.wp-home-wall {
  position: absolute;
  inset: -12% -10% auto -10%;
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 14px;
  transform: rotate(-12deg) scale(1.12);
  transform-origin: center top;
  opacity: 0.94;
}

.wp-home-wall-card {
  aspect-ratio: 0.72 / 1;
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.05);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.wp-home-wall-card:nth-child(3n) {
  transform: translateY(28px);
}

.wp-home-wall-card:nth-child(4n) {
  transform: translateY(-24px);
}

.wp-home-wall-card.fallback {
  min-height: 120vh;
  grid-column: 1 / -1;
  aspect-ratio: auto;
}

.wp-home-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.78) 56%, rgba(0, 0, 0, 0.94) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.18) 18%, rgba(0, 0, 0, 0.82) 100%);
}

.wp-home-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 46px 0;
}

.wp-home-logo {
  font-size: clamp(2.8rem, 4vw, 4rem);
  letter-spacing: 1.2px;
}

.wp-home-topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wp-home-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(15, 16, 21, 0.7);
  color: #fff;
  cursor: pointer;
  font: inherit;
}

.wp-home-lang span {
  font-weight: 800;
  font-size: 0.84rem;
}

.wp-home-lang strong {
  font-size: 0.96rem;
}

.wp-home-lang small {
  font-size: 0.72rem;
  opacity: 0.9;
}

.wp-home-login-btn {
  min-height: 44px;
  border-radius: 10px;
  padding-inline: 18px;
}

.wp-home-hero {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 110px);
  display: grid;
  place-items: center;
  padding: 70px 24px 150px;
}

.wp-home-hero-copy {
  width: min(980px, 100%);
  text-align: center;
}

.wp-home-hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  line-height: 0.98;
  font-weight: 900;
  text-wrap: balance;
}

.wp-home-price-line {
  margin: 18px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 800;
  color: #f4f5f7;
}

.wp-home-cta-copy {
  margin: 34px auto 18px;
  max-width: 920px;
  font-size: clamp(1rem, 1.7vw, 1.4rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.wp-home-email-form {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  width: min(720px, 100%);
  margin: 0 auto;
}

.wp-home-email-form input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(18, 20, 28, 0.82);
  color: #fff;
  font: inherit;
  font-size: 1.18rem;
  padding: 0 20px;
}

.wp-home-email-form input::placeholder {
  color: rgba(255, 255, 255, 0.66);
}

.wp-home-start-btn {
  min-width: 228px;
  min-height: 68px;
  border-radius: 10px;
  font-size: 1.75rem;
  font-weight: 800;
}

.wp-home-curve {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -58px;
  z-index: 2;
  height: 136px;
  border-top: 4px solid rgba(255, 71, 149, 0.8);
  border-radius: 100% 100% 0 0 / 100% 100% 0 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(35, 85, 255, 0.96) 0%, rgba(19, 34, 87, 0.74) 44%, rgba(5, 7, 11, 0) 72%),
    linear-gradient(180deg, rgba(10, 10, 18, 0.12) 0%, rgba(5, 7, 11, 0.92) 78%);
  box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.38);
}

.wp-login-panel {
  position: relative;
  z-index: 1;
  width: min(460px, 92vw);
}

.login-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.wp-login-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 28px;
  background: rgba(8, 9, 14, 0.78);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.wp-login-card h1 {
  margin: 0 0 8px;
  font-size: 1.9rem;
}

.wp-login-card p {
  margin: 0 0 18px;
  color: var(--wp-muted);
}

.wp-auth-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.wp-auth-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.wp-auth-step.active {
  border-color: rgba(229, 9, 20, 0.55);
  background: rgba(229, 9, 20, 0.16);
}

.wp-auth-step.done {
  border-color: rgba(72, 208, 137, 0.35);
  background: rgba(72, 208, 137, 0.14);
}

.wp-auth-step-index {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  font-weight: 800;
  flex: 0 0 28px;
}

.wp-auth-step-copy {
  display: grid;
  gap: 2px;
}

.wp-auth-step-copy strong {
  font-size: 0.82rem;
}

.wp-auth-step-copy small {
  color: var(--wp-muted);
  font-size: 0.72rem;
}

.wp-auth-meta-card {
  margin-bottom: 16px;
  padding: 12px 14px;
  display: grid;
  gap: 4px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.wp-auth-meta-card strong {
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wp-auth-meta-card span {
  color: #d4d9e8;
  font-size: 0.84rem;
  line-height: 1.5;
}

.wp-auth-inline-hint {
  margin-top: 14px;
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--wp-muted);
  font-size: 0.8rem;
}

.wp-auth-inline-hint code {
  color: #fff;
}

.wp-login-form {
  display: grid;
  gap: 8px;
}

.wp-login-form label {
  font-size: 0.86rem;
  color: #d0d4e2;
}

.wp-login-form input {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  padding: 12px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.wp-code-input {
  text-align: center;
  letter-spacing: 0.38em;
  font-size: 1.18rem !important;
  font-weight: 800;
}

.wp-login-help {
  margin-top: 14px;
  color: var(--wp-muted);
}

.wp-login-help a {
  color: #fff;
  text-decoration: underline;
}

.wp-register-resend-form {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.wp-register-hint {
  color: var(--wp-muted);
  font-size: 0.78rem;
}

.wp-onboarding-page {
  min-height: 100vh;
  position: relative;
}

.wp-onboarding-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 94vw);
  margin: 0 auto;
  padding: 28px 0 44px;
}

.wp-onboarding-header {
  margin-bottom: 20px;
}

.wp-onboarding-header h1 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
}

.wp-onboarding-header p {
  margin: 0;
  color: var(--wp-muted);
  max-width: 78ch;
}

.wp-onboarding-gateway-pill {
  margin-top: 12px;
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid var(--wp-border);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  font-weight: 700;
}

.wp-onboarding-gateway-pill.ok {
  border-color: rgba(26, 168, 111, 0.45);
  background: rgba(26, 168, 111, 0.16);
}

.wp-onboarding-gateway-pill.off {
  border-color: rgba(255, 193, 7, 0.45);
  background: rgba(255, 193, 7, 0.16);
}

.wp-plan-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.wp-plan-card {
  border-radius: 16px;
  border: 1px solid var(--wp-border);
  background: rgba(255, 255, 255, 0.04);
  padding: 15px;
  display: grid;
  gap: 10px;
}

.wp-plan-card.disabled {
  opacity: 0.8;
}

.wp-plan-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.wp-plan-card h2 {
  margin: 0;
  font-size: 1.1rem;
}

.wp-plan-code {
  color: var(--wp-muted);
  font-size: 0.78rem;
}

.wp-plan-price strong {
  font-size: 1.35rem;
}

.wp-plan-price small {
  color: var(--wp-muted);
}

.wp-plan-card ul {
  margin: 0;
  padding-left: 18px;
  color: #d7dbeb;
  display: grid;
  gap: 4px;
  font-size: 0.85rem;
}

.wp-plan-unavailable-msg {
  color: #ffca7a;
  font-size: 0.76rem;
}

.wp-payment-grid {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 16px;
}

.wp-payment-summary,
.wp-payment-form-wrap {
  border-radius: 16px;
  border: 1px solid var(--wp-border);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.wp-payment-summary h2,
.wp-payment-form-wrap h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.wp-payment-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.wp-payment-line span {
  color: var(--wp-muted);
  font-size: 0.83rem;
}

.wp-payment-line strong {
  font-size: 0.86rem;
}

.wp-payment-note {
  margin: 0 0 12px;
  color: var(--wp-muted);
  font-size: 0.82rem;
}

.wp-payment-inline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.wp-payment-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.wp-profiles-page {
  min-height: 100vh;
  position: relative;
  padding: 42px 24px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 32%),
    #111;
}

.profile-logo {
  position: absolute;
  top: 18px;
  left: 28px;
}

.wp-profiles-content {
  width: min(1240px, 100%);
}

.wp-profiles-stage {
  text-align: center;
  margin-bottom: 36px;
}

.wp-profiles-stage h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #f4f4f4;
}

.wp-profiles-stage p {
  margin: 12px 0 0;
  color: #a8a8ad;
  font-size: 1rem;
}

.wp-profiles-stage-meta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.wp-profiles-stage-meta span {
  font-weight: 700;
  color: #f0f0f0;
}

.wp-profiles-stage-meta small {
  color: #a8a8ad;
  font-size: 0.82rem;
}

.wp-onboarding-note {
  margin-top: 10px;
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(255, 193, 7, 0.16);
  color: #ffe39d;
  font-size: 0.82rem;
}

.wp-profiles-note {
  max-width: 620px;
  margin: 0 auto 20px;
}

.wp-profile-grid-stage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 220px));
  justify-content: center;
  gap: 28px;
  margin-bottom: 38px;
}

.wp-profile-tile {
  text-align: center;
}

.wp-profile-form,
.wp-profile-admin-actions form {
  margin: 0;
}

.wp-profile-stage-btn,
.wp-profile-add-card {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
  display: grid;
  gap: 18px;
  justify-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.wp-profile-avatar-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1d;
  box-shadow: inset 0 0 0 2px transparent;
  transition: box-shadow 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.wp-profile-avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wp-profile-avatar-frame small {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 999px;
  color: #111;
  background: #ffd447;
  font-weight: 800;
}

.wp-profile-name {
  color: #7d7d82;
  font-size: 1rem;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.wp-profile-tile:hover .wp-profile-stage-btn,
.wp-profile-tile:hover .wp-profile-add-card,
.wp-profile-tile.active .wp-profile-stage-btn {
  transform: translateY(-2px);
}

.wp-profile-tile:hover .wp-profile-avatar-frame,
.wp-profile-tile.active .wp-profile-avatar-frame {
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.72);
}

.wp-profile-tile:hover .wp-profile-name,
.wp-profile-tile.active .wp-profile-name {
  color: #fff;
}

.wp-profile-tile-add.disabled .wp-profile-add-card {
  opacity: 0.56;
}

.wp-profile-add-circle {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #8b8b8f;
  max-width: 160px;
  margin-top: 22px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.wp-profile-tile:hover .wp-profile-add-circle {
  background: #b0b0b5;
}

.wp-profile-add-plus {
  color: #111;
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 1;
  font-weight: 500;
  transform: translateY(-4px);
}

.wp-profile-admin-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.wp-profile-stage-actions .wp-btn {
  border-color: rgba(255, 255, 255, 0.16);
  color: #d1d1d7;
}

.wp-profiles-bottom-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.wp-profiles-manage-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 58px;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #a7a7ad;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.wp-profiles-manage-btn:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.wp-profile-manage-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.wp-manage-card {
  border: 1px solid var(--wp-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.wp-manage-card h2 {
  margin: 0 0 6px;
  font-size: 1.12rem;
}

.wp-manage-card p {
  margin: 0 0 10px;
  color: var(--wp-muted);
  font-size: 0.85rem;
}

.wp-form-label {
  margin: 8px 0 5px;
  display: block;
  font-size: 0.82rem;
  color: #d4d9ea;
}

.wp-form-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  padding: 9px 10px;
}

.wp-avatar-library {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.wp-avatar-option {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.wp-avatar-option img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.wp-avatar-option.active {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.28);
}

.wp-avatar-option:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.wp-avatar-preview-row {
  margin: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--wp-muted);
}

.wp-avatar-preview-row img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.wp-profiles-logout {
  margin-top: 28px;
  text-align: center;
}

.wp-browse-page {
  padding-bottom: 34px;
}

.wp-hero {
  min-height: 78vh;
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: end;
  padding: 34px 34px 30px;
}

.wp-hero-content {
  max-width: 720px;
}

.wp-hero .eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f3c5c5;
  font-weight: 700;
}

.wp-hero h1 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
}

.wp-hero p {
  margin: 0;
  color: #d4d7e2;
  max-width: 66ch;
}

.wp-hero-meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wp-hero-meta span {
  border: 1px solid var(--wp-border);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.75rem;
  color: #dde1f2;
  font-weight: 700;
}

.wp-hero-meta .subscription {
  background: rgba(26, 168, 111, 0.22);
  border-color: rgba(26, 168, 111, 0.5);
}

.wp-hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wp-hero-poster {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.wp-hero-poster img {
  width: min(260px, 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.wp-row-section {
  padding: 0 22px;
  margin-top: 20px;
}

.wp-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.wp-row-head h2 {
  margin: 0;
  font-size: 1.18rem;
}

.wp-row-nav {
  display: inline-flex;
  gap: 6px;
}

.wp-row-nav button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--wp-border);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.wp-row-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 190px);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
}

.wp-row-rail::-webkit-scrollbar {
  height: 8px;
}

.wp-row-rail::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.wp-title-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.wp-title-cover {
  display: block;
  aspect-ratio: 16 / 10;
}

.wp-title-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wp-title-meta {
  padding: 10px;
}

.wp-title-meta h3 {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.25;
}

.wp-title-meta p {
  margin: 5px 0 10px;
  color: var(--wp-muted);
  font-size: 0.77rem;
}

.wp-title-actions {
  display: flex;
  gap: 8px;
}

.wp-continue-grid {
  display: flex;
  gap: 12px;
  overflow: visible;
  padding: 0 4px 0;
}

.wp-continue-scroll {
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.wp-continue-scroll::-webkit-scrollbar {
  display: none;
}

.wp-continue-grid > * {
  flex: 0 0 260px;
  min-width: 260px;
  max-width: 260px;
}

.wp-continue-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.wp-continue-card a {
  display: block;
  height: 100%;
}

.wp-continue-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.wp-continue-body {
  padding: 10px;
}

.wp-continue-body h3 {
  margin: 0;
  font-size: 0.9rem;
}

.wp-continue-body p {
  margin: 4px 0 8px;
  color: var(--wp-muted);
  font-size: 0.8rem;
}

.wp-progress {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.wp-progress span {
  display: block;
  height: 100%;
  background: var(--wp-red);
}

.wp-title-page {
  padding-top: 0;
  padding-bottom: 32px;
}

.wp-title-hero {
  min-height: 56vh;
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 96px 30px 30px;
  position: relative;
  overflow: hidden;
}

.wp-title-hero-preview-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wp-title-hero-preview-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(77deg, rgba(9, 10, 15, 0.9) 20%, rgba(9, 10, 15, 0.62) 56%, rgba(9, 10, 15, 0.92) 100%);
  pointer-events: none;
}

.wp-title-hero-preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wp-title-poster {
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  position: relative;
  z-index: 1;
}

.wp-title-hero-body {
  position: relative;
  z-index: 1;
}

.wp-title-hero-sound {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.wp-title-hero-body h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.wp-title-hero-heading {
  --wp-title-heading-size: clamp(1.8rem, 3.5vw, 3rem);
  font-size: var(--wp-title-heading-size);
  font-family: 'Bebas Neue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: 0.038em;
  line-height: 0.92;
  font-weight: 400;
  text-transform: uppercase;
  transition:
    transform 0.56s cubic-bezier(0.22, 0.82, 0.26, 1),
    font-size 0.56s cubic-bezier(0.22, 0.82, 0.26, 1);
}

.wp-title-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.wp-title-hero-meta span {
  border: 1px solid var(--wp-border);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: #e2e6f3;
}

.wp-title-hero-body p {
  margin: 0;
  color: #d5d9e8;
}

.wp-title-hero-description {
  max-height: 220px;
  opacity: 1;
  overflow: hidden;
  transform: translateY(0);
  transition:
    opacity 0.42s ease,
    transform 0.56s cubic-bezier(0.22, 0.82, 0.26, 1),
    max-height 0.56s cubic-bezier(0.22, 0.82, 0.26, 1),
    margin 0.56s cubic-bezier(0.22, 0.82, 0.26, 1);
}

.wp-title-hero.is-trailer-engaged .wp-title-hero-heading {
  transform: translateY(18px);
  font-size: max(1.1rem, calc(var(--wp-title-heading-size) - 2em));
}

.wp-title-hero.is-trailer-engaged .wp-title-hero-description {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  margin-bottom: 0;
  transform: translateY(-14px);
  pointer-events: none;
}

.wp-title-hero-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wp-title-episodes {
  padding: 18px 22px 0;
}

.wp-title-episodes h2 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}

.wp-season-block {
  margin-bottom: 20px;
}

.wp-season-block h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.wp-season-trailer {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  margin-bottom: 10px;
}

.wp-season-trailer-media {
  background: #000;
  aspect-ratio: 16 / 9;
}

.wp-season-trailer-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wp-season-trailer-meta {
  padding: 10px 12px 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.wp-season-trailer-meta strong {
  font-size: 0.9rem;
}

.wp-season-trailer-meta small {
  color: var(--wp-muted);
  flex: 1 1 260px;
}

.wp-episode-list {
  display: grid;
  gap: 10px;
}

.wp-episode-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.wp-episode-order {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #f7d4d6;
}

.wp-episode-main strong {
  display: block;
  font-size: 0.95rem;
}

.wp-episode-main small {
  color: var(--wp-muted);
}

.wp-episode-cta {
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
}

.wp-watch-page {
  padding: 20px 22px 28px;
  display: block;
}

.wp-player-wrap {
  min-width: 0;
}

.wp-player-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.wp-player-head h1 {
  margin: 0;
  font-size: 1.2rem;
}

.wp-player-box {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0b0d14;
  min-height: 48vh;
  position: relative;
}

.wp-player-box video {
  width: 100%;
  min-height: 48vh;
  background: #000;
}

.wp-player-chrome {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 7;
  padding: 0 16px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.wp-player-box.is-controls-visible .wp-player-chrome {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wp-player-progress-wrap {
  padding-bottom: 10px;
}

.wp-player-progress {
  width: 100%;
  margin: 0;
  height: 4px;
  accent-color: #e50914;
  background: transparent;
}

.wp-player-progress::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.wp-player-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  margin-top: -5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e50914;
  border: 0;
}

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

.wp-player-progress::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e50914;
  border: 0;
}

.wp-player-controls-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.wp-player-controls-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wp-player-controls-group.is-center {
  min-width: 0;
  justify-content: center;
}

.wp-player-caption {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 42vw;
}

.wp-player-control {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: color 0.16s ease, background 0.16s ease, transform 0.16s ease, opacity 0.16s ease;
  opacity: 0.86;
}

.wp-player-control .icon {
  font-size: 1.28rem;
  line-height: 1;
}

.wp-player-control:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-0.5px);
  opacity: 1;
}

.wp-player-control.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
}

.wp-player-settings-panel {
  position: absolute;
  right: 16px;
  bottom: 86px;
  width: min(320px, calc(100% - 24px));
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(24, 24, 26, 0.97);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
  z-index: 8;
}

.wp-player-setting-group {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.wp-player-setting-group:last-child {
  margin-bottom: 0;
}

.wp-player-setting-group label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.wp-player-setting-group select {
  width: 100%;
  height: 36px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.86rem;
  padding: 0 10px;
}

.wp-player-setting-group select:focus {
  outline: 2px solid rgba(229, 9, 20, 0.5);
  border-color: rgba(229, 9, 20, 0.8);
}

.wp-watch-episodes-panel {
  position: absolute;
  right: 12px;
  bottom: 84px;
  width: min(760px, calc(100% - 24px));
  max-height: min(72vh, 560px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(38, 38, 40, 0.97);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.58);
  overflow-y: auto;
  z-index: 8;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  scrollbar-width: thin;
}

.wp-watch-episodes-panel.is-open {
  opacity: 1;
  transform: translateY(0);
}

.wp-watch-episodes-panel__head {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(24, 24, 26, 0.95);
}

.wp-watch-episodes-panel__head strong {
  font-size: 2.75rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.wp-watch-episodes-panel__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.wp-watch-episodes-panel__list {
  display: grid;
}

.wp-watch-episodes-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 130px;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.015);
  text-decoration: none;
  color: #fff;
}

.wp-watch-episodes-item-index {
  font-size: 2.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1;
  text-align: center;
}

.wp-watch-episodes-item strong {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
}

.wp-watch-episodes-item-duration {
  font-size: 1.45rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.74);
}

.wp-watch-episodes-item-main small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.02rem;
}

.wp-watch-episodes-item-line {
  justify-self: end;
  width: 100%;
  max-width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.34);
}

.wp-watch-episodes-item-detail {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.wp-watch-episodes-item-detail img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 2px;
}

.wp-watch-episodes-item-detail p {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.88);
}

.wp-watch-episodes-item:hover {
  background: rgba(255, 255, 255, 0.07);
}

.wp-watch-episodes-item.is-active {
  background: rgba(14, 14, 15, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.68);
  margin: -1px;
  grid-template-columns: 48px minmax(0, 1fr);
}

.wp-watch-episodes-item.is-active .wp-watch-episodes-item-line {
  display: none;
}

.wp-player-placeholder {
  min-height: 48vh;
  display: grid;
  place-content: center;
  gap: 10px;
  text-align: center;
  padding: 18px;
}

.wp-watch-meta h2 {
  margin: 12px 0 4px;
  font-size: 1.1rem;
}

.wp-watch-meta p {
  margin: 0;
  color: var(--wp-muted);
}

.wp-watch-progress-box {
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.wp-watch-progress-box label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.86rem;
}

.wp-watch-progress-box input[type='range'] {
  width: 100%;
}

.wp-watch-progress-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.wp-next-up {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
  height: fit-content;
}

.wp-next-up h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.wp-next-list {
  display: grid;
  gap: 8px;
}

.wp-next-item {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.wp-next-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.wp-next-item small {
  color: var(--wp-muted);
}

@media (max-width: 920px) {
  .wp-hero {
    grid-template-columns: 1fr;
    min-height: 68vh;
  }

  .wp-hero-poster {
    justify-content: flex-start;
  }

  .wp-title-hero {
    grid-template-columns: 1fr;
  }

  .wp-title-poster {
    max-width: 170px;
  }

  .wp-episode-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 760px) {
  .wp-auth-steps {
    grid-template-columns: 1fr;
  }

  .wp-nav {
    padding: 12px 14px;
  }

  .wp-nav-left {
    gap: 12px;
  }

  .wp-links {
    display: none;
  }

  .wp-profile-pill span {
    display: none;
  }

  .wp-hero,
  .wp-row-section,
  .wp-title-episodes,
  .wp-watch-page {
    padding-left: 14px;
    padding-right: 14px;
  }

  .wp-row-rail {
    grid-auto-columns: minmax(160px, 160px);
  }

  .wp-profiles-stage h1 {
    font-size: 2.5rem;
  }

  .wp-profile-grid-stage {
    grid-template-columns: repeat(auto-fit, minmax(148px, 180px));
    gap: 22px;
  }

  .wp-profile-add-circle {
    max-width: 124px;
    margin-top: 12px;
  }

  .wp-payment-grid {
    grid-template-columns: 1fr;
  }

  .wp-continue-grid > * {
    flex-basis: 220px;
    min-width: 220px;
    max-width: 220px;
  }

  .wp-avatar-library {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .wp-player-box,
  .wp-player-box video,
  .wp-player-placeholder {
    min-height: 38vh;
  }

  .wp-player-chrome {
    padding: 0 10px 10px;
  }

  .wp-player-progress-wrap {
    padding-bottom: 8px;
  }

  .wp-player-controls-row {
    gap: 8px;
  }

  .wp-player-controls-group {
    gap: 6px;
  }

  .wp-player-control {
    width: 30px;
    height: 30px;
  }

  .wp-player-control .icon {
    font-size: 1.06rem;
  }

  .wp-player-caption {
    max-width: 34vw;
    font-size: 0.78rem;
  }

  .wp-player-settings-panel {
    right: 10px;
    bottom: 74px;
    width: calc(100% - 20px);
    padding: 10px;
  }

  .wp-watch-episodes-panel {
    right: 10px;
    bottom: 74px;
    width: calc(100% - 20px);
    max-height: min(62vh, 420px);
  }

  .wp-watch-episodes-panel__head strong {
    font-size: 1.28rem;
  }

  .wp-watch-episodes-item {
    grid-template-columns: 34px minmax(0, 1fr) 62px;
    gap: 10px;
    padding: 10px 12px;
  }

  .wp-watch-episodes-item-index {
    font-size: 1.2rem;
  }

  .wp-watch-episodes-item strong {
    font-size: 0.98rem;
  }

  .wp-watch-episodes-item-duration {
    font-size: 0.82rem;
  }

  .wp-watch-episodes-item-main small {
    font-size: 0.72rem;
  }

  .wp-watch-episodes-item-detail {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 10px;
  }

  .wp-watch-episodes-item-detail p {
    font-size: 0.82rem;
  }
}

body.wp-modal-open {
  overflow: hidden;
}

.wp-hidden-delete-form {
  display: none;
}

.wp-profiles-page.manage-mode {
  background: #141414;
}

.wp-profiles-page.manage-mode .wp-profiles-content {
  width: min(1120px, 100%);
}

.wp-profiles-stage.manage {
  margin-bottom: 42px;
}

.wp-profiles-stage.manage h1 {
  font-size: clamp(3.2rem, 6vw, 4.8rem);
}

.wp-profile-grid-stage.is-manage {
  grid-template-columns: repeat(auto-fit, minmax(170px, 205px));
  gap: 30px;
  margin-bottom: 56px;
}

.wp-profile-tile.is-manage .wp-profile-stage-btn,
.wp-profile-tile.is-manage .wp-profile-add-card {
  gap: 16px;
}

.wp-profile-tile.is-manage .wp-profile-avatar-frame {
  border-radius: 4px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.wp-profile-edit-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.wp-profile-edit-badge svg {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.wp-profile-tile.is-manage:hover .wp-profile-edit-badge,
.wp-profile-tile.is-manage.active .wp-profile-edit-badge {
  opacity: 1;
}

.wp-profile-tile.is-manage .wp-profile-name {
  font-size: 0.98rem;
}

.wp-profiles-bottom-actions.manage {
  margin-bottom: 0;
}

.wp-profiles-manage-btn.is-solid {
  min-width: 218px;
  min-height: 56px;
  border: 0;
  background: #fff;
  color: #111;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.wp-profiles-manage-btn.is-solid:hover {
  background: #e8e8e8;
  color: #111;
}

.wp-profile-editor-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.wp-profile-editor-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.wp-profile-editor-dialog {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100vw - 32px));
  margin: min(6vh, 48px) auto;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(23, 24, 31, 0.98), rgba(12, 13, 18, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  padding: 28px;
}

.wp-profile-editor-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.wp-profile-editor-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}

.wp-profile-editor-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: #b6bccd;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wp-profile-editor-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.wp-profile-editor-head p {
  margin: 10px 0 0;
  color: var(--wp-muted);
}

.wp-profile-editor-preview {
  display: flex;
  justify-content: flex-end;
}

.wp-profile-editor-preview img {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.wp-profile-editor-form {
  display: grid;
  gap: 18px;
}

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

.wp-profile-editor-limit {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
  display: grid;
  gap: 4px;
}

.wp-profile-editor-limit strong {
  font-size: 1.4rem;
}

.wp-profile-editor-limit span {
  color: var(--wp-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.wp-avatar-library-shell {
  display: grid;
  gap: 12px;
}

.wp-avatar-sections {
  max-height: 46vh;
  overflow: auto;
  padding-right: 6px;
  display: grid;
  gap: 18px;
}

.wp-avatar-section {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 7, 11, 0.72);
  padding: 14px;
}

.wp-avatar-section-head {
  margin-bottom: 12px;
}

.wp-avatar-section-head h3 {
  margin: 0;
  color: #f4f6fb;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wp-avatar-library-modal {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.wp-profile-editor-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.wp-profile-delete-trigger {
  margin-right: auto;
}

.wp-stream-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 0 52px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.36) 48%, rgba(0, 0, 0, 0) 100%);
  transition: background 0.22s ease, transform 0.22s ease;
}

.wp-stream-header__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.wp-stream-header.is-solid {
  background: #141414;
}

.wp-stream-header__left,
.wp-stream-header__right,
.wp-stream-nav {
  display: flex;
  align-items: center;
}

.wp-stream-header__left {
  gap: 34px;
  min-width: 0;
}

.wp-stream-header__right {
  gap: 10px;
}

.wp-stream-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.3rem;
  letter-spacing: 0.08em;
  color: #e50914;
  flex: 0 0 auto;
  line-height: 1;
}

.wp-stream-nav {
  gap: 20px;
  flex-wrap: wrap;
}

.wp-stream-nav a,
.wp-stream-link-button,
.wp-stream-kids-link {
  border: 0;
  background: transparent;
  padding: 0;
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.wp-stream-nav a.active,
.wp-stream-nav a:hover,
.wp-stream-link-button:hover,
.wp-stream-kids-link:hover,
.wp-stream-kids-link.active {
  color: #fff;
}

.wp-stream-icon-btn {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  position: relative;
  cursor: pointer;
  padding: 0;
}

.wp-stream-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  line-height: 1;
}

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

.wp-stream-badge {
  position: absolute;
  top: -4px;
  right: -7px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #e50914;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  display: inline-grid;
  place-items: center;
  padding: 0 3px;
}

.wp-stream-icon-btn:hover,
.wp-stream-icon-btn:focus-visible {
  color: rgba(255, 255, 255, 0.86);
}

.wp-stream-user {
  position: relative;
}

.wp-stream-user-trigger {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: #fff;
  cursor: pointer;
}

.wp-stream-user-trigger img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
}

.wp-stream-caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  transition: transform 0.2s ease;
}

.wp-stream-user.is-open .wp-stream-caret {
  transform: rotate(180deg);
}

.wp-stream-user-menu {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  width: 270px;
  background: rgba(0, 0, 0, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  padding: 14px 0 0;
}

.wp-stream-user-menu::before {
  content: '';
  position: absolute;
  top: -9px;
  right: 18px;
  width: 16px;
  height: 16px;
  background: rgba(0, 0, 0, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
}

.wp-stream-user-menu__profiles,
.wp-stream-user-menu__links {
  padding: 0 14px;
}

.wp-stream-profile-switch,
.wp-stream-user-menu__footer form {
  margin: 0;
}

.wp-stream-profile-switch + .wp-stream-profile-switch {
  margin-top: 8px;
}

.wp-stream-profile-switch__button {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.wp-stream-profile-switch__button img {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  object-fit: cover;
}

.wp-stream-profile-switch__button span {
  font-size: 0.96rem;
}

.wp-stream-profile-switch__button.active span {
  font-weight: 800;
}

.wp-stream-user-menu__links {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.wp-stream-user-menu__links a,
.wp-stream-user-menu__links button {
  border: 0;
  background: transparent;
  padding: 0;
  color: #fff;
  font: inherit;
  font-size: 0.96rem;
  text-align: left;
  cursor: pointer;
}

.wp-stream-user-menu__footer {
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 14px 0;
}

.wp-stream-user-menu__footer button {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
}

.wp-browse-page--cinema {
  padding-bottom: 56px;
  background: #141414;
}

.wp-hero--cinema {
  min-height: 95vh;
  display: flex;
  align-items: flex-end;
  padding: 96px 52px 184px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.wp-hero-preview-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wp-hero-preview-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(77deg, rgba(0, 0, 0, 0.78) 18%, rgba(0, 0, 0, 0.32) 54%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.72) 94%);
  pointer-events: none;
}

.wp-hero-preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wp-hero-content--cinema {
  max-width: 560px;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.wp-hero-content--cinema .eyebrow {
  color: #ffffff;
  font-size: 0.98rem;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.wp-hero-logo-stack {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
  transition: transform 0.56s cubic-bezier(0.22, 0.82, 0.26, 1), margin-bottom 0.56s cubic-bezier(0.22, 0.82, 0.26, 1);
}

.wp-hero-logo-stack strong {
  display: none;
}

.wp-hero-logo-stack span {
  color: #f4f5f6;
  letter-spacing: 0.14em;
  font-size: 2.15rem;
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
}

.wp-hero-content--cinema h1 {
  --wp-browse-hero-heading-size: clamp(3.2rem, 6.4vw, 5.8rem);
  margin: 0;
  font-size: var(--wp-browse-hero-heading-size);
  font-family: 'Bebas Neue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: 0.045em;
  line-height: 0.9;
  font-weight: 400;
  max-width: 640px;
  text-transform: uppercase;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
  transition: font-size 0.56s cubic-bezier(0.22, 0.82, 0.26, 1);
}

.wp-hero-content--cinema p {
  font-size: 1.26rem;
  max-width: 44ch;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.wp-hero-description {
  margin-top: 12px;
  max-height: 260px;
  opacity: 1;
  overflow: hidden;
  transform: translateY(0);
  transition:
    opacity 0.42s ease,
    transform 0.56s cubic-bezier(0.22, 0.82, 0.26, 1),
    max-height 0.56s cubic-bezier(0.22, 0.82, 0.26, 1),
    margin 0.56s cubic-bezier(0.22, 0.82, 0.26, 1);
}

.wp-hero--cinema.is-trailer-engaged .wp-hero-logo-stack {
  transform: translateY(22px);
  margin-bottom: 2px;
}

.wp-hero--cinema.is-trailer-engaged .wp-hero-content--cinema h1 {
  font-size: max(1.4rem, calc(var(--wp-browse-hero-heading-size) - 2em));
}

.wp-hero--cinema.is-trailer-engaged .wp-hero-description {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  margin-bottom: 0;
  transform: translateY(-18px);
  pointer-events: none;
}

.wp-hero-meta--cinema {
  display: none;
}

.wp-hero-meta--cinema span {
  border-radius: 3px;
  min-height: 26px;
  padding: 5px 10px;
  background: rgba(15, 15, 15, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #f2f2f2;
  font-size: 0.8rem;
}

.wp-hero-actions--cinema {
  margin-top: 26px;
  gap: 10px;
}

.wp-btn-hero-play,
.wp-btn-hero-more {
  min-height: 56px;
  border-radius: 4px;
  padding: 13px 26px;
  font-size: clamp(1.08rem, 0.92rem + 0.65vw, 1.42rem);
  font-weight: 700;
  line-height: 1;
}

.wp-btn-hero-play {
  min-width: 220px;
}

.wp-btn-hero-more {
  min-width: 274px;
  background: rgba(109, 109, 110, 0.76);
  border-color: transparent;
}

.wp-btn-hero-more:hover {
  background: rgba(109, 109, 110, 0.6);
}

.wp-btn-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
}

.wp-btn-hero-more .wp-btn-icon {
  border: 2px solid rgba(255, 255, 255, 0.9);
  font-style: normal;
  font-weight: 800;
}

.wp-hero-floating-meta {
  position: absolute;
  right: 0;
  bottom: 176px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1;
}

.wp-hero-sound {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(20, 20, 20, 0.36);
  color: #fff;
  cursor: pointer;
  font-size: 1.55rem;
}

.wp-hero-sound.is-on {
  background: rgba(20, 20, 20, 0.46);
  border-color: rgba(255, 255, 255, 0.92);
}

.wp-hero-rating {
  min-width: 132px;
  padding: 13px 24px;
  font-size: 2rem;
  border-left: 3px solid #fff;
  background: rgba(51, 51, 51, 0.58);
}

.wp-browse-rows-shell {
  margin-top: -108px;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.wp-row-section.is-first {
  margin-top: 0;
}

.wp-row-section {
  position: relative;
  overflow: visible;
  padding: 0 52px;
  margin-top: 34px;
}

.wp-row-section.is-hover-context {
  z-index: 40;
}

.wp-row-section.is-hover-context .wp-row-rail-scroll,
.wp-row-section.is-hover-context .wp-continue-scroll {
  overflow-x: hidden;
}

.wp-row-head h2 {
  font-size: 1.6em;
  font-family: 'Manrope', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.14;
  color: rgba(255, 255, 255, 0.94);
}

.wp-browse-page--cinema .wp-row-nav {
  display: none;
}

.wp-row-rail--cinema {
  grid-auto-columns: minmax(308px, 308px);
  gap: 7px;
  overflow-x: visible;
  overflow-y: visible;
  padding-top: 14px;
  padding-bottom: 0;
  padding-left: 4px;
  padding-right: 4px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wp-row-rail-scroll {
  position: relative;
  overflow: hidden;
  overflow: clip;
  padding-bottom: 0;
  touch-action: pan-y;
  overscroll-behavior: none;
  scrollbar-width: none;
}

.wp-row-rail-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.wp-continue-scroll {
  position: relative;
  overflow: hidden;
  overflow: clip;
  padding-bottom: 0;
  touch-action: pan-y;
  overscroll-behavior: none;
  scrollbar-width: none;
}

.wp-continue-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.wp-browse-page--cinema .wp-row-rail-scroll,
.wp-browse-page--cinema .wp-continue-scroll {
  overflow: clip !important;
  overscroll-behavior: none;
  scroll-behavior: auto !important;
}

.wp-browse-page--cinema .wp-row-rail--cinema,
.wp-browse-page--cinema .wp-continue-grid {
  overflow: visible !important;
}

.wp-continue-grid {
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wp-row-edge-btn {
  position: absolute;
  top: 14px;
  bottom: 0;
  width: 56px;
  border: 0;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(90deg, rgba(16, 16, 16, 0.95) 0%, rgba(16, 16, 16, 0.82) 45%, rgba(16, 16, 16, 0) 100%);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 18;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, color 0.18s ease;
}

.wp-row-edge-btn:hover {
  color: #fff;
}

.wp-row-edge-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.wp-row-edge-btn--prev {
  left: 0;
}

.wp-row-edge-btn--next {
  right: 0;
  background: linear-gradient(270deg, rgba(16, 16, 16, 0.95) 0%, rgba(16, 16, 16, 0.82) 45%, rgba(16, 16, 16, 0) 100%);
}

.wp-row-rail--cinema .wp-title-card--cinema:first-child {
  transform-origin: left center;
}

.wp-row-rail--cinema .wp-title-card--cinema:last-child {
  transform-origin: right center;
}

.wp-title-card--cinema {
  --wp-hover-extra-shift-x: 0px;
  --wp-hover-extra-shift: 0px;
  --wp-hover-scale: 1.3;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.wp-title-card-surface {
  position: relative;
  border-radius: 6px;
  background: #1c1c1c;
  border: 0;
  transform-origin: center center;
  transition: transform 0.32s cubic-bezier(0.2, 0.82, 0.2, 1), box-shadow 0.28s ease;
  will-change: transform;
  z-index: 1;
}

.wp-title-card--cinema .wp-title-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: #080808;
}

.wp-title-card--cinema .wp-title-cover img {
  position: relative;
  z-index: 1;
  transition: transform 0.28s ease, opacity 0.34s ease;
}

.wp-title-cover-preview {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.34s ease;
  pointer-events: none;
}

.wp-card-sound-toggle {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 4;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: rgba(35, 35, 35, 0.7);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, background 0.18s ease, border-color 0.18s ease;
}

.wp-card-sound-toggle:hover {
  background: rgba(20, 20, 20, 0.9);
  border-color: rgba(255, 255, 255, 0.92);
}

.wp-card-sound-toggle.is-on {
  background: rgba(20, 20, 20, 0.88);
  border-color: rgba(255, 255, 255, 0.95);
}

.wp-title-card--cinema.has-hover-preview.is-hover-active .wp-card-sound-toggle {
  opacity: 1;
  pointer-events: auto;
}

.wp-title-card--cinema:hover .wp-title-cover img,
.wp-title-card--cinema.is-hover-active .wp-title-cover img {
  transform: scale(1.03);
}

.wp-title-card--cinema.has-hover-preview.is-preview-ready.is-hover-active .wp-title-cover img {
  opacity: 0;
}

.wp-title-card--cinema.has-hover-preview.is-preview-ready.is-hover-active .wp-title-cover-preview {
  opacity: 1;
}

.wp-title-card--cinema.is-hover-active {
  z-index: 1;
}

.wp-title-card--cinema.is-hover-active .wp-title-card-surface {
  position: relative;
  left: auto;
  top: auto;
  width: auto;
  transform: none;
  box-shadow: none;
  z-index: 1;
}

.wp-title-card--cinema.is-hover-active .wp-title-cover {
  border-radius: 6px 6px 0 0;
}

.wp-title-card--cinema.is-edge-left .wp-title-card-surface {
  transform-origin: left center;
}

.wp-title-card--cinema.is-edge-right .wp-title-card-surface {
  transform-origin: right center;
}

.wp-title-card--cinema.is-edge-center .wp-title-card-surface {
  transform-origin: center center;
}

.wp-title-badge-top10 {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #e50914;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  transition: opacity 0.34s ease;
}

.wp-title-badge-ribbon {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 3px;
  background: #e50914;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: opacity 0.34s ease;
}

.wp-title-meta--cinema {
  display: none;
}

.wp-title-hover-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  bottom: auto;
  min-height: 10.2em;
  border-radius: 0 0 6px 6px;
  background: #181818;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.46);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.24s ease;
  z-index: 63;
}

.wp-title-card--cinema.is-hover-active .wp-title-hover-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.wp-title-card--cinema.is-hover-source {
  z-index: 1;
}

.wp-title-card--cinema.is-hover-source .wp-title-card-surface {
  opacity: 0.01;
}

.wp-hover-flyout-root {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
}

.wp-hover-flyout {
  position: fixed;
  pointer-events: auto;
  transform: translateY(10px) scale(0.94);
  opacity: 0;
  transform-origin: center top;
  transition: transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.2s ease;
}

.wp-hover-flyout.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wp-hover-flyout .wp-title-card-surface {
  position: relative;
  width: 100%;
  opacity: 1 !important;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.62);
  border-radius: 6px;
}

.wp-hover-flyout .wp-title-cover {
  border-radius: 6px 6px 0 0;
}

.wp-hover-flyout .wp-title-hover-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.wp-hover-flyout .wp-card-sound-toggle {
  opacity: 1;
  pointer-events: auto;
}

.wp-hover-flyout:not(.is-preview-ready) .wp-title-cover-preview {
  opacity: 0;
}

.wp-hover-flyout.is-preview-ready .wp-title-cover img {
  opacity: 0;
}

.wp-hover-flyout.is-preview-ready .wp-title-cover-preview {
  opacity: 1;
}

.wp-hover-flyout.is-preview-ready .wp-title-badge-top10,
.wp-hover-flyout.is-preview-ready .wp-title-badge-ribbon {
  opacity: 0;
}

.wp-title-card--cinema.is-hover-active .wp-title-meta--cinema {
  display: none;
}

.wp-title-hover-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 13px 10px;
}

.wp-hover-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.78);
  display: inline-grid;
  place-items: center;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
}

.wp-hover-circle--play {
  background: #fff;
  color: #111;
  border-color: #fff;
  width: 40px;
  height: 40px;
}

.wp-hover-circle--play:hover {
  background: #ececec;
  border-color: #ececec;
}

.wp-hover-circle--chevron {
  margin-left: auto;
  font-size: 1.05rem;
}

.wp-hover-circle--light {
  width: 46px;
  height: 46px;
}

.wp-hover-circle:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.wp-title-hover-badges {
  position: absolute;
  left: 1em;
  right: 1em;
  bottom: 3em;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.wp-title-hover-badges span {
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 2px 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
  font-weight: 600;
}

.wp-title-hover-tags {
  position: absolute;
  left: 1em;
  right: 1em;
  bottom: 1em;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.35;
}

.wp-title-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
}

.wp-title-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
}

.wp-title-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100vw - 52px));
  max-height: min(92vh, 980px);
  border-radius: 8px;
  overflow-x: hidden;
  overflow-y: auto;
  background: #181818;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.62);
  display: block;
  -webkit-overflow-scrolling: touch;
}

.wp-title-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: rgba(20, 20, 20, 0.82);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

.wp-title-modal-hero {
  position: relative;
  min-height: 500px;
  background: #181818;
}

.wp-title-modal-hero-media {
  position: absolute;
  inset: 0;
}

.wp-title-modal-hero-media img,
.wp-title-modal-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wp-title-modal-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0) 52%, rgba(24, 24, 24, 0.96) 88%),
    linear-gradient(90deg, rgba(24, 24, 24, 0.44) 0%, rgba(24, 24, 24, 0) 62%);
}

.wp-title-modal-hero-content {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 30px;
  z-index: 2;
}

.wp-title-modal-hero-content h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.wp-title-modal-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.wp-title-modal-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wp-title-modal-badges span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
  color: #f0f0f0;
}

.wp-title-modal-body {
  overflow: visible;
  padding: 26px 34px 34px;
  background: #181818;
}

.wp-title-modal-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(250px, 0.86fr);
  gap: 28px;
}

.wp-title-modal-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #46d369;
  font-size: 0.95rem;
  font-weight: 700;
}

.wp-title-modal-meta-line span {
  color: inherit;
}

.wp-title-modal-summary-main h3 {
  margin: 16px 0 10px;
  font-size: 1.8rem;
  color: #fff;
}

.wp-title-modal-summary-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  font-size: 1rem;
}

.wp-title-modal-summary-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.wp-title-modal-summary-side p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.wp-title-modal-summary-side strong {
  color: rgba(255, 255, 255, 0.54);
  font-weight: 700;
}

.wp-title-modal-section-head {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wp-title-modal-section-head h4 {
  margin: 0;
  font-size: 1.95rem;
  color: #fff;
}

.wp-title-modal-section-head span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
}

.wp-title-modal-episodes {
  margin-top: 14px;
  display: grid;
  gap: 0;
}

.wp-title-modal-episodes.is-collapsed .wp-title-modal-episode:nth-child(n + 11) {
  display: none;
}

.wp-title-modal-episode {
  display: grid;
  grid-template-columns: 54px 180px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border-radius: 0;
  padding: 14px 12px;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease, transform 0.2s ease;
}

.wp-title-modal-episode:hover {
  background: rgba(255, 255, 255, 0.06);
}

.wp-title-modal-episode.is-featured {
  border-bottom: 0;
  border-radius: 8px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.wp-title-modal-episode.is-featured:hover {
  background: rgba(255, 255, 255, 0.17);
}

.wp-title-modal-episode-index {
  font-size: 2.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.wp-title-modal-episode-thumb {
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: #090909;
}

.wp-title-modal-episode-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wp-title-modal-episode-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.wp-title-modal-episode-head strong {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.2;
}

.wp-title-modal-episode-head span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 2rem;
  line-height: 1;
  font-weight: 300;
}

.wp-title-modal-episode-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  font-size: 1.08rem;
}

.wp-title-modal-episode-copy.is-active {
  color: #fff;
}

.wp-title-modal-episodes-toggle-wrap {
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: center;
  padding-top: 14px;
}

.wp-title-modal-episodes-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.52);
  background: rgba(24, 24, 24, 0.96);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.wp-title-modal-episodes-toggle:hover {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(56, 56, 56, 0.92);
}

.wp-title-modal-episodes-toggle[aria-expanded='true'] {
  transform: rotate(180deg);
}

.wp-title-modal-empty {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
  color: rgba(255, 255, 255, 0.66);
}

.wp-continue-card--cinema {
  min-height: 146px;
}

.wp-continue-card--cinema.is-hover-active .wp-title-card-surface {
  --wp-hover-scale: 1.28;
  transform: none;
  box-shadow: none;
}

.wp-continue-card--cinema.is-edge-left .wp-title-card-surface {
  transform-origin: left center;
}

.wp-continue-card--cinema.is-edge-right .wp-title-card-surface {
  transform-origin: right center;
}

.wp-continue-card--cinema.is-edge-center .wp-title-card-surface {
  transform-origin: center center;
}

.wp-continue-card--cinema .wp-title-cover {
  display: block;
  height: auto;
}

.wp-continue-card--cinema .wp-continue-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 0 10px 9px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.78) 100%);
  pointer-events: none;
}

.wp-continue-card--cinema .wp-continue-body h3,
.wp-continue-card--cinema .wp-continue-body p {
  display: none;
}

.wp-continue-card--cinema .wp-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.34);
  margin: 0;
}

.wp-title-hover-panel--continue {
  min-height: 10.8em;
  z-index: 63;
}

.wp-continue-hover-copy {
  position: absolute;
  left: 1em;
  right: 1em;
  bottom: 1em;
  padding: 0;
}

.wp-continue-hover-copy p {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 500;
}

.wp-continue-hover-progress-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wp-continue-hover-progress-meta > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
}

.wp-continue-hover-progress-line {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.wp-continue-hover-progress-line .bar {
  display: block;
  height: 100%;
  background: #e50914;
}

.wp-watch-page {
  padding-top: 92px;
}

@media (max-width: 1100px) {
  .wp-home-wall {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    inset: -10% -16% auto -16%;
  }

  .wp-home-email-form {
    width: min(640px, 100%);
  }

  .wp-stream-nav {
    display: none;
  }

  .wp-row-head h2 {
    font-size: 1.6rem;
  }

}

@media (max-width: 760px) {
  .wp-home-topbar {
    padding: 20px 14px 0;
  }

  .wp-home-topbar-actions {
    gap: 10px;
  }

  .wp-home-lang strong {
    display: none;
  }

  .wp-home-login-btn {
    padding-inline: 14px;
  }

  .wp-home-wall {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 10px;
    inset: -4% -28% auto -28%;
    transform: rotate(-12deg) scale(1.18);
  }

  .wp-home-hero {
    padding: 58px 14px 170px;
  }

  .wp-home-price-line {
    font-size: 1.1rem;
  }

  .wp-home-cta-copy {
    margin-top: 24px;
    font-size: 1rem;
  }

  .wp-home-email-form {
    flex-direction: column;
    width: 100%;
  }

  .wp-home-email-form input,
  .wp-home-start-btn {
    min-height: 58px;
  }

  .wp-home-start-btn {
    width: 100%;
    min-width: 0;
    font-size: 1.35rem;
  }

  .wp-stream-header {
    padding: 0 14px;
  }

  .wp-stream-header__inner {
    min-height: 60px;
  }

  .wp-stream-kids-link {
    display: none;
  }

  .wp-stream-user-menu {
    width: min(280px, calc(100vw - 24px));
    right: -8px;
  }

  .wp-hero--cinema {
    min-height: 82vh;
    padding: 88px 14px 120px;
  }

  .wp-title-hero {
    padding: 84px 14px 20px;
  }

  .wp-hero-logo-stack strong {
    display: none;
  }

  .wp-hero-logo-stack span {
    font-size: 1.45rem;
    letter-spacing: 0.14em;
  }

  .wp-hero-content--cinema h1 {
    font-size: 2.65rem;
  }

  .wp-hero-content--cinema p {
    font-size: 1rem;
  }

  .wp-hero-floating-meta {
    right: 14px;
    bottom: 118px;
    gap: 12px;
  }

  .wp-hero-rating {
    min-width: 92px;
    padding: 10px 14px;
    font-size: 1.35rem;
  }

  .wp-browse-rows-shell {
    margin-top: -56px;
  }

  .wp-row-section {
    padding: 0 14px;
  }

  .wp-row-head h2 {
    font-size: 1.6em;
  }

  .wp-row-rail--cinema {
    grid-auto-columns: minmax(220px, 220px);
    padding-top: 10px;
    padding-bottom: 0;
  }

  .wp-row-rail-scroll {
    padding-bottom: 8px;
  }

  .wp-row-edge-btn {
    display: none;
  }

  .wp-title-card--cinema.is-hover-active {
    z-index: 1;
  }

  .wp-title-card--cinema.is-hover-active .wp-title-card-surface {
    --wp-hover-scale: 1.18;
    transform: none;
  }

  .wp-continue-card--cinema.is-hover-active .wp-title-card-surface {
    --wp-hover-scale: 1.14;
    transform: none;
  }

  .wp-title-modal-dialog {
    width: min(100vw - 16px, 100%);
  }

  .wp-title-modal-hero {
    min-height: 360px;
  }

  .wp-title-modal-hero-content {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .wp-title-modal-body {
    padding: 18px 16px 22px;
  }

  .wp-title-modal-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wp-title-modal-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .wp-title-modal-episode {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .wp-title-modal-episode-index {
    font-size: 1.4rem;
  }

  .wp-title-modal-episode-thumb {
    grid-column: 1 / -1;
  }

  .wp-title-modal-episode-head strong {
    font-size: 1.15rem;
  }

  .wp-title-modal-episode-head span {
    font-size: 1rem;
  }

  .wp-profile-grid-stage.is-manage {
    grid-template-columns: repeat(auto-fit, minmax(140px, 172px));
    gap: 22px;
  }

  .wp-profile-editor-dialog {
    width: min(100vw - 18px, 100%);
    margin: 14px auto;
    padding: 20px;
  }

  .wp-profile-editor-head,
  .wp-profile-editor-grid {
    grid-template-columns: 1fr;
  }

  .wp-profile-editor-preview {
    justify-content: flex-start;
  }

  .wp-avatar-library-modal {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Public notifications + account page */
.wp-stream-notifications {
  position: relative;
}

.wp-stream-notification-menu {
  position: absolute;
  top: calc(100% + 16px);
  right: -18px;
  width: min(420px, 86vw);
  max-height: 74vh;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  z-index: 120;
}

.wp-stream-notification-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wp-stream-notification-menu__head strong {
  font-size: 0.95rem;
}

.wp-stream-notification-read-all-form {
  margin: 0;
}

.wp-stream-notification-read-all-form button {
  border: 0;
  background: transparent;
  color: #e5e5e5;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  padding: 0;
}

.wp-stream-notification-menu__list {
  max-height: 58vh;
  overflow-y: auto;
}

.wp-stream-notification-item {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wp-stream-notification-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.wp-stream-notification-item.is-unread {
  background: rgba(229, 9, 20, 0.11);
}

.wp-stream-notification-item.is-empty {
  color: rgba(255, 255, 255, 0.65);
}

.wp-stream-notification-item__title {
  font-size: 0.9rem;
  font-weight: 700;
}

.wp-stream-notification-item__desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
}

.wp-stream-notification-item__meta {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

.wp-account-page {
  background: #f4f5f7;
  color: #111;
  min-height: 100vh;
  padding: 96px 28px 48px;
}

.wp-account-shell {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 270px) minmax(0, 1fr);
  gap: 34px;
}

.wp-account-sidebar {
  position: sticky;
  top: 108px;
  align-self: start;
}

.wp-account-back {
  display: inline-block;
  margin-bottom: 24px;
  color: #333;
  font-weight: 600;
}

.wp-account-side-nav {
  display: grid;
  gap: 8px;
}

.wp-account-side-nav a {
  color: #202020;
  font-weight: 600;
  padding: 8px 0;
}

.wp-account-main {
  display: grid;
  gap: 16px;
}

.wp-account-header h1 {
  margin: 0;
  font-size: 2.4rem;
  color: #101010;
}

.wp-account-header p {
  margin: 8px 0 0;
  color: #5b5b5b;
}

.wp-account-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 22px;
  display: grid;
  gap: 14px;
}

.wp-account-card.is-danger {
  border-color: rgba(229, 9, 20, 0.4);
}

.wp-account-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.wp-account-card__head h2 {
  margin: 0;
  font-size: 1.62rem;
  color: #121212;
}

.wp-account-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 10px;
  background: #efefef;
  color: #333;
}

.wp-account-pill.is-default,
.wp-account-pill.status-active,
.wp-account-pill.status-trialing {
  background: rgba(28, 172, 62, 0.18);
  color: #1b5e20;
}

.wp-account-pill.status-payment_failed,
.wp-account-pill.status-canceled,
.wp-account-pill.status-expired {
  background: rgba(229, 9, 20, 0.15);
  color: #a30810;
}

.wp-account-subscription-summary h3 {
  margin: 0;
  font-size: 1.45rem;
}

.wp-account-subscription-summary p {
  margin: 4px 0;
  color: #4f4f4f;
}

.wp-account-inline-form label {
  display: block;
  font-size: 0.86rem;
  color: #5c5c5c;
  margin-bottom: 8px;
}

.wp-account-inline-form__row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.wp-account-inline-form__row select {
  min-width: 300px;
  flex: 1;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #cbcbcb;
  padding: 0 10px;
  font: inherit;
}

.wp-account-payment-list {
  display: grid;
  gap: 10px;
}

.wp-account-payment-item {
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.wp-account-payment-item strong {
  display: block;
  margin-bottom: 3px;
}

.wp-account-payment-item small {
  color: #575757;
}

.wp-account-payment-actions {
  display: flex;
  gap: 8px;
}

.wp-account-form-grid {
  display: grid;
  gap: 10px;
}

.wp-account-form-grid h3 {
  margin: 0;
  font-size: 1rem;
}

.wp-account-form-grid label {
  font-size: 0.86rem;
  color: #555;
  display: grid;
  gap: 6px;
}

.wp-account-form-grid input,
.wp-account-form-grid select {
  height: 44px;
  border: 1px solid #cbcbcb;
  border-radius: 10px;
  padding: 0 12px;
  font: inherit;
}

.wp-account-checkbox {
  display: flex !important;
  align-items: center;
  gap: 8px !important;
}

.wp-account-checkbox input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.wp-account-form-actions {
  margin-top: 4px;
  display: flex;
  justify-content: flex-start;
}

.wp-account-empty {
  margin: 0;
  color: #5f5f5f;
}

@media (max-width: 1024px) {
  .wp-account-shell {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wp-account-sidebar {
    position: static;
  }

  .wp-account-side-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .wp-account-side-nav a {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    padding: 9px 8px;
    font-size: 0.82rem;
  }
}

@media (max-width: 720px) {
  .wp-account-page {
    padding: 86px 14px 28px;
  }

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

  .wp-account-inline-form__row select {
    min-width: 0;
    width: 100%;
  }

  .wp-account-payment-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
