@font-face {
  font-family: "Pirata One";
  src: url("fonts/PirataOne-Regular.ttf?v=20260726-3") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  color-scheme: dark;
  --ink: #0a0a09;
  --coal: #11110f;
  --panel: #161612;
  --paper: #e9e2d4;
  --muted: #9a978e;
  --faint: #6f6c65;
  --line: rgba(233, 226, 212, 0.16);
  --line-strong: rgba(233, 226, 212, 0.3);
  --acid: #d4ec63;
  --rust: #bd553d;
  --amber: #d3a14c;
  --blood: #b84f46;
  --shell: 1240px;
  --sans: "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% -10%, rgba(189, 85, 61, 0.08), transparent 34rem),
    var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  border: 10px solid var(--ink);
  pointer-events: none;
  content: "";
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

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

button {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  transform: translateY(-200%);
  background: var(--acid);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-noise {
  position: fixed;
  z-index: 90;
  inset: 0;
  opacity: 0.17;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 18% 20%, transparent 0, transparent 1px, rgba(255,255,255,0.13) 1.5px, transparent 2px);
  background-size: 8px 8px;
  mix-blend-mode: soft-light;
}

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 10;
}

.header-inner {
  min-height: 98px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand {
  width: max-content;
  display: inline-flex;
  gap: 13px;
  align-items: center;
}

.brand-mark {
  position: relative;
  width: 37px;
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--paper);
}

