:root {
  color-scheme: light;
  --blue-title: #000080;
  --browser-gray: #c0c0c0;
  --browser-light: #eeeeee;
  --browser-dark: #777777;
  --teal: #007f7f;
  --teal-dark: #006667;
  --paper: #fff6dc;
  --paper-dot: #efd9aa;
  --ink: #17120b;
  --red: #d30f0f;
  --red-dark: #8b0000;
  --yellow: #ffe22d;
  --black: #050505;
  --link-blue: #0000bb;
  --green: #0a8e2c;
  --font-pixel: "Courier New", Courier, monospace;
  --font-ui: Arial, Helvetica, sans-serif;
  --font-display: Impact, "Arial Black", var(--font-ui);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--teal);
  background-image:
    linear-gradient(45deg, rgba(0, 0, 0, 0.14) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.14) 75%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
  background-position: 0 0, 10px 10px;
  background-size: 20px 20px;
  color: var(--ink);
  font-family: var(--font-ui);
  margin: 0;
  min-width: 320px;
}

a,
button {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  background: var(--yellow);
  border: 0;
  clip: rect(0 0 0 0);
  display: block;
  height: 1px;
  left: 0;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 0;
  white-space: nowrap;
  width: 1px;
  z-index: 50;
}

.skip-link:focus,
.skip-link:focus-visible {
  clip: auto;
  border: 3px solid var(--black);
  height: auto;
  left: 0.75rem;
  margin: 0;
  overflow: visible;
  padding: 0.75rem 1rem;
  top: 0.75rem;
  width: auto;
}

.page-shell {
  min-height: 100svh;
  padding: 4px;
}

.netscape-frame {
  background: var(--browser-gray);
  border: 2px solid var(--black);
  box-shadow:
    inset 2px 2px 0 #ffffff,
    inset -2px -2px 0 #555555;
  margin: 0 auto;
  max-width: 1500px;
}

