:root {
  --bg: #0b0910;
  --bg-soft: #12101a;
  --surface: rgba(28, 24, 38, 0.78);
  --surface-solid: #1a1623;
  --surface-hover: #231d30;
  --text: #f5f1ea;
  --muted: #bdb4c5;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #d6ae64;
  --gold-light: #f1d7a0;
  --purple: #8d6eb7;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius-sm: 0.75rem;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 15% -10%, rgba(141, 110, 183, 0.16), transparent 32rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 8vw, 6.5rem);
}

h1 span {
  color: var(--gold-light);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 5vw, 4rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--bg);
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 9, 16, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  color: #16111d;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 0.8rem 0.8rem 0.8rem 0.2rem;
  box-shadow: 0 10px 28px rgba(214, 174, 100, 0.2);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.brand-name {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.7rem 0.9rem;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 650;
  transition: color 150ms ease, background 150ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav .nav-cta {
  margin-left: 0.5rem;
  color: #17121d;
  background: var(--gold-light);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #17121d;
  background: #ffe7b7;
}

.menu-button {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.7rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 5rem) 0 6rem;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -10rem;
  bottom: -18rem;
  width: 46rem;
  height: 46rem;
  content: "";
  background: radial-gradient(circle, rgba(214, 174, 100, 0.12), transparent 66%);
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 9, 16, 0.98) 0%, rgba(11, 9, 16, 0.72) 48%, rgba(11, 9, 16, 0.3) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 30%),
    url("../images/shadowlands1.png") center / cover no-repeat;
  filter: saturate(0.72) contrast(1.04);
  opacity: 0.4;
  transform: scale(1.04);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.eyebrow,
