: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-x: auto;
  padding-bottom: 6px;
  scroll-behavior: smooth;
}

.wp-continue-grid::-webkit-scrollbar {
  height: 8px;
}

.wp-continue-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.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-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-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: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
}

.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;
}

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

.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 {
  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: 1100px) {
  .wp-watch-page {
    grid-template-columns: 1fr;
  }

  .wp-next-up {
    order: 2;
  }
}

@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;
  }
}

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: center;
  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: 630px;
  position: relative;
  z-index: 1;
}

.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;
}

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

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

.wp-hero-content--cinema h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6.4vw, 5.8rem);
  letter-spacing: -0.03em;
  line-height: 0.92;
  max-width: 640px;
  text-transform: uppercase;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
}

.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-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: -122px;
  position: relative;
  z-index: 2;
}

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

.wp-row-section {
  padding: 0 52px;
  margin-top: 32px;
}

.wp-row-head h2 {
  font-size: 3.2rem;
  font-weight: 700;
}

.wp-row-rail--cinema {
  grid-auto-columns: minmax(308px, 308px);
  gap: 7px;
  overflow-y: visible;
  padding-top: 14px;
  padding-bottom: 60px;
}

.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 {
  position: relative;
  border-radius: 5px;
  background: #1c1c1c;
  border: 0;
  overflow: visible;
  transition: transform 0.22s ease;
  transform-origin: center center;
  z-index: 1;
}

.wp-title-card--cinema .wp-title-cover {
  aspect-ratio: 16 / 9;
  border-radius: 5px;
  overflow: hidden;
}

.wp-title-card--cinema .wp-title-cover img {
  transition: transform 0.28s ease;
}

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

.wp-title-card--cinema.is-hover-active {
  transform: scale(1.28) translateY(-22px);
  z-index: 16;
}

.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;
}

.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;
}

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

.wp-title-hover-panel {
  display: none;
  border-radius: 0 0 5px 5px;
  background: #181818;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.66);
}

.wp-title-card--cinema.is-hover-active .wp-title-hover-panel {
  display: block;
}

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

.wp-title-hover-media {
  aspect-ratio: 16 / 9;
  border-radius: 0;
  overflow: hidden;
  background: #080808;
}

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

.wp-title-hover-actions {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 14px 12px;
}

.wp-hover-circle {
  width: 42px;
  height: 42px;
  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;
}

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

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

.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 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px;
}

.wp-title-hover-badges span {
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 4px 8px;
  color: #f8f8f8;
  font-size: 0.74rem;
  font-weight: 700;
}

.wp-title-hover-tags {
  margin: 10px 0 0;
  padding: 0 14px 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  line-height: 1.5;
}

.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 {
  border-radius: 6px;
  background: #1c1c1c;
  border: 0;
}

.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: -70px;
  }

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

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

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

  .wp-title-card--cinema.is-hover-active {
    transform: scale(1.14) translateY(-10px);
  }

  .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));
  }
}