.netscape-titlebar {
  align-items: center;
  background: linear-gradient(90deg, var(--blue-title), #102aa0);
  border: 2px solid #d7d7d7;
  color: #ffffff;
  display: grid;
  font-family: var(--font-ui);
  font-size: clamp(0.8rem, 1.6vw, 1.35rem);
  font-weight: 700;
  gap: 0.45rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  line-height: 1.1;
  padding: 0.18rem 0.25rem;
}

.netscape-mark {
  align-items: center;
  background: linear-gradient(135deg, #063333, #0f7890);
  border: 1px solid #7fd9e6;
  box-shadow: inset -2px -2px 0 rgba(0, 0, 0, 0.4);
  color: #ffffff;
  display: inline-flex;
  font-family: Georgia, serif;
  font-size: 1rem;
  height: 24px;
  justify-content: center;
  line-height: 1;
  width: 24px;
}

.titlebar-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window-buttons {
  display: flex;
  gap: 0.16rem;
}

.window-buttons span {
  align-items: center;
  background: var(--browser-gray);
  border: 2px outset #ffffff;
  color: var(--black);
  display: inline-flex;
  font-family: var(--font-pixel);
  font-size: 0.8rem;
  font-weight: 900;
  height: 22px;
  justify-content: center;
  line-height: 1;
  width: 24px;
}

.netscape-menubar {
  align-items: center;
  background: var(--browser-gray);
  border-bottom: 1px solid #8f8f8f;
  display: flex;
  gap: clamp(0.8rem, 3vw, 2.2rem);
  padding: 0.45rem 2.25rem 0.35rem;
}

.netscape-menubar a {
  color: var(--ink);
  font-size: 1rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.netscape-toolbar {
  align-items: stretch;
  background: linear-gradient(#eeeeee, #b8b8b8);
  border-bottom: 2px solid #8a8a8a;
  display: flex;
  gap: 0.28rem;
  min-height: 66px;
  padding: 0.35rem 2.25rem 0.4rem;
}

.toolbar-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #111111;
  display: inline-flex;
  flex-direction: column;
  font-size: 0.72rem;
  font-weight: 700;
  justify-content: center;
  min-width: 68px;
  padding: 0.25rem 0.45rem;
  text-decoration: none;
}

.toolbar-button span:first-child {
  align-items: center;
  color: #2945c6;
  display: inline-flex;
  filter: drop-shadow(1px 1px 0 #ffffff);
  font-family: var(--font-pixel);
  font-size: 1.65rem;
  font-weight: 900;
  height: 32px;
  justify-content: center;
}

.toolbar-button:hover,
.toolbar-button:focus-visible {
  background: rgba(255, 255, 255, 0.45);
  outline: 2px dotted var(--black);
  outline-offset: -2px;
}

.toolbar-button.is-muted {
  color: #666666;
}

.toolbar-button.is-muted span:first-child {
  color: #7bbf94;
}

.location-row {
  align-items: center;
  background: var(--browser-gray);
  border-bottom: 2px solid #6f6f6f;
  display: grid;
  gap: 0.45rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 0.35rem 1.25rem;
}

.location-row span:first-child {
  font-size: 1.05rem;
}

.location-row a {
  background: #ffffff;
  border: 2px inset #9b9b9b;
  color: #000000;
  display: block;
  font-family: var(--font-pixel);
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 700;
  overflow: hidden;
  padding: 0.25rem 0.55rem;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-stage {
  background-color: var(--teal);
  background-image:
    linear-gradient(45deg, rgba(0, 0, 0, 0.13) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.13) 75%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
  background-position: 0 0, 10px 10px;
  background-size: 20px 20px;
  min-height: calc(100svh - 148px);
  padding: clamp(0.9rem, 2.5vw, 1.7rem);
}

.homepage-card {
  background:
    radial-gradient(var(--paper-dot) 0.7px, transparent 0.7px) 0 0 / 8px 8px,
    var(--paper);
  border: 4px solid var(--black);
  border-radius: 7px;
  box-shadow:
    0 0 0 5px var(--yellow),
    6px 6px 0 rgba(0, 0, 0, 0.75);
  margin: 0 auto;
  max-width: 1200px;
  overflow: hidden;
}

.retro-header {
  margin: 0 clamp(0.8rem, 2.5vw, 1.7rem);
  padding: clamp(1rem, 2.6vw, 1.7rem) 0 0.7rem;
  text-align: center;
}

.retro-header h1 {
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 6.4vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  margin: 0;
  text-shadow:
    3px 3px 0 #ffffff,
    5px 5px 0 var(--red-dark),
    7px 7px 0 var(--black);
  text-transform: uppercase;
}

.retro-header h1 span {
  filter: drop-shadow(2px 3px 0 rgba(0, 0, 0, 0.5));
  font-family: var(--font-ui);
  font-size: 0.75em;
}

.retro-header p {
  border-bottom: 2px solid #c19800;
  color: #001fa7;
  font-family: var(--font-pixel);
  font-size: clamp(1rem, 2.4vw, 1.55rem);
  font-weight: 900;
  margin: 0.35rem auto 0;
  max-width: 92%;
  padding-bottom: 0.75rem;
}

.retro-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.35rem, 1.2vw, 0.9rem);
  justify-content: center;
  padding: 0.45rem 1rem 0.95rem;
}

.retro-nav a,
.retro-nav button {
  align-items: center;
  background: linear-gradient(#ffffff, #e8e8e8);
  border: 3px outset #ffffff;
  color: #1b1b1b;
  display: inline-flex;
  font-family: var(--font-pixel);
  font-size: clamp(0.88rem, 1.45vw, 1.16rem);
  font-weight: 900;
  gap: 0.45rem;
  justify-content: center;
  min-height: 45px;
  min-width: min(142px, 44vw);
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  text-transform: uppercase;
}

.retro-nav a[aria-current="page"] {
  background: linear-gradient(#fff15a, #ffd82a);
}

.retro-nav a:hover,
.retro-nav a:focus-visible,
.retro-nav button:hover,
.retro-nav button:focus-visible {
  outline: 3px dotted var(--red);
  outline-offset: 3px;
}

.conversion-grid {
  display: grid;
  gap: clamp(0.9rem, 2.7vw, 2rem);
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.95fr);
  padding: 0 clamp(0.7rem, 2.3vw, 2rem) 1.1rem;
}

.trailer-card,
.stream-card {
  background: #fffdf2;
  border: 3px solid var(--black);
  box-shadow:
    inset 2px 2px 0 #ffffff,
    inset -2px -2px 0 #9b9b9b;
}

.trailer-card {
  background: #070707;
  color: #ffffff;
  padding: 0.35rem;
}

.trailer-card h2,
.stream-card h2,
.below-card h2 {
  font-family: var(--font-pixel);
  font-weight: 900;
  line-height: 1.08;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.trailer-card h2 {
  color: var(--yellow);
  font-size: clamp(1.15rem, 2.9vw, 2.05rem);
  padding: 0.48rem 0.45rem;
}

.trailer-poster {
  background: #000000;
  border: 0;
  color: #ffffff;
  display: grid;
  min-height: 382px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}

.trailer-poster img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.trailer-poster::after {
  background: linear-gradient(transparent 46%, rgba(0, 0, 0, 0.9));
  content: "";
  inset: 0;
  position: absolute;
}

.play-ring {
  align-items: center;
  align-self: center;
  border: 7px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  display: inline-flex;
  height: clamp(96px, 14vw, 138px);
  justify-content: center;
  justify-self: center;
  position: relative;
  width: clamp(96px, 14vw, 138px);
  z-index: 2;
}

.play-ring span {
  border-bottom: 27px solid transparent;
  border-left: 42px solid #ffffff;
  border-top: 27px solid transparent;
  display: block;
  height: 0;
  margin-left: 8px;
  width: 0;
}

.poster-caption,
.made-line {
  align-self: end;
  position: relative;
  z-index: 2;
}

.poster-caption {
  color: #ffffff;
  font-size: clamp(0.88rem, 1.8vw, 1.12rem);
  line-height: 1.3;
  padding: 0 1rem 2.9rem;
}

.made-line {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  bottom: 0.6rem;
  color: var(--yellow);
  font-family: var(--font-pixel);
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 900;
  left: 1rem;
  padding-top: 0.55rem;
  position: absolute;
  right: 1rem;
  text-align: center;
}

.trailer-poster:hover .play-ring,
.trailer-poster:focus-visible .play-ring {
  background: rgba(255, 226, 45, 0.22);
  transform: scale(1.04);
}

.trailer-poster:focus-visible {
  outline: 5px solid var(--yellow);
  outline-offset: -10px;
}

.stream-card {
  padding: clamp(0.85rem, 2.2vw, 1.15rem);
}

.stream-card h2 {
  border-bottom: 2px dashed var(--yellow);
  color: var(--red);
  font-size: clamp(1.6rem, 4.1vw, 2.35rem);
  padding: 0.2rem 0 0.55rem;
  text-shadow: 2px 2px 0 #ffffff, 4px 4px 0 rgba(0, 0, 0, 0.18);
}

.stream-card h2 span {
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--black);
}

.stream-links {
  display: grid;
  gap: 0.68rem;
  margin-top: 0.9rem;
}

.stream-button {
  align-items: center;
  border: 4px ridge #ffffff;
  color: #ffffff;
  display: grid;
  font-family: var(--font-pixel);
  font-size: clamp(1.18rem, 2.5vw, 1.65rem);
  font-weight: 900;
  gap: 0.75rem;
  grid-template-columns: 116px 1fr;
  min-height: 68px;
  padding: 0.45rem 0.75rem;
  text-decoration: none;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.45);
}

.stream-button:hover,
.stream-button:focus-visible {
  filter: brightness(1.12) saturate(1.12);
  outline: 4px solid var(--yellow);
  outline-offset: 2px;
}

.platform-mark {
  align-items: center;
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: clamp(0.78rem, 1.7vw, 1.05rem);
  font-weight: 900;
  justify-content: center;
  min-height: 34px;
  text-transform: lowercase;
}

.apple {
  background: linear-gradient(#303030, #080808);
}

.prime {
  background: linear-gradient(#1d79d8, #05509e);
}

.google {
  background: linear-gradient(#16a22c, #067114);
}

.youtube {
  background: linear-gradient(#f40a0a, #bf0000);
}

.play-triangle {
  background:
    linear-gradient(90deg, #23c2ff 0 34%, #23c2ff00 34%),
    conic-gradient(from 90deg, #ffdd2e 0 25%, #1fc254 0 50%, #24a5ff 0 75%, #f23a2e 0);
  clip-path: polygon(12% 5%, 95% 50%, 12% 95%);
  height: 42px;
  min-height: 42px;
  width: 54px;
}

.play-box {
  background: #ffffff;
  border-radius: 8px;
  height: 32px;
  min-height: 32px;
  position: relative;
  width: 48px;
}

.play-box::after {
  border-bottom: 9px solid transparent;
  border-left: 15px solid #f40a0a;
  border-top: 9px solid transparent;
  content: "";
  left: 18px;
  position: absolute;
  top: 7px;
}

.more-ways {
  color: var(--ink);
  font-family: var(--font-pixel);
  font-size: clamp(0.82rem, 1.7vw, 1rem);
  font-weight: 900;
  margin: 0.9rem 0 0;
  text-align: center;
}

.more-ways span {
  color: var(--red);
}

.status-strip {
  align-items: center;
  background: var(--teal-dark);
  border-top: 4px solid var(--black);
  color: var(--yellow);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-pixel);
  font-weight: 900;
  gap: 0.8rem;
  justify-content: space-between;
  padding: 0.75rem clamp(0.85rem, 2.5vw, 2rem);
}

.visitor-counter,
.status-strip p {
  margin: 0;
}

.counter-digits {
  display: inline-flex;
  gap: 0.15rem;
  margin-left: 0.35rem;
  vertical-align: middle;
}

.counter-digits span {
  background: #060606;
  border: 1px solid #4d4d4d;
  color: #daffd7;
  display: inline-flex;
  min-width: 1.05rem;
  padding: 0.08rem 0.16rem;
  justify-content: center;
}

.guestbook-link,
.text-link,
.retro-footer a {
  color: #fff176;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.guestbook-link {
  font-size: clamp(1rem, 2.3vw, 1.45rem);
}

.below-card {
  background:
    radial-gradient(var(--paper-dot) 0.7px, transparent 0.7px) 0 0 / 8px 8px,
    var(--paper);
  border: 4px solid var(--black);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.72);
  margin: clamp(1rem, 2.3vw, 1.5rem) auto 0;
  max-width: 1200px;
  padding: clamp(1rem, 2.5vw, 1.5rem);
}

.below-card h2 {
  color: var(--red);
  font-size: clamp(1.65rem, 3.7vw, 2.6rem);
  text-align: left;
}

.below-card h3 {
  border-bottom: 2px dashed var(--teal-dark);
  color: var(--link-blue);
  font-family: var(--font-pixel);
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  margin: 1.25rem 0 0.75rem;
  padding-bottom: 0.3rem;
  text-transform: uppercase;
}

.below-card p {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 700;
  line-height: 1.5;
  margin: 0.8rem 0 1rem;
  max-width: 72ch;
}

.section-kicker {
  color: var(--red-dark);
  font-family: var(--font-pixel);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.section-intro,
.lead-copy {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  line-height: 1.5;
}

.synopsis-grid {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.4fr);
}

.synopsis-note {
  background: #fffef1;
  border: 3px dashed var(--red);
  font-family: var(--font-pixel);
  padding: 0.8rem;
}

.synopsis-note strong,
.synopsis-note span {
  display: block;
}

.synopsis-note strong {
  color: var(--red);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.synopsis-note span {
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1.45;
}

.story-beats {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 1rem 0 1.1rem;
}

.story-beats article,
.people-grid a,
.people-grid article,
.source-grid article {
  background: #fffef1;
  border: 3px solid var(--black);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
  padding: 0.85rem;
}

.story-beats strong,
.people-grid strong,
.source-grid strong {
  color: var(--red-dark);
  display: block;
  font-family: var(--font-pixel);
  font-size: 1rem;
  text-transform: uppercase;
}

.story-beats p {
  font-size: 0.95rem;
  margin: 0.45rem 0 0;
}

.text-link {
  background: var(--teal-dark);
  border: 3px outset #ffffff;
  display: inline-flex;
  font-family: var(--font-pixel);
  font-weight: 900;
  padding: 0.7rem 0.9rem;
  text-transform: uppercase;
}

.people-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.people-grid a,
.people-grid article {
  color: var(--ink);
  min-height: 100px;
  text-decoration: none;
}

.people-grid a:hover,
.people-grid a:focus-visible {
  background: var(--yellow);
  outline: 3px dotted var(--red);
  outline-offset: 3px;
}

.people-grid span,
.people-grid small,
.source-grid span {
  display: block;
  font-family: var(--font-pixel);
  font-weight: 900;
  line-height: 1.35;
  margin-top: 0.35rem;
}

.people-grid small {
  color: var(--red-dark);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.team-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.photo-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
}

.photo-grid figure {
  background: #060606;
  border: 4px ridge #ffffff;
  color: var(--yellow);
  margin: 0;
  overflow: hidden;
}

.photo-grid img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.photo-grid figure:nth-child(2) img {
  object-position: 62% 50%;
}

.photo-grid figure:nth-child(3) img {
  object-position: 72% 50%;
}

.photo-grid figcaption {
  font-family: var(--font-pixel);
  font-size: 0.9rem;
  font-weight: 900;
  padding: 0.65rem;
  text-align: center;
  text-transform: uppercase;
}

.source-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.source-grid article {
  border-style: dashed;
}

.source-grid span {
  color: var(--teal-dark);
  font-size: 0.85rem;
  overflow-wrap: anywhere;
}

.guestbook-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
}

.guestbook-grid article {
  background: #fffef1;
  border: 3px dashed var(--teal-dark);
  padding: 0.9rem;
}

.guestbook-grid strong,
.guestbook-grid span {
  display: block;
}

.guestbook-grid strong {
  color: var(--link-blue);
  font-family: var(--font-pixel);
}

.guestbook-grid span {
  color: var(--red-dark);
  font-size: 0.9rem;
  font-weight: 900;
  margin-top: 0.14rem;
}

.retro-footer {
  color: #e8ffff;
  font-family: var(--font-pixel);
  font-weight: 900;
  padding: 1rem 1rem 0.2rem;
  text-align: center;
}

.retro-footer p {
  margin: 0.35rem 0;
}

.retro-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  justify-content: center;
}

.retro-footer nav a + a::before {
  color: #e8ffff;
  content: "|";
  margin-right: 0.9rem;
}

.trailer-modal {
  background: var(--browser-gray);
  border: 3px solid var(--black);
  box-shadow:
    0 0 0 2px #ffffff,
    8px 8px 0 rgba(0, 0, 0, 0.7);
  max-width: min(1000px, calc(100vw - 1.5rem));
  padding: 0;
  width: 100%;
}

.trailer-modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.modal-titlebar {
  align-items: center;
  background: linear-gradient(90deg, var(--blue-title), #102aa0);
  color: #ffffff;
  display: flex;
  font-family: var(--font-ui);
  font-weight: 900;
  justify-content: space-between;
  padding: 0.25rem 0.35rem 0.25rem 0.6rem;
}

.modal-titlebar button {
  background: var(--browser-gray);
  border: 2px outset #ffffff;
  color: var(--black);
  font-family: var(--font-pixel);
  font-weight: 900;
  height: 28px;
  width: 34px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #000000;
  border: 3px inset #777777;
}

.video-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 1040px) {
  .netscape-toolbar {
    padding-inline: 0.8rem;
  }

  .toolbar-button {
    min-width: 56px;
  }

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

  .stream-card {
    order: -1;
  }

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

  .stream-button {
    grid-template-columns: 76px 1fr;
  }

  .synopsis-grid,
  .story-beats,
  .people-grid,
  .team-grid,
  .photo-grid,
  .source-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 0;
  }

  .netscape-frame {
    border-left: 0;
    border-right: 0;
  }

  .netscape-menubar,
  .netscape-toolbar {
    display: none;
  }

  .netscape-titlebar {
    font-size: 0.82rem;
  }

  .site-stage {
    min-height: calc(100svh - 74px);
    padding: 0.7rem;
  }

  .homepage-card {
    border-width: 3px;
    box-shadow:
      0 0 0 3px var(--yellow),
      4px 4px 0 rgba(0, 0, 0, 0.7);
  }

  .retro-header {
    margin-inline: 0.65rem;
    padding-top: 0.85rem;
  }

  .retro-header h1 {
    font-size: clamp(2rem, 11vw, 3.4rem);
    text-shadow:
      2px 2px 0 #ffffff,
      4px 4px 0 var(--red-dark),
      5px 5px 0 var(--black);
  }

  .retro-header h1 span {
    display: none;
  }

  .retro-header p {
    font-size: 0.95rem;
    max-width: 100%;
    padding-bottom: 0.55rem;
  }

  .retro-nav {
    gap: 0.4rem;
    padding: 0.3rem 0.55rem 0.65rem;
  }

  .retro-nav a,
  .retro-nav button {
    flex: 1 1 calc(50% - 0.4rem);
    font-size: 0.92rem;
    min-height: 38px;
    min-width: 0;
    padding: 0.28rem 0.35rem;
  }

  .conversion-grid {
    gap: 0.7rem;
    padding: 0 0.55rem 0.75rem;
  }

  .stream-card {
    padding: 0.65rem;
  }

  .stream-card h2 {
    font-size: clamp(1.25rem, 8vw, 1.8rem);
  }

  .stream-links {
    gap: 0.45rem;
    grid-template-columns: 1fr 1fr;
    margin-top: 0.55rem;
  }

  .stream-button {
    border-width: 3px;
    font-size: clamp(0.78rem, 4.3vw, 1rem);
    gap: 0.25rem;
    grid-template-columns: 1fr;
    min-height: 54px;
    padding: 0.35rem 0.2rem;
    text-align: center;
  }

  .platform-mark {
    display: none;
  }

  .more-ways {
    display: none;
  }

  .trailer-card {
    border-width: 3px;
  }

  .trailer-card h2 {
    font-size: 1.02rem;
    padding: 0.38rem 0.25rem;
  }

  .trailer-poster {
    min-height: 220px;
  }

  .play-ring {
    border-width: 5px;
    height: 86px;
    width: 86px;
  }

  .play-ring span {
    border-bottom-width: 20px;
    border-left-width: 31px;
    border-top-width: 20px;
  }

  .poster-caption {
    font-size: 0.82rem;
    padding: 0 0.75rem 2.45rem;
  }

  .made-line {
    font-size: 0.76rem;
  }

  .status-strip {
    justify-content: center;
    padding: 0.55rem;
    text-align: center;
  }

  .visitor-counter {
    font-size: 0.75rem;
  }

  .counter-digits {
    display: none;
  }

  .guestbook-link {
    font-size: 0.95rem;
  }

  .below-card {
    border-width: 3px;
    margin-top: 0.8rem;
    padding: 0.85rem;
  }

  .below-card h2 {
    font-size: 1.35rem;
  }

  .below-card h3 {
    font-size: 1rem;
  }

  .synopsis-grid,
  .story-beats,
  .people-grid,
  .team-grid,
  .photo-grid,
  .source-grid {
    grid-template-columns: 1fr;
  }

  .story-beats article,
  .people-grid a,
  .people-grid article,
  .source-grid article {
    padding: 0.75rem;
  }

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

  .retro-footer nav a + a::before {
    display: none;
  }
}

@media (max-width: 410px) {
  .location-row {
    gap: 0.25rem;
    padding-inline: 0.4rem;
  }

  .location-row span:first-child {
    font-size: 0.82rem;
  }

  .location-row a {
    font-size: 0.72rem;
  }

  .retro-nav a,
  .retro-nav button {
    font-size: 0.8rem;
  }

  .stream-button {
    font-size: 0.73rem;
  }
}