.brand-mark::after {
  position: absolute;
  width: 92%;
  aspect-ratio: 1;
  top: -8%;
  right: -20%;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.brand-mark span {
  position: absolute;
  z-index: 2;
  width: 3px;
  height: 3px;
  right: 8px;
  bottom: 9px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: -6px -4px 0 var(--acid), -10px 3px 0 rgba(212, 236, 99, 0.65);
}

.brand-type {
  min-width: max-content;
  font-family: "Pirata One", "Copperplate Gothic", Georgia, serif;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

.brand-type b {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav,
.social-nav,
.footer-social,
.footer-bottom nav {
  display: flex;
  align-items: center;
}

.main-nav {
  gap: 36px;
}

.main-nav a,
.footer-bottom a {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav a:hover,
.footer-bottom a:hover {
  color: var(--paper);
}

.social-nav {
  justify-self: end;
  gap: 8px;
}

.social-nav a {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.social-nav a:hover {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.section-heading h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.19em;
}

.poster-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1.01);
  transition: transform 1.2s ease;
}

.poster-one .poster-art {
  background:
    linear-gradient(108deg, transparent 0 36%, rgba(7, 8, 6, 0.9) 36.2% 38%, transparent 38.2%),
    linear-gradient(72deg, transparent 0 57%, rgba(8, 8, 6, 0.85) 57.2% 59%, transparent 59.2%),
    radial-gradient(circle at 49% 28%, rgba(221, 231, 173, 0.58), transparent 19%),
    linear-gradient(175deg, #363b2c 0%, #111510 58%, #090a08 100%);
}

.poster-two .poster-art {
  background:
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(255,255,255,0.025) 4px 5px),
    radial-gradient(circle at 62% 40%, rgba(228, 104, 74, 0.34), transparent 28%),
    linear-gradient(135deg, #381916, #100d0d 60%, #080707);
}

.poster-three .poster-art {
  background:
    radial-gradient(circle at 62% 40%, rgba(210, 215, 189, 0.28), transparent 9%, transparent 19%, rgba(210, 215, 189, 0.08) 19.3%, transparent 20%),
    linear-gradient(145deg, #202825, #0b100e 56%, #070807);
}

.poster-four .poster-art {
  background:
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(255,255,255,0.022) 4px 5px),
    radial-gradient(circle at 58% 54%, rgba(217, 151, 68, 0.28), transparent 24%),
    linear-gradient(145deg, #34251b, #12100d 60%, #090807);
}

.motel-sign {
  position: absolute;
  width: min(25vw, 270px);
  top: 12%;
  left: 10%;
  padding: 9px 5px;
  transform: rotate(-3deg);
  border: 2px solid #ca6d45;
  color: #df8a57;
  font-size: clamp(0.7rem, 1.4vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.32em;
  text-align: center;
  box-shadow: 0 0 24px rgba(210, 101, 66, 0.3);
}

.motel-door {
  position: absolute;
  width: min(27vw, 280px);
  height: 66%;
  right: 12%;
  bottom: -2%;
  border: clamp(12px, 2vw, 22px) solid #090807;
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04), transparent),
    linear-gradient(#8d6239, #2c2118 76%);
  box-shadow: 0 0 60px rgba(211, 161, 76, 0.12);
}

.motel-door::before {
  position: absolute;
  width: 8px;
  aspect-ratio: 1;
  right: 14%;
  top: 52%;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber);
  content: "";
}

.poster-moon {
  position: absolute;
  width: min(34vw, 400px);
  aspect-ratio: 1;
  left: 50%;
  top: 9%;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 24%, rgba(60, 65, 50, 0.22) 0 5%, transparent 6%),
    radial-gradient(circle at 65% 58%, rgba(60, 65, 50, 0.18) 0 9%, transparent 10%),
    #cfd6ad;
  box-shadow: 0 0 90px rgba(212, 236, 99, 0.12);
}

.poster-door {
  position: absolute;
  width: min(25vw, 260px);
  height: 65%;
  left: 51%;
  bottom: -3%;
  transform: translateX(-50%) perspective(600px) rotateY(-5deg);
  border: clamp(12px, 2vw, 24px) solid #080907;
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04), transparent),
    linear-gradient(#7d8b5f, #1e2719 78%);
  box-shadow: 0 0 70px rgba(212, 236, 99, 0.12);
}

.poster-door::before {
  position: absolute;
  width: 9px;
  aspect-ratio: 1;
  right: 13%;
  top: 53%;
  border-radius: 50%;
  background: #e2c972;
  box-shadow: 0 0 13px #e2c972;
  content: "";
}

.signal-ring {
  position: absolute;
  top: 28%;
  left: 62%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 140, 105, 0.34);
  border-radius: 50%;
}

.signal-ring-one {
  width: min(48vw, 590px);
}

.signal-ring-two {
  width: min(30vw, 360px);
}

.signal-tower {
  position: absolute;
  width: 4px;
  height: 70%;
  left: 62%;
  bottom: -4%;
  transform: skewX(-10deg);
  background: #0b0909;
  box-shadow: 36px 0 0 #0b0909, -36px 0 0 #0b0909;
}

.signal-tower::before,
.signal-tower::after {
  position: absolute;
  width: 110px;
  height: 4px;
  left: -52px;
  transform: rotate(24deg);
  transform-origin: center;
  background: #0b0909;
  box-shadow: 0 68px 0 #0b0909, 0 136px 0 #0b0909, 0 204px 0 #0b0909;
  content: "";
}

.signal-tower::after {
  transform: rotate(-24deg);
}

.poster-orbit {
  position: absolute;
  width: min(43vw, 530px);
  aspect-ratio: 1;
  top: 6%;
  left: 62%;
  transform: translateX(-50%);
  border: 1px solid rgba(220, 225, 209, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(220, 225, 209, 0.025),
    0 0 0 61px rgba(220, 225, 209, 0.08);
}

.poster-figure {
  position: absolute;
  width: min(9vw, 94px);
  height: 56%;
  left: 62%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  background: #050606;
  filter: blur(0.5px);
}

.poster-figure::before {
  position: absolute;
  width: 76%;
  aspect-ratio: 0.9;
  top: -13%;
  left: 12%;
  border-radius: 52% 52% 45% 45%;
  background: #050606;
  content: "";
}

.poster-scratches {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    linear-gradient(82deg, transparent 0 26%, rgba(255,255,255,0.6) 26.1%, transparent 26.3%),
    linear-gradient(89deg, transparent 0 71%, rgba(255,255,255,0.4) 71.1%, transparent 71.2%),
    repeating-linear-gradient(177deg, transparent 0 36px, rgba(255,255,255,0.05) 37px, transparent 38px);
}

.status-badge {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--paper);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-badge::before {
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
  content: "";
}

.status-development {
  color: var(--acid);
}

.status-available {
  color: #e9bc65;
}

.status-writing {
  color: #ed8b70;
}

.status-concept {
  color: #a3bab0;
}

.anthology-section {
  padding: 120px 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px),
    var(--coal);
  background-size: 46px 46px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 70px;
  align-items: end;
  padding-bottom: 32px;
}

.section-heading-simple {
  display: block;
  padding-bottom: 32px;
}

.section-heading-simple h2 {
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading h2 {
  color: var(--acid);
  font-size: 0.68rem;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading-note {
  padding-bottom: 8px;
}

.issue-count {
  display: block;
  margin-bottom: 15px;
  color: var(--acid);
  font-family: var(--sans);
  font-size: 3rem;
  letter-spacing: -0.05em;
}

.section-heading-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.volume-list {
  border-top: 1px solid var(--line-strong);
}

.volume-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
  padding: 62px 0;
  border-bottom: 1px solid var(--line-strong);
}

.volume-visual,
.media-shot {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  background-color: #111;
}

.volume-visual {
  min-height: 0;
  overflow: visible;
  background: transparent;
}

.media-shot::before {
  position: absolute;
  inset: 0;
  background: inherit;
  content: "";
  transform: scale(1);
  transition: transform 650ms ease, filter 650ms ease;
}

.media-shot::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(3,3,3,0.7), transparent 45%),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,0.018) 3px 4px);
  content: "";
}