.section-kicker,
.download-platform {
  margin-bottom: 1rem;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 55ch;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.gallery-item:focus-visible,
.menu-button:focus-visible,
.lightbox-close:focus-visible {
  outline: 3px solid rgba(241, 215, 160, 0.7);
  outline-offset: 3px;
}

.button-primary {
  color: #17121d;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 35px rgba(214, 174, 100, 0.18);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ffe7b7, #dcba79);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-block {
  width: 100%;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
  color: var(--muted);
  list-style: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.platform-list li::before {
  margin-right: 0.5rem;
  color: var(--gold);
  content: "●";
  font-size: 0.6rem;
  vertical-align: 0.15em;
}

.hero-card {
  overflow: hidden;
  background: rgba(20, 16, 28, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  image-rendering: auto;
}

.hero-card-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-card-caption a {
  color: var(--gold-light);
  font-weight: 800;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.intro-section {
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}

.lead-copy p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

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

.feature-card {
  min-height: 17rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(214, 174, 100, 0.32);
  transform: translateY(-5px);
}

.feature-number {
  display: block;
  margin-bottom: 4.5rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.feature-card p {
  margin-bottom: 0;
}

.gallery-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(141, 110, 183, 0.12), transparent 28rem),
    var(--bg-soft);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-heading > p {
  max-width: 24rem;
  margin-bottom: 0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  min-height: 18rem;
  padding: 0;
  overflow: hidden;
  color: var(--text);
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: zoom-in;
}

.gallery-item-wide {
  grid-row: span 2;
  min-height: 38rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease, filter 350ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(8, 6, 12, 0.82), transparent 45%);
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  bottom: 1rem;
  left: 1rem;
  padding: 0.45rem 0.7rem;
  background: rgba(11, 9, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.gallery-item:hover img {
  filter: brightness(1.08);
  transform: scale(1.035);
}

.download-section {
  background: var(--bg);
}

.download-shell {
  padding: clamp(2rem, 6vw, 5rem);
  background:
    linear-gradient(135deg, rgba(141, 110, 183, 0.13), transparent 45%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.download-heading {
  max-width: 48rem;
  margin-bottom: 3rem;
}

.download-heading p:last-child {
  margin-bottom: 0;
  font-size: 1.05rem;
}

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

.download-card {
  display: flex;
  min-height: 19rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem;
  background: rgba(8, 7, 12, 0.54);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.download-card.featured {
  background: linear-gradient(150deg, rgba(214, 174, 100, 0.16), rgba(8, 7, 12, 0.65));
  border-color: rgba(214, 174, 100, 0.36);
}

.download-badge {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.38rem 0.6rem;
  color: #17121d;
  background: var(--gold-light);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.download-platform {
  margin-bottom: 0.75rem;
}

.download-card p:last-child {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.site-footer {
  padding: 2.5rem 0;
  background: #08070c;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
}

.footer-brand {
  margin-bottom: 0.65rem;
}

.footer-inner p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.footer-nav {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.footer-nav a:hover {
  color: var(--text);
}

.copyright {
  white-space: nowrap;
}

.lightbox {
  width: min(94vw, 1100px);
  max-width: none;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: -1rem;
  right: -1rem;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: var(--text);
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: 38rem;
    transform: none;
  }

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

  .feature-card:last-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 1rem;
    left: 1rem;
    display: grid;
    padding: 0.75rem;
    visibility: hidden;
    background: rgba(18, 16, 26, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-0.75rem);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.95rem 1rem;
  }

  .site-nav .nav-cta {
    margin: 0.35rem 0 0;
    text-align: center;
  }

  .hero {
    padding-top: calc(var(--header-height) + 3rem);
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(11, 9, 16, 0.72), rgba(11, 9, 16, 0.98) 70%),
      url("../images/shadowlands1.png") center / cover no-repeat;
    opacity: 0.34;
  }

  .hero-grid {
    gap: 3rem;
  }

  .section-heading {
    display: block;
  }

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

  .gallery-item,
  .gallery-item-wide {
    min-height: 20rem;
    grid-row: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .feature-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child {
    grid-column: auto;
  }

  .feature-card {
    min-height: 14rem;
  }

  .feature-number {
    margin-bottom: 3rem;
  }

  .download-shell {
    padding: 1.25rem;
    border-radius: var(--radius);
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.5rem;
  }

  .lightbox-close {
    top: 0.5rem;
    right: 0.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* Weitere Spiele / Undead Village */
.second-game-section {
  background:
    radial-gradient(circle at 15% 25%, rgba(168, 71, 55, 0.14), transparent 28rem),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.game-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.game-showcase-media {
  position: relative;
  overflow: hidden;
  background: #111313;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.game-showcase-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(5, 7, 7, 0.88));
  pointer-events: none;
}

.game-showcase-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.game-status-row {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.game-status-row span {
  padding: 0.45rem 0.7rem;
  color: #f4f1e9;
  background: rgba(7, 9, 9, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.game-showcase-copy h2 span {
  color: var(--gold-light);
}

.game-showcase-lead {
  max-width: 58ch;
  font-size: 1.1rem;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.75rem 0 2rem;
  color: var(--muted);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.65rem;
}

.feature-list li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  color: var(--gold-light);
  content: "◆";
  font-size: 0.72rem;
}

.undead-theme {
  --bg: #090b0b;
  --bg-soft: #101414;
  --surface: rgba(22, 28, 27, 0.82);
  --surface-solid: #151b1a;
  --surface-hover: #1d2624;
  --text: #f2f0e9;
  --muted: #b8c0bc;
  --gold: #b85c49;
  --gold-light: #e08a68;
  --purple: #687e76;
  background:
    radial-gradient(circle at 12% -8%, rgba(184, 92, 73, 0.18), transparent 34rem),
    var(--bg);
}

.undead-theme .brand-mark,
.undead-theme .button-primary,
.undead-theme .download-badge,
.undead-theme .site-nav .nav-cta {
  color: #101312;
  background: linear-gradient(135deg, #e49a78, #a9483e);
}

.undead-theme .button-primary:hover,
.undead-theme .site-nav .nav-cta:hover,
.undead-theme .site-nav .nav-cta:focus-visible {
  color: #101312;
  background: linear-gradient(135deg, #f0ad8b, #bd5948);
}

.game-hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 5rem) 0 6rem;
  overflow: hidden;
}

.game-hero::after {
  position: absolute;
  right: -12rem;
  bottom: -17rem;
  width: 44rem;
  height: 44rem;
  content: "";
  background: radial-gradient(circle, rgba(184, 92, 73, 0.16), transparent 66%);
  pointer-events: none;
}

.game-hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 11, 11, 0.98) 0%, rgba(9, 11, 11, 0.82) 45%, rgba(9, 11, 11, 0.34) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 30%),
    url("../images/undead-village-cover.png") center / cover no-repeat;
  filter: grayscale(0.18) saturate(0.7) contrast(1.08);
  opacity: 0.38;
  transform: scale(1.04);
}

.game-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.game-hero-copy h1 {
  max-width: 11ch;
}

.game-poster {
  overflow: hidden;
  background: rgba(14, 18, 17, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.game-poster img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.game-poster-caption {
  display: grid;
  gap: 0.55rem;
  padding: 1.1rem 1.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
}

.status-dot::before {
  width: 0.55rem;
  height: 0.55rem;
  content: "";
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 0.3rem rgba(224, 138, 104, 0.12);
}

.game-intro {
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.feature-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid-four .feature-card {
  min-height: 18rem;
}

.feature-grid-four .feature-number {
  margin-bottom: 4rem;
}

.development-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(104, 126, 118, 0.13), transparent 30rem),
    var(--bg-soft);
}

.development-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.development-visual {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.development-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.15) saturate(0.75) contrast(1.08);
}

.development-copy > p:not(.section-kicker) {
  max-width: 58ch;
  font-size: 1.05rem;
}

.milestone-list {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0;
}

.milestone-list article {
  padding: 1.35rem 1.4rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.milestone-list article > span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.milestone-list h3 {
  margin-bottom: 0.55rem;
}

.milestone-list p {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold-light);
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.info-section {
  background: var(--bg);
}

.info-shell {
  padding: clamp(2rem, 6vw, 5rem);
  background:
    linear-gradient(135deg, rgba(184, 92, 73, 0.11), transparent 44%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  margin: 0 0 3rem;
  overflow: hidden;
  background: var(--line);
  border-radius: var(--radius);
}

.info-grid div {
  min-height: 8rem;
  padding: 1.35rem;
  background: rgba(8, 10, 10, 0.88);
}

.info-grid dt {
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-grid dd {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 750;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cta-panel h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.cta-panel p:last-child {
  max-width: 58ch;
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .feature-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .game-showcase,
  .game-hero-grid,
  .development-grid {
    grid-template-columns: 1fr;
  }

  .game-showcase-media,
  .game-poster,
  .development-visual {
    max-width: 38rem;
  }

  .game-poster {
    transform: none;
  }

  .development-visual {
    position: static;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .game-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 3rem);
  }

  .game-hero-backdrop {
    background:
      linear-gradient(180deg, rgba(9, 11, 11, 0.68), rgba(9, 11, 11, 0.98) 72%),
      url("../images/undead-village-cover.png") center / cover no-repeat;
    opacity: 0.34;
  }

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

@media (max-width: 580px) {
  .feature-grid-four,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .game-status-row {
    justify-content: flex-start;
  }

  .info-shell {
    padding: 1.25rem;
    border-radius: var(--radius);
  }
}
