:root {
  color-scheme: dark;
  --ink: #edf1d5;
  --muted: #aeb9ad;
  --gold: #ffc54b;
  --gold-hot: #ffdc7a;
  --line: #445b55;
  --panel: rgba(10, 20, 24, .92);
}

* { box-sizing: border-box; }

html { min-height: 100%; background: #091014; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 188, 55, .12), transparent 28rem),
    linear-gradient(145deg, #17281f 0%, #091218 48%, #030608 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .16;
  background: repeating-linear-gradient(0deg, transparent 0 3px, #000 4px);
}

main { width: min(1180px, 100%); min-height: 100vh; margin: auto; padding: clamp(1rem, 4vw, 3.5rem); display: grid; place-items: center; }

.hero {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(360px, 1.08fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 28px 80px #000b, inset 0 0 0 3px #0008;
}

.cover-wrap { min-height: min(76vh, 740px); background: #121d20; }
.cover-wrap img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 45% center; }

.copy { align-self: center; padding: clamp(2rem, 6vw, 5rem); }
.eyebrow { margin: 0 0 1rem; color: var(--gold); font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1 { margin: 0; color: var(--gold); font-size: clamp(3.2rem, 8vw, 7.1rem); line-height: .85; letter-spacing: -.055em; text-transform: uppercase; text-shadow: 0 .08em #000; }
.dek { max-width: 35rem; margin: 1.7rem 0 0; font-size: clamp(1.15rem, 2.1vw, 1.55rem); line-height: 1.5; }

.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2.2rem 0 1.3rem; }
.actions a { min-height: 3.4rem; display: inline-flex; align-items: center; justify-content: center; padding: .8rem 1.4rem; border: 2px solid var(--gold); color: var(--gold); font-weight: 900; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.actions .play { background: var(--gold); color: #101412; }
.actions a:hover, .actions a:focus-visible { outline: 3px solid #fff; outline-offset: 3px; border-color: var(--gold-hot); background: var(--gold-hot); color: #101412; }
.requirements { color: var(--muted); line-height: 1.55; }

dl { display: flex; flex-wrap: wrap; gap: 1.2rem 2.2rem; margin: 2rem 0 0; padding-top: 1.2rem; border-top: 1px solid var(--line); }
dt { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
dd { margin: .25rem 0 0; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }

@media (max-width: 760px) {
  main { padding: 0; }
  .hero { min-height: 100vh; grid-template-columns: 1fr; border: 0; border-radius: 0; }
  .cover-wrap { min-height: 46vh; max-height: 560px; }
  .cover-wrap img { object-position: center 28%; }
  .copy { padding: 2rem 1.35rem 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
