:root{color-scheme:dark;--bg:#15191a;--surface:#202526;--ink:#f5fbfc;--accent:#25b9cf;--accent2:#ffe000;--muted:#a6b1b2;--line:#343f40;--radius:7px;--paper:#eee9df;--paper-ink:#191d1c;--paper-line:#c8c1b5;--body:Helvetica Neue,Arial,sans-serif;--display:Georgia,serif}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body, Arial, sans-serif);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
select {
  font: inherit;
}
.wrap {
  width: min(1360px, calc(100% - 48px));
  margin: auto;
}
.skip {
  position: fixed;
  top: -70px;
  left: 16px;
  z-index: 1000;
  padding: 12px;
  background: #fff;
  color: #000;
}
.skip:focus {
  top: 0;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 91%, transparent);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.045em;
}
.brand b {
  color: var(--accent);
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 18px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}
.navlinks a:hover {
  color: var(--accent);
}
.navsearch {
  display: flex;
  margin-left: auto;
}
.navsearch input {
  width: min(240px, 23vw);
  height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  outline: 0;
}
.navsearch input:focus {
  border-color: var(--accent);
}
.menu {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--accent);
  color: #fff;
}
.hero {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero-art {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      var(--bg) 2%,
      color-mix(in srgb, var(--bg) 88%, transparent) 44%,
      transparent 82%
    ),
    linear-gradient(0deg, var(--bg), transparent 68%);
}
.hero-copy {
  width: min(780px, 100%);
  padding: 115px 0 72px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero h1,
.pagehero h1,
.article h2,
.section-head h2,
.titlecopy h1,
.availability h2 {
  font-family: var(--display);
  letter-spacing: -0.055em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 8.2vw, 8.4rem);
  line-height: 0.84;
  text-transform: uppercase;
}
.hero .promise {
  max-width: 650px;
  margin: 23px 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}
