:root {
  --dp-void: #050607;
  --dp-ink: #0b0f10;
  --dp-panel: #111718;
  --dp-panel-2: #171d1e;
  --dp-bone: #eee9dd;
  --dp-muted: #88928e;
  --dp-red: #e1473c;
  --dp-red-dark: #7e2723;
  --dp-cold: #69aaa1;
  --dp-paper: #b18a56;
  --dp-line: rgba(238, 233, 221, 0.12);
  --dp-line-soft: rgba(238, 233, 221, 0.07);
  --dp-serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --dp-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --dp-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

body.game-site {
  margin: 0;
  overflow-x: hidden;
  background: var(--dp-void);
  color: var(--dp-bone);
  font-family: var(--dp-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.game-site *,
.game-site *::before,
.game-site *::after {
  box-sizing: border-box;
}

.game-site img {
  display: block;
  height: auto;
  max-width: 100%;
}

.game-site a {
  color: inherit;
}

.game-site h1,
.game-site h2,
.game-site h3,
.game-site p,
.game-site blockquote,
.game-site figure,
.game-site dl,
.game-site dd,
.game-site ul {
  margin: 0;
}

.game-site h1,
.game-site h2,
.game-site h3 {
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--dp-bone);
  color: var(--dp-void);
  transform: translateY(-160%);
}

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

.game-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--dp-line-soft);
  background: rgba(5, 6, 7, 0.82);
  backdrop-filter: blur(18px) saturate(120%);
}

.game-header-inner {
  display: flex;
  width: min(1240px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.game-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--dp-bone);
  text-decoration: none;
}

.game-brand img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 12px rgba(105, 170, 161, 0.22));
}

.game-brand span {
  display: grid;
  gap: 1px;
}

.game-brand strong {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.game-brand small {
  color: var(--dp-muted);
  font-family: var(--dp-mono);
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.game-nav a {
  color: rgba(238, 233, 221, 0.68);
  font-size: 0.79rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.game-nav a:hover,
.game-nav a:focus-visible {
  color: var(--dp-bone);
}

.game-nav .game-nav-release {
  min-height: 38px;
  padding: 9px 15px;
  border: 1px solid rgba(238, 233, 221, 0.2);
  border-radius: 5px;
  background: var(--dp-bone);
  color: var(--dp-void);
}

.game-nav .game-nav-release:hover,
.game-nav .game-nav-release:focus-visible {
  background: white;
  color: var(--dp-void);
}

.game-hero {
  position: relative;
  display: grid;
  min-height: 860px;
  overflow: hidden;
  align-items: end;
  border-bottom: 1px solid var(--dp-line);
  isolation: isolate;
}

.game-hero-art,
.game-hero-art img,
.game-hero-shade,
.game-hero-grid {
  position: absolute;
  inset: 0;
}

.game-hero-art {
  z-index: -4;
}

.game-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.76) contrast(1.08) brightness(0.76);
  transform: scale(1.015);
}

.game-hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.98) 0%, rgba(5, 6, 7, 0.88) 32%, rgba(5, 6, 7, 0.35) 63%, rgba(5, 6, 7, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 6, 7, 0.98) 0%, rgba(5, 6, 7, 0.22) 46%, rgba(5, 6, 7, 0.52) 100%);
}

.game-hero-grid {
  z-index: -2;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(238, 233, 221, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 233, 221, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent 10%, black 70%);
}

.game-hero-inner {
  display: grid;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 170px 0 76px;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 8vw;
}

.game-hero-copy {
  max-width: 720px;
}

.game-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--dp-red);
  font-family: var(--dp-mono);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.game-kicker > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dp-red);
  box-shadow: 0 0 12px rgba(225, 71, 60, 0.7);
}