.carousel-slide {
  position: absolute;
  inset: 0;
}

.carousel-viewport {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #000;
}

.carousel-slide {
  visibility: hidden;
  opacity: 0;
  background: #000;
  transition: opacity 240ms ease, visibility 240ms ease;
}

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

.carousel-slide img,
.carousel-placeholder {
  width: 100%;
  height: 100%;
  display: block;
}

.carousel-slide img {
  object-fit: cover;
}

.carousel-placeholder {
  background: #000;
}

.carousel-placeholder.placeholder-tone-1 {
  background: #080808;
}

.carousel-placeholder.placeholder-tone-2 {
  background: #3a1d1d;
}

.carousel-placeholder.placeholder-tone-3 {
  background: #263428;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 18px;
}

.carousel-dot {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
}

.carousel-dot:hover,
.carousel-dot.is-active {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.scene-one,
.shot-door {
  background:
    linear-gradient(90deg, #070908 0 27%, transparent 27% 69%, #080a08 69%),
    linear-gradient(0deg, #070807 0 10%, transparent 10%),
    radial-gradient(ellipse at 50% 64%, #a19d68 0 2%, transparent 3%),
    linear-gradient(90deg, #252e21, #526044 52%, #20261e);
}

.scene-four,
.shot-motel {
  background:
    linear-gradient(90deg, #090806 0 16%, transparent 16% 72%, #080706 72%),
    linear-gradient(0deg, #080706 0 10%, transparent 10%),
    radial-gradient(circle at 60% 54%, rgba(220, 154, 73, 0.28), transparent 27%),
    linear-gradient(120deg, #3a2c20, #17120e 64%, #090806);
}

.shot-parking {
  background:
    linear-gradient(8deg, transparent 0 49%, rgba(223, 180, 101, 0.16) 49.5% 50%, transparent 50.5%),
    radial-gradient(circle at 75% 24%, #d8a350 0 1.5%, rgba(216,163,80,0.22) 2% 8%, transparent 9%),
    linear-gradient(#2a2119, #080706 74%);
}

.shot-receipt {
  background:
    linear-gradient(73deg, transparent 0 38%, rgba(229, 218, 190, 0.24) 39% 61%, transparent 62%),
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(235,225,205,0.05) 25px 26px),
    linear-gradient(130deg, #2f251c, #0b0907);
}

.scene-one::before,
.shot-door::before {
  clip-path: polygon(27% 0, 69% 0, 69% 100%, 27% 100%);
  box-shadow: inset 0 0 90px #080a08;
}

.scene-two,
.shot-signal {
  background:
    linear-gradient(64deg, transparent 0 49.6%, #100b0b 49.8% 50.4%, transparent 50.6%),
    linear-gradient(116deg, transparent 0 49.6%, #100b0b 49.8% 50.4%, transparent 50.6%),
    repeating-radial-gradient(circle at 50% 42%, transparent 0 38px, rgba(230,119,86,0.16) 39px 40px),
    radial-gradient(circle at 50% 40%, #70271d, #1e0d0c 48%, #0b0808);
}

.scene-three,
.shot-figure {
  background:
    radial-gradient(ellipse at 52% 68%, #050606 0 6%, transparent 6.5%),
    radial-gradient(circle at 52% 39%, #050606 0 4%, transparent 4.5%),
    linear-gradient(90deg, transparent 0 51.3%, #050606 51.5% 52.6%, transparent 52.8%),
    radial-gradient(circle at 52% 40%, rgba(206,221,205,0.28), transparent 15%),
    linear-gradient(145deg, #25302d, #0a0e0c 70%);
}

.shot-kitchen {
  background:
    linear-gradient(90deg, #080a08 0 20%, transparent 20% 69%, #0b0c0a 69%),
    linear-gradient(0deg, #10120f 0 33%, transparent 33%),
    linear-gradient(90deg, transparent 0 44%, rgba(215,205,140,0.45) 44% 55%, transparent 55%),
    linear-gradient(#273024, #121611);
}

.shot-stairs {
  background:
    repeating-linear-gradient(11deg, #0a0b09 0 18px, #252c20 19px 24px),
    linear-gradient(90deg, #070807, #333c2d, #0a0b09);
}

.shot-notes {
  background:
    linear-gradient(25deg, transparent 0 45%, rgba(211,190,145,0.25) 46% 60%, transparent 61%),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(216,228,203,0.08) 29px 30px),
    linear-gradient(120deg, #1f2a25, #080b09);
}

.shot-static {
  background:
    repeating-radial-gradient(circle at 40% 40%, #c5c3b5 0 1px, #151514 1px 3px, #6c6b65 3px 4px),
    #161616;
  background-size: 6px 6px;
}

.shot-label {
  position: absolute;
  z-index: 3;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.volume-kicker {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.volume-content h3 {
  margin: 28px 0 16px;
  color: var(--blood);
  font-family: var(--sans);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 750;
  letter-spacing: 0.11em;
  line-height: 1.1;
  text-transform: uppercase;
}

.volume-content h3 a {
  transition: color 180ms ease;
}

.volume-content h3 a:hover {
  color: var(--paper);
}

.volume-deck {
  max-width: 570px;
  margin: 0 0 32px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.84rem;
  line-height: 1.75;
}

.volume-meta,
.game-facts {
  margin: 0;
}

.volume-meta div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
}

.volume-meta div:last-child {
  border-bottom: 1px solid var(--line);
}

.volume-meta dt {
  color: var(--faint);
}

.volume-meta dd {
  margin: 0;
  color: var(--muted);
}

.volume-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 28px;
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--paper);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

a.text-link:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.text-link.is-disabled {
  border: 0;
  color: var(--faint);
}

.upcoming-section {
  padding: 120px 0;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.about-section {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr;
  gap: clamp(40px, 7vw, 100px);
  padding-top: 120px;
  padding-bottom: 120px;
  align-items: start;
}

.about-tagline {
  margin: 0;
  color: var(--paper);
  font-family: var(--sans);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.about-copy > p:last-child {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.75;
}

.about-facts {
  border-top: 1px solid var(--line);
}

.about-facts div {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.about-facts span,
.about-facts strong {
  display: block;
}

.about-facts span {
  margin-bottom: 4px;
  color: var(--faint);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-facts strong {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
}

.site-footer {
  position: relative;
  z-index: 4;
  background: #333330;
  color: var(--paper);
}

.footer-top {
  min-height: 280px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.site-footer .eyebrow {
  color: var(--acid);
}

.footer-callout {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.footer-social {
  gap: 8px;
}

.footer-social a {
  min-width: 110px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.footer-social a:hover {
  background: var(--acid);
  color: var(--ink);
}

.footer-bottom {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--muted);
  font-size: 0.62rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  gap: 28px;
}

.footer-bottom nav a:hover,
.back-to-top:hover {
  color: var(--paper);
}

.back-to-top {
  justify-self: end;
}

/* Game detail pages */

.detail-main {
  padding-bottom: 110px;
}

.detail-nav {
  padding: 38px 0 48px;
}

.back-link {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.back-link:hover {
  color: var(--acid);
}

.game-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  min-height: 650px;
  border: 1px solid var(--line);
}

.game-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 52px;
  padding: clamp(34px, 6vw, 74px);
  background: var(--coal);
}

.file-code {
  display: block;
  color: var(--acid);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.game-title {
  margin: 16px 0 24px;
  color: var(--blood);
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 0.95;
  text-transform: uppercase;
}

.game-lede {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.75;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-primary {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.button:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.button[aria-disabled="true"] {
  border-color: var(--line);
  background: transparent;
  color: var(--faint);
  cursor: not-allowed;
}

.game-hero-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #181b15;
}

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

.game-hero-visual .poster-art {
  transform: scale(1.1);
}

.game-hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,9,8,0.48), transparent 28%), linear-gradient(0deg, rgba(9,9,8,0.6), transparent 38%);
  content: "";
}

.game-hero-label {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 22px;
  color: rgba(233,226,212,0.6);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.55fr);
  gap: clamp(70px, 10vw, 150px);
  padding-top: 96px;
}

.detail-section + .detail-section {
  margin-top: 72px;
}

.detail-section h2 {
  margin: 0 0 26px;
  font-family: var(--sans);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.media-heading h2 {
  margin: 0 0 26px;
  font-family: var(--sans);
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.detail-section p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.8;
}

.detail-section p + p {
  margin-top: 20px;
}

.featured-video-frame {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: #000;
}

.featured-video-frame iframe,
.featured-video-placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  border: 0;
}

.featured-video-placeholder {
  background: #000;
}

.game-facts {
  border-top: 1px solid var(--line-strong);
}

.game-facts div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.game-facts dt {
  margin-bottom: 4px;
  color: var(--faint);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.game-facts dd {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.95rem;
}

.media-section {
  padding-top: 110px;
}

.media-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.media-heading h2 {
  margin: 0;
}

.media-heading p {
  margin: 0 0 4px;
  color: var(--faint);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr;
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 12px;
  padding-top: 28px;
}

.media-shot {
  min-height: 230px;
}

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

.media-shot:first-child {
  min-height: 500px;
  grid-row: 1 / span 2;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 28px;
}

.video-card {
  display: grid;
  gap: 14px;
}

.video-thumbnail {
  min-height: 250px;
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.video-thumbnail img,
.video-placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
}

.video-placeholder {
  background: #080808;
}

.video-title {
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-title > span {
  color: var(--acid);
}

.video-card:hover .video-title {
  color: var(--acid);
}

.shot-label {
  right: 16px;
  bottom: 14px;
  color: rgba(233, 226, 212, 0.62);
}

.placeholder-note {
  margin: 20px 0 0;
  color: var(--faint);
  font-size: 0.67rem;
  line-height: 1.6;
}

.detail-footer {
  background: var(--coal);
  color: var(--paper);
}

/* Privacy page */

.legal-main {
  padding-bottom: 110px;
}

.legal-header {
  max-width: 860px;
  padding: 84px 0 58px;
  border-bottom: 1px solid var(--line-strong);
}

.legal-header h1 {
  margin: 0;
  color: var(--blood);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.legal-updated {
  margin: 18px 0 0;
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-header > p:last-child {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.8;
}

.legal-content {
  max-width: 860px;
  padding-top: 62px;
}

.legal-section + .legal-section {
  margin-top: 48px;
}

.legal-section h2 {
  margin: 0 0 14px;
  color: var(--acid);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.85;
}

.legal-section a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: var(--acid);
  text-underline-offset: 4px;
}

.legal-section a:hover {
  color: var(--acid);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .volume-card {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .carousel-viewport {
    min-height: 480px;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-facts {
    grid-column: auto;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    padding: 22px 0;
  }

  .footer-bottom nav {
    grid-column: 1 / -1;
    grid-row: 1;
  }

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

  .game-hero-visual {
    min-height: 620px;
    grid-row: 1;
  }

  .game-hero-copy {
    grid-row: 2;
  }
}

@media (max-width: 720px) {
  body::before {
    border-width: 5px;
  }

  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .header-inner {
    min-height: 82px;
  }

  .social-nav a {
    width: 30px;
  }

  .motel-sign {
    width: 180px;
    left: 8%;
  }

  .motel-door {
    width: 190px;
    right: 7%;
  }

  .poster-moon {
    width: 360px;
    left: 54%;
  }

  .poster-door {
    width: 190px;
  }

  .signal-ring {
    left: 58%;
  }

  .signal-ring-one {
    width: 450px;
  }

  .signal-ring-two {
    width: 290px;
  }

  .signal-tower {
    left: 58%;
  }

  .poster-orbit {
    width: 390px;
    left: 58%;
  }

  .poster-figure {
    width: 75px;
    left: 58%;
  }

  .anthology-section {
    padding: 84px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 32px;
  }

  .section-heading-simple {
    padding-bottom: 32px;
  }

  .section-heading h2 {
    font-size: 0.68rem;
  }

  .section-heading-note {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    align-items: start;
  }

  .issue-count {
    margin: 0;
  }

  .volume-card {
    padding: 40px 0 50px;
  }

  .carousel-viewport {
    min-height: 320px;
  }

  .volume-content h3 {
    font-size: clamp(1.3rem, 6vw, 1.65rem);
  }

  .volume-kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .volume-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .upcoming-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .about-section {
    grid-template-columns: 1fr;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .about-facts {
    grid-column: auto;
  }

  .footer-top {
    min-height: 330px;
  }

  .footer-social {
    width: 100%;
  }

  .footer-social a {
    min-width: 0;
    flex: 1;
    padding: 12px 10px;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-bottom nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .detail-nav {
    padding: 28px 0 34px;
  }

  .game-hero {
    min-height: 0;
  }

  .game-hero-visual {
    min-height: 500px;
  }

  .game-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .legal-header {
    padding-top: 64px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 72px;
  }

  .media-section {
    padding-top: 82px;
  }

  .media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

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

  .media-shot,
  .media-shot:first-child {
    min-height: 270px;
    grid-row: auto;
  }

  .media-shot:first-child {
    min-height: 420px;
  }

}

@media (max-width: 430px) {
  .brand-type {
    display: none;
  }

  .footer-social a span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