.searchbox {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
  max-width: 740px;
  margin-top: 25px;
}
.searchbox input {
  height: 56px;
  padding: 0 17px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  outline: 0;
}
.searchbox button,
.action {
  min-height: 50px;
  padding: 0 23px;
  border: 0;
  background: var(--accent);
  color: var(--button-ink, #fff);
  font-weight: 900;
  cursor: pointer;
}
.title-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
.title-actions .action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.action-secondary {
  border: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  background: color-mix(in srgb, var(--surface) 76%, transparent);
  color: var(--ink);
}
.source-note {
  margin-top: 8px !important;
  font-size: 0.66rem !important;
  opacity: 0.72;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.chips a,
.chips span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.65rem;
}
.section {
  padding: 58px 0;
}
.section + .section {
  border-top: 1px solid var(--line);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 24px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
}
.section-head > a {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
}
.poster-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 18px 12px;
}
.poster {
  display: block;
  min-width: 0;
}
.poster-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--surface);
  border-radius: var(--radius);
}
.poster-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s;
}
.poster:hover img {
  transform: scale(1.045);
}
.poster-art i,
.poster-art b {
  position: absolute;
  padding: 4px 6px;
  font-size: 0.56rem;
  font-style: normal;
}
.poster-art i {
  top: 8px;
  right: 8px;
  background: var(--accent);
  color: var(--button-ink, #fff);
}
.poster-art b {
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
}
.poster h3 {
  overflow: hidden;
  margin: 9px 0 4px;
  font-size: 0.76rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.poster p {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin: 0;
  color: var(--muted);
  font-size: 0.61rem;
}
.feature {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 5vw, 58px);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--line));
  background: var(--surface);
  border-radius: var(--radius);
}
.feature-title {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 55px;
  align-items: end;
}
.feature-title h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.88;
  text-transform: uppercase;
}
.feature-title > p {
  color: var(--muted);
  line-height: 1.7;
}
.tool-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.tool-controls label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.64rem;
}
.tool-controls input,
.tool-controls select {
  min-width: 180px;
  height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
}
.tool-output {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 25px;
}
.tool-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
}
.tool-card img {
  width: 86px;
  height: 128px;
  object-fit: cover;
}
.tool-card h3 {
  margin: 7px 0;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1;
}
.tool-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
}
.ranklist {
  counter-reset: item;
  display: grid;
  gap: 1px;
  margin-top: 28px;
}
.ranklist a {
  counter-increment: item;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.ranklist a:before {
  content: counter(item, decimal-leading-zero);
  color: var(--accent);
  font-family: var(--display);
  font-size: 2rem;
}
.ranklist span {
  font-weight: 900;
}
.ranklist b {
  color: var(--muted);
  font-size: 0.66rem;
}
.wide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.wide-card {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: end;
  overflow: hidden;
}
.wide-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wide-card:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), transparent 75%);
}
.wide-card div {
  position: relative;
  z-index: 1;
  padding: 24px;
  color: #fff;
}
.wide-card h3 {
  margin: 4px 0;
  font-family: var(--display);
  font-size: 1.6rem;
}
.wide-card p {
  margin: 0;
  color: #c8c8cc;
  font-size: 0.7rem;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.step {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--bg);
}
.step b {
  color: var(--accent);
  font-family: var(--display);
  font-size: 4rem;
}
.step h3 {
  font-size: 1.2rem;
}
.step p {
  color: var(--muted);
  line-height: 1.7;
}
.ticker {
  display: flex;
  gap: 24px;
  overflow: hidden;
  padding: 12px 0;
  border-block: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ticker span {
  white-space: nowrap;
}
.intent-zone {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.6fr);
  gap: 48px;
  align-items: start;
  padding-block: 64px;
  border-top: 1px solid var(--line);
}
.intent-zone h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.intent-zone p {
  color: var(--muted);
}
.intent-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.intent-links a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 19px 15px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}
.intent-links a:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.intent-links a:hover,
.intent-links a:focus-visible {
  background: var(--accent);
  color: var(--button-ink, #fff);
}
.article-zone {
  padding: 88px 0;
  background: var(--paper);
  color: var(--paper-ink);
}
.article-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 790px);
  justify-content: center;
  gap: 70px;
}
.toc {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: 10px;
  max-height: calc(100vh - 130px);
  overflow: auto;
  padding-top: 20px;
  padding-right: 12px;
  border-top: 4px solid var(--accent);
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.toc p {
  margin: 0 0 8px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.toc a {
  color: color-mix(in srgb, var(--paper-ink) 66%, transparent);
  font-size: 0.75rem;
  line-height: 1.35;
}
.article header {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--paper-line);
}
.article header h2 {
  margin: 0 0 21px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}
.article > section h2 {
  margin: 0 0 21px;
  font-size: clamp(1.5rem, 3vw, 2.65rem);
  line-height: 1.06;
  text-transform: uppercase;
}
.chapter-link a {
  display: inline-flex;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--accent);
  color: var(--paper-ink);
  font-weight: 900;
}
.article .lede {
  font-size: 1.2rem;
  line-height: 1.75;
}
.article .updated {
  color: color-mix(in srgb, var(--paper-ink) 60%, transparent);
  font-size: 0.7rem;
}
.article > section {
  padding: 42px 0;
  border-bottom: 1px solid var(--paper-line);
}
.article > section h2 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}
.article p {
  color: color-mix(in srgb, var(--paper-ink) 78%, transparent);
  line-height: 1.88;
}
.article details {
  border-top: 1px solid var(--paper-line);
}
.article summary {
  padding: 18px 24px 18px 0;
  font-weight: 900;
  cursor: pointer;
}
.pagehero {
  padding: 100px 0 45px;
}
.pagehero h1 {
  max-width: 980px;
  margin: 13px 0 18px;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.85;
  text-transform: uppercase;
}
.pagehero > p {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.75;
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.66rem;
}
.filterbar {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  margin-top: 27px;
}
.filterbar input,
.filterbar select,
.availability select {
  height: 49px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}