.game-hero h1 {
  max-width: 740px;
  margin-top: 20px;
  font-family: var(--dp-serif);
  font-size: clamp(4.4rem, 8.7vw, 8.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.game-hero-lede {
  max-width: 630px;
  margin-top: 28px;
  color: rgba(238, 233, 221, 0.72);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.6;
}

.game-actions {
  display: flex;
  margin-top: 34px;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 11px;
}

.game-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.game-button:hover {
  transform: translateY(-2px);
}

.game-site .game-button-primary {
  min-width: 225px;
  padding: 10px 16px;
  justify-content: space-between;
  gap: 28px;
  background: var(--dp-bone);
  color: var(--dp-void);
}

.game-button-primary span {
  font-weight: 600;
}

.game-button-primary strong {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.game-button-quiet {
  padding: 10px 18px;
  border: 1px solid var(--dp-line);
  background: rgba(17, 23, 24, 0.68);
  color: var(--dp-bone);
  backdrop-filter: blur(10px);
}

.game-button-quiet:hover {
  border-color: rgba(238, 233, 221, 0.28);
  background: rgba(23, 29, 30, 0.84);
}

.game-purchase-note {
  margin-top: 14px;
  color: var(--dp-muted);
  font-family: var(--dp-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.game-hero-file {
  padding: 22px;
  border: 1px solid rgba(238, 233, 221, 0.14);
  border-left: 2px solid var(--dp-red);
  border-radius: 6px;
  background: rgba(11, 15, 16, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.game-hero-file > p {
  display: flex;
  padding-bottom: 13px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--dp-line-soft);
  color: var(--dp-muted);
  font-family: var(--dp-mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.game-hero-file > p span {
  color: var(--dp-red);
}

.game-hero-file dl {
  display: grid;
  padding: 16px 0;
  gap: 8px;
}

.game-hero-file dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--dp-mono);
  font-size: 0.73rem;
}

.game-hero-file dt {
  color: var(--dp-muted);
}

.game-hero-file dd {
  color: var(--dp-bone);
  text-align: right;
}

.game-hero-file blockquote {
  padding: 15px 0 0;
  border-top: 1px solid var(--dp-line-soft);
  color: rgba(238, 233, 221, 0.76);
  font-family: var(--dp-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.45;
}

.game-facts {
  display: grid;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  border-right: 1px solid var(--dp-line-soft);
  border-left: 1px solid var(--dp-line-soft);
}

.game-facts div {
  display: grid;
  min-height: 104px;
  padding: 24px;
  align-content: center;
  gap: 6px;
  border-right: 1px solid var(--dp-line-soft);
}

.game-facts div:last-child {
  border-right: 0;
}

.game-facts span {
  color: var(--dp-muted);
  font-family: var(--dp-mono);
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.game-facts strong {
  font-size: 0.91rem;
  font-weight: 600;
}

.game-section {
  position: relative;
  border-top: 1px solid var(--dp-line-soft);
}

.game-section-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 130px 0;
}

.game-section-index {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.game-section-index > span {
  color: var(--dp-red);
  font-family: var(--dp-serif);
  font-size: 3.3rem;
  line-height: 1;
}

.game-section-index > p {
  padding-top: 13px;
  border-top: 1px solid var(--dp-line);
  color: var(--dp-muted);
  font-family: var(--dp-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.game-section-index-wide {
  flex-direction: row;
  align-items: center;
}

.game-section-index-wide > p {
  min-width: 210px;
  padding: 0 0 0 16px;
  border-top: 0;
  border-left: 1px solid var(--dp-line);
}

.game-section h2,
.game-release h2 {
  font-family: var(--dp-serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.048em;
  line-height: 0.98;
}

.game-case {
  background:
    radial-gradient(circle at 80% 25%, rgba(105, 170, 161, 0.07), transparent 28%),
    var(--dp-void);
}

.game-case-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 150px minmax(0, 1fr) 310px;
  gap: clamp(44px, 7vw, 110px);
}

.game-case-copy {
  max-width: 670px;
}

.game-case-copy h2 {
  margin-top: 17px;
}

.game-case-copy > p:not(.game-kicker) {
  max-width: 600px;
  margin-top: 26px;
  color: rgba(238, 233, 221, 0.64);
  font-size: 1.04rem;
  line-height: 1.75;
}

.game-case-note {
  margin-top: 116px;
  padding: 23px;
  border: 1px solid rgba(177, 138, 86, 0.25);
  border-radius: 5px;
  background: linear-gradient(140deg, rgba(177, 138, 86, 0.09), rgba(17, 23, 24, 0.86));
  transform: rotate(1.2deg);
}

.game-case-note span {
  color: var(--dp-paper);
  font-family: var(--dp-mono);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.game-case-note p {
  margin-top: 22px;
  font-family: var(--dp-serif);
  font-size: 1.45rem;
  line-height: 1.35;
}

.game-case-note strong {
  display: block;
  margin-top: 18px;
  color: var(--dp-red);
  font-family: var(--dp-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.game-moves {
  overflow: hidden;
  background: var(--dp-ink);
}

.game-moves::before {
  position: absolute;
  width: 580px;
  height: 580px;
  top: 16%;
  left: -320px;
  border: 1px solid rgba(225, 71, 60, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(225, 71, 60, 0.025), 0 0 0 180px rgba(225, 71, 60, 0.018);
  content: "";
}

.game-moves-head {
  display: grid;
  margin: 68px 0 62px 18%;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 60px;
}

.game-moves-head h2 {
  margin-top: 18px;
}

.game-moves-head > p:last-child {
  color: var(--dp-muted);
  line-height: 1.7;
}

.game-move-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.game-move {
  position: relative;
  display: grid;
  min-height: 360px;
  padding: 27px;
  overflow: hidden;
  align-content: start;
  border: 1px solid var(--dp-line-soft);
  border-radius: 6px;
  background: var(--dp-panel);
  transition: transform 220ms ease, border-color 220ms ease;
}

.game-move:hover {
  z-index: 2;
  border-color: var(--move-color);
  transform: translateY(-6px);
}

.game-move-answer { --move-color: var(--dp-red); }
.game-move-resist { --move-color: var(--dp-paper); }
.game-move-silence { --move-color: var(--dp-cold); }

.game-move::after {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -130px;
  bottom: -130px;
  border: 1px solid color-mix(in srgb, var(--move-color), transparent 70%);
  border-radius: 50%;
  box-shadow: 0 0 0 45px color-mix(in srgb, var(--move-color), transparent 94%);
  content: "";
}

.game-move > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--move-color);
  font-family: var(--dp-mono);
  font-size: 0.74rem;
}

.game-move i {
  font-family: var(--dp-sans);
  font-size: 1.25rem;
  font-style: normal;
}

.game-move h3 {
  margin-top: 72px;
  font-family: var(--dp-serif);
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.game-move p {
  max-width: 310px;
  margin-top: 16px;
  color: rgba(238, 233, 221, 0.62);
  line-height: 1.65;
}

.game-move small {
  margin-top: 32px;
  color: var(--move-color);
  font-family: var(--dp-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-experience {
  background:
    radial-gradient(circle at 50% 46%, rgba(105, 170, 161, 0.06), transparent 31%),
    var(--dp-void);
}

.game-experience-head {
  display: grid;
  margin: 62px 0 80px 18%;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 70px;
}

.game-experience-head h2 {
  margin-top: 18px;
}

.game-experience-head > p {
  color: var(--dp-muted);
  line-height: 1.7;
}

.game-screens {
  display: grid;
  max-width: 970px;
  margin: 0 auto;
  align-items: start;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 4vw, 48px);
}

.game-screen {
  position: relative;
}

.game-screen-low {
  margin-top: 72px;
}

.game-screen img {
  width: 100%;
  border: 1px solid rgba(238, 233, 221, 0.15);
  border-radius: 28px;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.5);
}

.game-screen figcaption {
  display: flex;
  margin-top: 18px;
  align-items: center;
  gap: 10px;
  color: var(--dp-muted);
  font-family: var(--dp-mono);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-screen figcaption span {
  color: var(--dp-red);
}

.game-sensory-grid {
  display: grid;
  margin-top: 108px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--dp-line);
  border-left: 1px solid var(--dp-line);
}

.game-sensory-grid div {
  min-height: 190px;
  padding: 25px;
  border-right: 1px solid var(--dp-line);
  border-bottom: 1px solid var(--dp-line);
}

.game-sensory-grid dt {
  font-family: var(--dp-serif);
  font-size: 1.32rem;
}

.game-sensory-grid dd {
  margin-top: 14px;
  color: var(--dp-muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.game-acts {
  background: var(--dp-panel);
}

.game-acts-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(50px, 9vw, 150px);
}

.game-act-list {
  border-top: 1px solid var(--dp-line);
}

.game-act-list article {
  display: grid;
  min-height: 150px;
  padding: 26px 0;
  align-items: start;
  grid-template-columns: 90px minmax(220px, 0.7fr) minmax(260px, 1fr);
  gap: 30px;
  border-bottom: 1px solid var(--dp-line);
}

.game-act-list article > span {
  color: var(--dp-red);
  font-family: var(--dp-mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.game-act-list h3 {
  font-family: var(--dp-serif);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.1;
}

.game-act-list p {
  color: var(--dp-muted);
  line-height: 1.7;
}

.game-modes {
  background:
    linear-gradient(rgba(5, 6, 7, 0.91), rgba(5, 6, 7, 0.98)),
    url("/media/deadly-prompt-key-art-v2.jpg") center / cover fixed;
}

.game-modes-head {
  max-width: 850px;
}

.game-modes-head h2 {
  margin-top: 18px;
}

.game-mode-grid {
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.game-mode-grid article {
  min-height: 420px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--dp-line);
  border-radius: 6px;
  background: rgba(11, 15, 16, 0.86);
  backdrop-filter: blur(16px);
}

.game-mode-grid article > span {
  color: var(--dp-cold);
  font-family: var(--dp-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.game-mode-grid article:first-child > span {
  color: var(--dp-red);
}

.game-mode-grid h3 {
  max-width: 430px;
  margin-top: 55px;
  font-family: var(--dp-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.game-mode-grid p {
  max-width: 500px;
  margin-top: 22px;
  color: rgba(238, 233, 221, 0.62);
  line-height: 1.7;
}

.game-mode-grid ul {
  display: grid;
  margin-top: 28px;
  padding: 20px 0 0;
  gap: 10px;
  border-top: 1px solid var(--dp-line-soft);
  list-style: none;
}

.game-mode-grid li {
  color: var(--dp-muted);
  font-family: var(--dp-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.game-mode-grid li::before {
  margin-right: 10px;
  color: var(--dp-cold);
  content: "✓";
}

.game-privacy-line {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--dp-muted);
  font-size: 0.78rem;
  line-height: 1.65;
  text-align: center;
}

.game-privacy-line a {
  color: var(--dp-bone);
}

.game-endings {
  overflow: hidden;
  background: var(--dp-ink);
}

.game-endings-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 160px minmax(0, 1fr) 260px;
  gap: clamp(50px, 8vw, 130px);
}

.game-endings-copy {
  max-width: 690px;
}

.game-endings-copy h2 {
  margin-top: 17px;
}

.game-endings-copy > p:not(.game-kicker) {
  max-width: 610px;
  margin-top: 24px;
  color: var(--dp-muted);
  line-height: 1.75;
}

.game-ending-traces {
  display: grid;
  margin-top: 34px;
  padding: 0;
  border-top: 1px solid var(--dp-line);
  list-style: none;
}

.game-ending-traces li {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--dp-line);
  color: rgba(238, 233, 221, 0.76);
}

.game-ending-traces span {
  color: var(--dp-red);
  font-family: var(--dp-mono);
  font-size: 0.65rem;
}

.game-ending-mark {
  position: relative;
  display: grid;
  width: 260px;
  height: 260px;
  place-items: center;
  border: 1px dashed rgba(105, 170, 161, 0.25);
  border-radius: 50%;
}

.game-ending-mark::before,
.game-ending-mark::after {
  position: absolute;
  border: 1px solid rgba(238, 233, 221, 0.06);
  border-radius: 50%;
  content: "";
}

.game-ending-mark::before { inset: 28px; }
.game-ending-mark::after { inset: 58px; }

.game-ending-mark img {
  width: 140px;
  height: 140px;
  filter: saturate(0.5) drop-shadow(0 0 24px rgba(105, 170, 161, 0.2));
}

.game-ending-mark > span {
  position: absolute;
  right: 4px;
  bottom: 24px;
  color: var(--dp-cold);
  font-family: var(--dp-serif);
  font-size: 4rem;
  line-height: 1;
}

.game-release {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-top: 1px solid var(--dp-line);
  background: var(--dp-void);
}

.game-release-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.96), rgba(5, 6, 7, 0.74) 52%, rgba(5, 6, 7, 0.28)),
    linear-gradient(0deg, rgba(5, 6, 7, 0.98), transparent 55%),
    url("/media/deadly-prompt-key-art-v2.jpg") center / cover;
  filter: saturate(0.74) contrast(1.05);
}

.game-release-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1240px, calc(100% - 40px));
  min-height: 760px;
  margin: 0 auto;
  padding: 120px 0;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 9vw;
}

.game-release h2 {
  margin-top: 18px;
}

.game-release-lede {
  max-width: 570px;
  margin-top: 28px;
  color: rgba(238, 233, 221, 0.65);
  font-size: 1.05rem;
  line-height: 1.75;
}

.game-release-offer {
  padding: 28px;
  border: 1px solid rgba(238, 233, 221, 0.16);
  border-left: 2px solid var(--dp-red);
  border-radius: 6px;
  background: rgba(11, 15, 16, 0.86);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(16px);
}

.game-release-offer > p:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.game-release-offer > p:first-child span {
  color: var(--dp-red);
  font-family: var(--dp-mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.game-release-offer > p:first-child strong {
  font-family: var(--dp-serif);
  font-size: 1.4rem;
  font-weight: 500;
}

.game-release-offer ul {
  display: grid;
  margin: 24px 0;
  padding: 22px 0;
  gap: 12px;
  border-top: 1px solid var(--dp-line-soft);
  border-bottom: 1px solid var(--dp-line-soft);
  list-style: none;
}

.game-release-offer li {
  color: rgba(238, 233, 221, 0.72);
  font-size: 0.86rem;
}

.game-release-offer li::before {
  margin-right: 10px;
  color: var(--dp-cold);
  content: "✓";
}

.game-release-fine {
  color: var(--dp-muted);
  font-size: 0.72rem;
}

.game-site .game-release-badge {
  display: grid;
  min-height: 62px;
  margin-top: 22px;
  padding: 11px 18px;
  align-content: center;
  border-radius: 5px;
  background: var(--dp-bone);
  color: var(--dp-void);
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.game-release-badge:hover {
  background: white;
  transform: translateY(-2px);
}

.game-release-badge:focus-visible {
  outline: 3px solid var(--dp-cold);
  outline-offset: 3px;
}

.game-release-badge span {
  font-size: 0.7rem;
  line-height: 1;
}

.game-release-badge strong {
  margin-top: 4px;
  font-size: 1.2rem;
  line-height: 1;
}

.game-footer {
  display: grid;
  width: min(1240px, calc(100% - 40px));
  min-height: 150px;
  margin: 0 auto;
  align-items: center;
  grid-template-columns: minmax(260px, 1fr) auto auto auto;
  gap: 34px;
  color: var(--dp-muted);
  font-size: 0.74rem;
}

.game-footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.game-footer-brand img {
  width: 34px;
  height: 34px;
}

.game-footer-brand div {
  display: grid;
  gap: 2px;
}

.game-footer-brand strong {
  color: var(--dp-bone);
  font-size: 0.82rem;
}

.game-footer nav {
  display: flex;
  gap: 18px;
}

.game-footer a {
  color: var(--dp-muted);
  text-decoration: none;
}

.game-footer a:hover,
.game-footer a:focus-visible {
  color: var(--dp-bone);
}

.game-site a:focus-visible,
.game-site button:focus-visible {
  outline: 2px solid var(--dp-cold);
  outline-offset: 4px;
}

@media (max-width: 1020px) {
  .game-nav a:not(.game-nav-release) {
    display: none;
  }

  .game-hero {
    min-height: 820px;
  }

  .game-hero-inner {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 42px;
  }

  .game-hero h1 {
    font-size: clamp(4rem, 9vw, 7rem);
  }

  .game-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-facts div:nth-child(2) {
    border-right: 0;
  }

  .game-facts div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--dp-line-soft);
  }

  .game-case-grid,
  .game-endings-grid {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .game-case-note,
  .game-ending-mark {
    grid-column: 2;
    margin-top: 0;
  }

  .game-moves-head,
  .game-experience-head {
    margin-left: 0;
  }

  .game-move {
    min-height: 330px;
  }

  .game-move h3 {
    margin-top: 50px;
  }

  .game-sensory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-act-list article {
    grid-template-columns: 72px minmax(180px, 0.75fr) minmax(220px, 1fr);
  }
}

@media (max-width: 760px) {
  .game-header-inner,
  .game-hero-inner,
  .game-facts,
  .game-section-inner,
  .game-release-inner,
  .game-footer {
    width: min(100% - 28px, 620px);
  }

  .game-header-inner {
    min-height: 64px;
  }

  .game-brand small {
    display: none;
  }

  .game-nav {
    gap: 0;
  }

  .game-nav .game-nav-release {
    padding: 8px 12px;
    font-size: 0.72rem;
  }

  .game-hero {
    min-height: 940px;
    align-items: end;
  }

  .game-hero-art img {
    object-position: 67% center;
  }

  .game-hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 6, 7, 0.99) 0%, rgba(5, 6, 7, 0.88) 49%, rgba(5, 6, 7, 0.12) 78%, rgba(5, 6, 7, 0.36) 100%);
  }

  .game-hero-grid {
    background-size: 36px 36px;
  }

  .game-hero-inner {
    padding: 370px 0 38px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .game-hero h1 {
    margin-top: 15px;
    font-size: clamp(4.2rem, 18vw, 6.3rem);
  }

  .game-hero-lede {
    margin-top: 21px;
    font-size: 1rem;
  }

  .game-actions {
    margin-top: 25px;
  }

  .game-button {
    width: 100%;
  }

  .game-hero-file {
    padding: 18px;
  }

  .game-facts {
    border: 0;
    grid-template-columns: 1fr 1fr;
  }

  .game-facts div {
    min-height: 94px;
    padding: 17px 12px;
  }

  .game-facts strong {
    font-size: 0.79rem;
  }

  .game-section-inner {
    padding: 88px 0;
  }

  .game-section h2,
  .game-release h2 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .game-section-index,
  .game-section-index-wide {
    flex-direction: row;
    align-items: center;
  }

  .game-section-index > span {
    font-size: 2.5rem;
  }

  .game-section-index > p,
  .game-section-index-wide > p {
    min-width: 0;
    padding: 0 0 0 13px;
    border-top: 0;
    border-left: 1px solid var(--dp-line);
  }

  .game-case-grid,
  .game-endings-grid,
  .game-acts-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .game-case-copy,
  .game-endings-copy {
    grid-column: 1;
  }

  .game-case-note,
  .game-ending-mark {
    grid-column: 1;
  }

  .game-case-note {
    transform: none;
  }

  .game-moves-head,
  .game-experience-head {
    margin: 46px 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .game-move-grid,
  .game-mode-grid {
    grid-template-columns: 1fr;
  }

  .game-move {
    min-height: 290px;
  }

  .game-move h3 {
    margin-top: 38px;
  }

  .game-screens {
    width: 88%;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .game-screen-low {
    margin-top: 0;
  }

  .game-sensory-grid {
    margin-top: 78px;
    grid-template-columns: 1fr;
  }

  .game-sensory-grid div {
    min-height: 150px;
  }

  .game-act-list article {
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }

  .game-act-list article p {
    grid-column: 2;
  }

  .game-mode-grid article {
    min-height: 0;
    padding: 27px;
  }

  .game-mode-grid h3 {
    margin-top: 42px;
  }

  .game-ending-mark {
    width: 220px;
    height: 220px;
    justify-self: center;
  }

  .game-release {
    min-height: 920px;
  }

  .game-release-art {
    background:
      linear-gradient(0deg, rgba(5, 6, 7, 0.99) 0%, rgba(5, 6, 7, 0.84) 58%, rgba(5, 6, 7, 0.25)),
      url("/media/deadly-prompt-key-art-v2.jpg") 66% center / cover;
  }

  .game-release-inner {
    min-height: 920px;
    padding: 300px 0 65px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .game-release-offer {
    padding: 22px;
  }

  .game-footer {
    padding: 34px 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

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

  .game-hero-art img {
    transform: none;
  }
}
