:root {
  --ink: #fff7e8;
  --muted: #c8bba5;
  --gold: #ffc857;
  --gold-soft: #ffe3a0;
  --ember: #db5d35;
  --forest: #274b37;
  --panel: rgba(34, 24, 22, 0.82);
  --line: rgba(255, 200, 87, 0.22);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(219, 93, 53, 0.2), transparent 32rem),
    radial-gradient(circle at 90% 12%, rgba(255, 200, 87, 0.11), transparent 28rem),
    #100c0c;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; }

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

.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(16, 12, 12, 0.82);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #29180d;
  background: linear-gradient(145deg, #ffe297, #f5a623);
  box-shadow: 0 8px 28px rgba(255, 187, 61, 0.2);
}

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 650; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--ink); }

.hero {
  min-height: 76vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 7vw, 88px);
  align-items: center;
  padding: 84px 0 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; line-height: 1.05; }
h1 { margin-bottom: 22px; font-size: clamp(3rem, 7vw, 5.8rem); letter-spacing: -0.055em; }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.04em; }
h3 { margin-bottom: 10px; font-size: 1.25rem; }

.lede { max-width: 42rem; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  font-weight: 780;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); border-color: var(--gold); }
.button.primary { color: #24140c; background: linear-gradient(135deg, var(--gold-soft), var(--gold)); border-color: transparent; }

.hero-art { position: relative; }
.hero-art::before {
  content: "";
  position: absolute;
  inset: 10% 7%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(255, 156, 45, 0.2);
  filter: blur(55px);
}
.hero-art img { width: min(520px, 100%); margin: 0 auto; filter: drop-shadow(0 32px 48px rgba(0,0,0,0.55)); }

.section { padding: 96px 0; }
.section.alt { border-block: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.018); }
.section-heading { max-width: 680px; margin-bottom: 40px; }
.section-heading p, .copy { color: var(--muted); }

.game-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(73, 45, 34, 0.76), rgba(26, 20, 20, 0.92));
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
}

.game-shot { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.game-copy { padding: clamp(32px, 5vw, 62px); align-self: center; }
.game-title { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.game-title img { width: 68px; border-radius: 16px; }
.game-title h2 { margin: 0; }
.availability { color: var(--gold-soft); font-weight: 700; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background: var(--panel);
}
.number { color: var(--gold); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.14em; }
.card p { margin-bottom: 0; color: var(--muted); }

.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.gallery img { width: 100%; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 18px 60px rgba(0,0,0,0.3); }

.studio { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; }
.values { display: grid; gap: 16px; }
.value { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.09); }
.value:last-child { border-bottom: 0; }
.value strong { display: block; margin-bottom: 5px; }
.value span { color: var(--muted); }

.legal { max-width: 780px; padding: 72px 0 100px; }
.legal h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
.legal h2 { margin-top: 44px; font-size: 1.6rem; letter-spacing: -0.02em; }
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--gold-soft); }
.updated { color: var(--gold); font-size: 0.9rem; font-weight: 700; }

.site-footer { padding: 32px 0 44px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-row { display: flex; justify-content: space-between; gap: 24px; align-items: center; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { text-decoration: none; }

@media (max-width: 820px) {
  .hero, .game-card, .studio { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-copy { order: 1; }
  .hero-art { order: 2; }
  .game-shot { min-height: 0; aspect-ratio: 16 / 9; }
  .grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .shell { width: min(100% - 28px, 1120px); }
  .nav { min-height: 64px; }
  .nav-links a:not(.button) { display: none; }
  .section { padding: 72px 0; }
  .footer-row { align-items: flex-start; flex-direction: column; }
}

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