.result-count {
  color: var(--muted);
  font-size: 0.7rem;
}
.catalog-grid > div[hidden] {
  display: none;
}
.catalog-grid { overflow: hidden; }
.catalog-grid > * { min-width: 0; }
.empty {
  padding: 45px;
  border: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.guide-grid a {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.guide-grid a:hover {
  border-color: var(--accent);
}
.guide-grid b {
  color: var(--accent);
  font-size: 2rem;
}
.guide-grid h2 {
  font-size: 1.5rem;
}
.guide-grid p {
  color: var(--muted);
  line-height: 1.65;
}
.policy {
  max-width: 840px;
  padding: 15px 0 100px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}
.titlehero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
}
.titlebackdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.titlehero:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      var(--bg),
      color-mix(in srgb, var(--bg) 86%, transparent) 52%,
      transparent
    ),
    linear-gradient(0deg, var(--bg), transparent 66%);
}
.titlewrap {
  display: grid;
  grid-template-columns: 225px minmax(0, 760px);
  gap: 40px;
  align-items: end;
  padding: 105px 0 65px;
}
.titlewrap .crumbs {
  grid-column: 1/-1;
}
.titleposter {
  width: 225px;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  align-self: end;
  border-radius: var(--radius);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}
.titlecopy h1 {
  margin: 8px 0 14px;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.87;
  text-transform: uppercase;
}
.titlecopy p {
  color: var(--muted);
  line-height: 1.72;
}
.availability {
  padding: 60px 0;
}
.availability-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
}
.availability h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 0.92;
  text-transform: uppercase;
}
.availability-head label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.63rem;
}
.provider-note {
  max-width: 760px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
}
.provider-group {
  margin-top: 26px;
}
.provider-group h3 {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.provider-group > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.provider-group a {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 72px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.provider-group img {
  border-radius: 9px;
}
.provider-group span {
  font-size: 0.75rem;
  font-weight: 900;
}
.provider-group b {
  grid-column: 2;
  color: var(--accent);
  font-size: 0.58rem;
}
.provider-empty {
  padding: 28px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 42px 0;
}
.footer p {
  max-width: 650px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.65;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  align-content: start;
  gap: 12px 18px;
  color: var(--muted);
  font-size: 0.68rem;
}

/* MyFlixer: bright personal library */
.library-blue {
  --body: Inter, Arial, sans-serif;
  --display: Arial Black, Arial, sans-serif;
  --paper: #101d39;
  --paper-ink: #f5f8ff;
  --paper-line: #2d3d5f;
  --button-ink: #fff;
}
.library-blue .topbar {
  background: rgba(255, 255, 255, 0.94);
}
.library-blue .hero {
  min-height: 610px;
  margin: 26px auto 0;
  width: min(1400px, calc(100% - 40px));
  border-radius: 16px;
  align-items: center;
}
.library-blue .hero:before {
  background: linear-gradient(
    90deg,
    rgba(243, 245, 249, 0.96),
    rgba(243, 245, 249, 0.75) 48%,
    transparent 80%
  );
}
.library-blue .hero-copy {
  padding-left: clamp(28px, 5vw, 72px);
}
.library-blue .hero h1 {
  font-size: clamp(4rem, 7vw, 7.2rem);
  color: #101a2e;
}
.library-blue .hero .promise {
  color: #3d4659;
}
.library-blue .poster-art {
  box-shadow: 0 5px 18px rgba(25, 55, 110, 0.15);
}
/* Soap2Day: original aqua-and-white catalog */
.daily-wire {
  --body: Arial, sans-serif;
  --display: Arial Black, Arial, sans-serif;
  --paper: #12393b;
  --paper-ink: #f2ffff;
  --paper-line: #356164;
  --accent: #18777b;
  --brand-mint: #78d8d4;
  --button-ink: #173638;
}
.daily-wire .topbar {
  background: rgba(255, 255, 255, 0.95);
}
.daily-wire .brand {
  color: var(--accent);
}
.daily-wire .nav,
.daily-wire .section,
.daily-wire .hero-copy {
  max-width: 1160px;
}
.daily-wire .hero {
  min-height: 590px;
  border-bottom: 6px solid var(--brand-mint);
}
.daily-wire .hero-art {
  opacity: 0.42;
  filter: saturate(0.7);
}
.daily-wire .hero:before {
  background:
    linear-gradient(
      90deg,
      rgba(243, 247, 246, 0.98),
      rgba(243, 247, 246, 0.84) 52%,
      rgba(120, 216, 212, 0.18)
    ),
    linear-gradient(0deg, var(--bg), transparent 70%);
}
.daily-wire .hero:after {
  content: 'MOVIES / TV SERIES / TOP MOVIES';
  position: absolute;
  right: 4%;
  top: 120px;
  width: 280px;
  color: var(--accent2);
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 0.9;
  text-align: right;
}
.daily-wire .hero h1 {
  color: #243638;
}
.daily-wire .hero .promise {
  color: #52686a;
}
.daily-wire .searchbox input {
  background: #fff;
}
.daily-wire .searchbox button,
.daily-wire .poster-art i {
  background: var(--brand-mint);
  color: #173638;
}
.daily-wire .poster-grid {
  grid-template-columns: repeat(5, 1fr);
}
.daily-wire .poster {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.daily-wire .poster-art {
  width: 95px;
}
.daily-wire .poster h3,
.daily-wire .poster p {
  grid-column: 2;
  margin-left: 0;
}
.daily-wire .poster p {
  display: block;
}
/* HuraWatch: night radar */
.night-radar {
  --body: Arial, sans-serif;
  --display: Arial Black, Arial, sans-serif;
  --paper: #e9f1e6;
  --paper-ink: #112115;
  --paper-line: #b9c9b7;
  --button-ink: #10200f;
}
.night-radar .hero:after {
  content: '';
  position: absolute;
  right: 7%;
  top: 90px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(127, 228, 59, 0.5);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(127, 228, 59, 0.08),
    0 0 0 120px rgba(127, 228, 59, 0.04);
}
.night-radar .hero h1 {
  max-width: 720px;
}
.night-radar .feature {
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 75% 40%,
      rgba(127, 228, 59, 0.2),
      transparent 26%
    ),
    var(--surface);
}
.night-radar .poster-art {
  border-radius: 18px;
}
/* LookMovie: visual search cinema */
.search-cinema {
  --body: Helvetica Neue, Arial, sans-serif;
  --display: Helvetica Neue, Arial, sans-serif;
  --paper: #eef5fc;
  --paper-ink: #07111f;
  --paper-line: #b9ccdf;
}
.search-cinema .hero {
  min-height: 760px;
  text-align: center;
  align-items: center;
}
.search-cinema .hero:before {
  background: linear-gradient(0deg, var(--bg), rgba(7, 9, 13, 0.2), var(--bg));
}
.search-cinema .hero-copy {
  margin: auto;
  padding-top: 180px;
}
.search-cinema .hero h1 {
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 300;
  letter-spacing: -0.08em;
  text-transform: none;
}
.search-cinema .searchbox {
  margin-inline: auto;
}
.search-cinema .chips {
  justify-content: center;
}
.search-cinema .poster-grid {
  grid-template-columns: repeat(4, 1fr);
}
.search-cinema .poster-art {
  aspect-ratio: 16/10;
  border-radius: 12px;
}
.search-cinema .poster h3 {
  font-size: 0.9rem;
}
/* GoMovies: cobalt fast lane */
.cobalt-fastlane {
  --body: Arial, sans-serif;
  --display: Arial Black, Arial, sans-serif;
  --paper: #f4f7fb;
  --paper-ink: #071427;
  --paper-line: #c6d3e5;
  --button-ink: #082f61;
}
.cobalt-fastlane .hero {
  min-height: 570px;
}
.cobalt-fastlane .hero h1 {
  font-style: italic;
}
.cobalt-fastlane .searchbox {
  max-width: 900px;
}
.cobalt-fastlane .searchbox input {
  border: 3px solid var(--accent);
  height: 68px;
}
.cobalt-fastlane .poster-grid {
  display: flex;
  overflow: auto;
  scroll-snap-type: x mandatory;
}
.cobalt-fastlane .poster {
  min-width: 190px;
  scroll-snap-align: start;
}
.cobalt-fastlane .feature {
  transform: skewX(-2deg);
  border-left: 12px solid var(--accent);
}
/* 123Movies: light three-step */
.green-three-step {
  --body: Arial, sans-serif;
  --display: Arial Black, Arial, sans-serif;
  --paper: #173d22;
  --paper-ink: #f4fff5;
  --paper-line: #3c6945;
  --accent: #2d8539;
  --brand-green: #59bc61;
  --button-ink: #fff;
}
.green-three-step .brand b {
  color: var(--brand-green);
}
.green-three-step .hero {
  min-height: 600px;
  margin: 30px auto;
  width: min(1380px, calc(100% - 32px));
  border-radius: 8px;
}
.green-three-step .hero:before {
  background: linear-gradient(
    90deg,
    rgba(243, 244, 243, 0.97),
    rgba(243, 244, 243, 0.77) 50%,
    transparent 85%
  );
}
.green-three-step .hero h1 {
  color: #202523;
}
.green-three-step .hero .promise {
  color: #4c595b;
}
.green-three-step .poster-art {
  border: 1px solid #dfe4e5;
}
.green-three-step .feature:after {
  content: '1  2  3';
  position: absolute;
  right: 2%;
  top: -30px;
  color: color-mix(in srgb, var(--brand-green) 14%, transparent);
  font-family: var(--display);
  font-size: 11rem;
}
/* FMovies: international film room */
.teal-filmroom {
  --body: Georgia, serif;
  --display: Arial Black, Arial, sans-serif;
  --paper: #e9f1f3;
  --paper-ink: #111820;
  --paper-line: #bdcbd0;
  --button-ink: #0c1018;
}
.teal-filmroom .hero {
  min-height: 720px;
}
.teal-filmroom .hero-copy {
  border-left: 1px solid var(--accent);
  padding-left: 35px;
}
.teal-filmroom .poster-grid {
  grid-template-columns: repeat(8, 1fr);
}
.teal-filmroom .section-head h2 {
  max-width: 800px;
}
.teal-filmroom .wide-card:first-child {
  grid-column: span 2;
}
.teal-filmroom .feature {
  background: linear-gradient(120deg, #102426, var(--surface));
}
/* SFlix: instant minimal */
.teal-instant {
  --body: Arial, sans-serif;
  --display: Arial Black, Arial, sans-serif;
  --paper: #f0f7f8;
  --paper-ink: #0a1619;
  --paper-line: #c4d5d8;
  --button-ink: #101b20;
}
.teal-instant .hero {
  min-height: 520px;
  align-items: center;
}
.teal-instant .hero-art {
  opacity: 0.32;
}
.teal-instant .hero:before {
  background: var(--bg);
  opacity: 0.45;
}
.teal-instant .hero-copy {
  margin: auto;
  text-align: center;
}
.teal-instant .hero h1 {
  font-size: clamp(5rem, 12vw, 12rem);
}
.teal-instant .searchbox {
  margin-inline: auto;
}
.teal-instant .chips {
  justify-content: center;
}
.teal-instant .feature {
  border: 0;
  background: transparent;
  padding-inline: 0;
}
.teal-instant .poster-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 18px;
}
.teal-instant .poster-art {
  border-radius: 10px;
}
/* HDToday: blue broadcast with the legacy orange HD signal */
.blue-broadcast {
  --body: Arial, sans-serif;
  --display: Arial Black, Arial, sans-serif;
  --paper: #eef5fb;
  --paper-ink: #071d36;
  --paper-line: #bed1e1;
  --button-ink: #fff;
}
.blue-broadcast .topbar {
  border-top: 4px solid var(--accent);
}
.blue-broadcast .brand {
  color: var(--accent2);
}
.blue-broadcast .brand b {
  color: var(--ink);
}
.blue-broadcast .hero {
  min-height: 620px;
}
.blue-broadcast .hero .eyebrow {
  color: var(--accent2);
}
.blue-broadcast .hero:after {
  content: 'LIVE INDEX';
  position: absolute;
  right: 5%;
  top: 105px;
  padding: 8px 12px;
  background: var(--accent2);
  color: #17202b;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.blue-broadcast .feature {
  border-radius: 0;
}
.blue-broadcast .poster-art {
  border-radius: 0;
}
.blue-broadcast .poster-art i {
  background: var(--accent2);
  color: #17202b;
}
.blue-broadcast .ranklist a {
  grid-template-columns: 90px 1fr auto;
}
.blue-broadcast .ranklist a:before {
  color: var(--accent2);
}
/* Flixtor: premium projector */
.teal-projector {
  --body: Helvetica Neue, Arial, sans-serif;
  --display: Georgia, serif;
  --paper: #eee9df;
  --paper-ink: #191d1c;
  --paper-line: #c8c1b5;
  --button-ink: #15191a;
}
.teal-projector .brand:after {
  content: '●';
  margin-left: 0.45rem;
  color: var(--accent2);
  font-size: 0.42rem;
  vertical-align: middle;
}
.teal-projector .hero {
  min-height: 760px;
}
.teal-projector .hero h1 {
  font-weight: 400;
  text-transform: none;
}
.teal-projector .hero-copy {
  max-width: 690px;
}
.teal-projector .poster-grid {
  grid-template-columns: repeat(5, 1fr);
}
.teal-projector .poster-art {
  aspect-ratio: 16/11;
  border-radius: 10px;
}
.teal-projector .feature {
  border-radius: 18px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.25);
}
/* FlixHQ: technical compare desk */
.turquoise-quality {
  --body: SFMono-Regular, Menlo, monospace;
  --display: Arial Black, Arial, sans-serif;
  --paper: #e9f1f1;
  --paper-ink: #101717;
  --paper-line: #bbcaca;
  --button-ink: #141818;
}
.turquoise-quality .hero {
  min-height: 600px;
  border-bottom: 1px solid var(--accent);
}
.turquoise-quality .hero:after {
  content: 'HQ / META / COMPARE';
  position: absolute;
  right: 4%;
  top: 110px;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}
.turquoise-quality .poster-grid {
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.turquoise-quality .poster h3 {
  font-size: 0.65rem;
}
.turquoise-quality .feature {
  border-radius: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 32px 32px;
}
.turquoise-quality .tool-card {
  grid-template-columns: 70px 1fr;
}
.turquoise-quality .tool-card img {
  width: 70px;
  height: 105px;
}

/* V3 product layer */
.poster-card {
  position: relative;
  min-width: 0;
}
.save-button,
.text-button,
.tool-card > button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
}
.save-button {
  width: 100%;
  margin-top: 8px;
  padding: 9px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.save-button:hover,
.save-button.saved,
.tool-card > button.saved {
  border-color: var(--accent);
  color: var(--accent);
}
.tool-card {
  display: block;
  padding: 10px;
}
.tool-card > a {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
}
.tool-card > button {
  width: 100%;
  margin-top: 8px;
  padding: 8px;
}
.directory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.directory-grid a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  min-height: 78px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  min-width: 0;
}
.directory-grid a:hover {
  border-color: var(--accent);
}
.directory-grid span {
  color: var(--muted);
  font-size: 0.65rem;
}
.watchlist-grid {
  grid-template-columns: repeat(3, 1fr);
}
.text-button {
  margin-top: 30px;
  padding: 12px 16px;
}
.empty[hidden] {
  display: none;
}
.provider-empty .action {
  display: inline-flex;
  margin-top: 12px;
}
.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 18px;
  border: 0;
  background: var(--accent);
  color: var(--button-ink, #07110f);
  font-weight: 900;
  cursor: pointer;
}
/* Movies2Watch: red marquee and decisive double-bill stage */
.red-double-bill {
  --body: Arial, sans-serif;
  --display: Impact, Arial Black, sans-serif;
  --paper: #f5ecee;
  --paper-ink: #1d0a0f;
  --paper-line: #d7bbc2;
}
.red-double-bill .topbar {
  border-bottom: 3px solid var(--accent);
}
.red-double-bill .hero {
  min-height: 720px;
}
.red-double-bill .hero:before {
  background: linear-gradient(
    90deg,
    rgba(8, 9, 11, 0.98),
    rgba(8, 9, 11, 0.7) 52%,
    rgba(229, 29, 54, 0.16)
  );
}
.red-double-bill .hero:after {
  content: 'DOUBLE BILL';
  position: absolute;
  right: 5%;
  top: 120px;
  color: rgba(229, 29, 54, 0.62);
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 8rem);
  writing-mode: vertical-rl;
}
.red-double-bill .feature {
  border-left: 10px solid var(--accent);
  background: linear-gradient(125deg, #251017, var(--surface));
}
.red-double-bill .poster-art {
  box-shadow: 0 12px 45px rgba(229, 29, 54, 0.14);
}

@media (max-width: 1100px) {
  .poster-grid,
  .teal-filmroom .poster-grid,
  .turquoise-quality .poster-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .feature-title {
    grid-template-columns: 1fr;
  }
  .tool-output {
    grid-template-columns: 1fr 1fr;
  }
  .article-shell {
    grid-template-columns: 1fr;
  }
  .toc {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    max-height: 320px;
  }
  .provider-group > div {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .wrap {
    width: min(100% - 28px, 700px);
  }
  .navlinks,
  .navsearch {
    display: none;
  }
  .menu {
    display: block;
  }
  .navlinks.open {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: grid;
    padding: 12px 22px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }
  .hero {
    min-height: 650px;
  }
  .hero h1 {
    font-size: 4.8rem;
  }
  .poster-grid,
  .teal-filmroom .poster-grid,
  .turquoise-quality .poster-grid,
  .teal-projector .poster-grid,
  .teal-instant .poster-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .daily-wire .poster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wide-grid,
  .step-grid,
  .guide-grid {
    grid-template-columns: 1fr 1fr;
  }
  .intent-zone {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .titlewrap {
    grid-template-columns: 150px 1fr;
  }
  .titleposter {
    width: 150px;
  }
  .provider-group > div {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-content: start;
  }
}
@media (max-width: 560px) {
  .wrap {
    width: min(100% - 22px, 500px);
  }
  .hero h1 {
    font-size: 3.55rem;
  }
  .searchbox {
    grid-template-columns: 1fr;
  }
  .hero-art {
    object-position: 62% center;
  }
  .poster-grid,
  .teal-filmroom .poster-grid,
  .turquoise-quality .poster-grid,
  .teal-projector .poster-grid,
  .teal-instant .poster-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 8px;
  }
  .daily-wire .poster-grid {
    grid-template-columns: 1fr;
  }
  .wide-grid,
  .step-grid,
  .guide-grid,
  .tool-output {
    grid-template-columns: 1fr;
  }
  .intent-links {
    grid-template-columns: 1fr;
  }
  .intent-links a:nth-child(odd) {
    border-right: 0;
  }
  .toc {
    grid-template-columns: 1fr;
  }
  .filterbar {
    grid-template-columns: 1fr;
  }
  .titlewrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding-bottom: 40px;
  }
  .titleposter {
    width: 120px;
  }
  .titlecopy h1 {
    font-size: 2.5rem;
  }
  .availability-head {
    align-items: start;
    flex-direction: column;
  }
  .provider-group > div {
    grid-template-columns: 1fr;
  }
  .pagehero h1 {
    font-size: 3.4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
@media (max-width: 1100px) {
  .directory-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .directory-grid a { gap: 6px; flex-wrap: wrap; }
  .watchlist-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 420px) {
  .pagehero h1 { font-size: clamp(2.45rem, 12vw, 3.2rem); overflow-wrap: anywhere; }
}

/* Intermediate desktop header guard. */
@media (min-width: 801px) and (max-width: 960px) {
  .navlinks { display: none; }
  .navsearch { display: flex; }
  .menu { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
  .navlinks.open {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    padding: 12px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
  }
  .navlinks.open a { display: flex; align-items: center; min-height: 44px; }
}

/* Final mobile audit overrides. */
@media (max-width: 800px) {
  .brand, .menu, .navlinks.open a, .save-button, .text-button, .tool-card > button { min-height: 44px; }
  .brand, .menu, .navlinks.open a { display: inline-flex; align-items: center; }
  .menu { min-width: 44px; height: 44px; justify-content: center; }
  .searchbox input, .navsearch input, .filterbar input, .tool-controls input, select { font-size: 16px; }
}
