
:root {
  --bg: #090a0f;
  --bg-soft: #11131b;
  --panel: #151821;
  --text: #f5f7fb;
  --muted: #a7afbd;
  --line: rgba(255,255,255,.12);
  --accent: #8f5cff;
  --accent2: #37e6b0;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::selection { background: var(--accent); color: white; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 999;
  background-image:
    radial-gradient(circle at 20% 20%, white 0 1px, transparent 1px),
    radial-gradient(circle at 70% 70%, white 0 1px, transparent 1px);
  background-size: 18px 18px, 23px 23px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(9,10,15,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .08em; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  background: linear-gradient(135deg, rgba(143,92,255,.25), rgba(55,230,176,.08));
  font-size: .8rem;
}
.brand-name { font-size: .95rem; }

.nav { display: flex; align-items: center; gap: 28px; font-size: .86rem; text-transform: uppercase; letter-spacing: .14em; }
.nav a { color: var(--muted); transition: .2s ease; }
.nav a:hover { color: white; }
.nav-steam { border: 1px solid var(--line); padding: 9px 13px; }

.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent);
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .28; }
.orb-a { width: 500px; height: 500px; background: var(--accent); left: -180px; top: 10%; }
.orb-b { width: 420px; height: 420px; background: var(--accent2); right: -160px; bottom: 0; }

.hero-content {
  width: min(var(--max), calc(100% - 48px));
  position: relative;
  z-index: 2;
  padding: 120px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 800;
}

h1, h2, h3 { margin-top: 0; line-height: .98; letter-spacing: -.045em; }
h1 { margin-bottom: 30px; font-size: clamp(3.8rem, 9vw, 8.4rem); max-width: 1000px; }
h1 span {
  background: linear-gradient(90deg, var(--accent), #d2b9ff 45%, var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h2 { font-size: clamp(3rem, 7vw, 6.5rem); margin-bottom: 24px; }
h3 { font-size: clamp(2rem, 4vw, 4rem); margin-bottom: 14px; }

.hero-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin: 0 0 34px;
}

.hero-actions, .game-actions, .contact-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }

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

.button:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.35); }
.button.primary { background: white; color: #090a0f; border-color: white; }
.button.ghost { background: rgba(255,255,255,.03); }

.hero-badge {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 28px;
  display: grid;
  justify-items: end;
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: .18em;
}
.hero-badge span { color: white; font-weight: 800; }

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
}

.section-heading { margin-bottom: 48px; }

.game-card {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  overflow: hidden;
}

.game-art-wrap {
  position: relative;
  min-height: 480px;
  background: #222;
}
.game-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  filter: saturate(.9) contrast(1.06);
}
.game-art-label {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #0a0b10;
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 10px;
  font-size: .72rem;
  letter-spacing: .14em;
  font-weight: 800;
}

.game-info { padding: clamp(30px, 5vw, 64px); }
.game-kicker { color: var(--accent2); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 800; }
.game-long-title { color: #d6dbe5; font-weight: 700; margin-top: -2px; }
.game-description { color: var(--muted); margin: 24px 0 30px; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 28px 0;
}
.stat-grid div { padding: 18px 12px 18px 0; }
.stat-grid strong { display: block; font-size: 1.35rem; }
.stat-grid span { color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }

.platforms { color: var(--muted); font-size: .86rem; }

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  border-top: 1px solid var(--line);
}
.about-text {
  font-size: 1.14rem;
  color: var(--muted);
  align-self: end;
}
.about-text p + p { margin-top: 24px; }

.contact {
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact > p:not(.eyebrow):not(.contact-note) { color: var(--muted); max-width: 650px; margin: 0 auto 28px; }
.contact-actions { justify-content: center; }
.contact-note {
  margin: 28px auto 0;
  max-width: 760px;
  color: #767f90;
  font-size: .86rem;
}

footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: .82rem;
}
.footer-brand { display: flex; align-items: center; gap: 10px; color: white; font-weight: 800; margin-right: auto; }
.footer-brand .brand-mark { width: 30px; height: 30px; }
footer a { margin-left: auto; }

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    color: white;
    background: transparent;
    border: 1px solid var(--line);
    padding: 9px 12px;
    font: inherit;
    letter-spacing: .12em;
  }
  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 20px;
    background: #0b0c12;
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 14px 0; }
  .nav-steam { border: 0; }
  .game-card { grid-template-columns: 1fr; }
  .game-art-wrap { min-height: 300px; }
  .about { grid-template-columns: 1fr; gap: 10px; }
  .about-text { align-self: auto; }
}

@media (max-width: 620px) {
  .site-header { padding-inline: 18px; }
  .hero-content, .section, footer { width: min(100% - 32px, var(--max)); }
  .hero { min-height: 620px; }
  .hero-content { padding: 86px 0 120px; }
  h1 { font-size: clamp(3.2rem, 17vw, 5rem); }
  .section { padding: 84px 0; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  footer { padding: 30px 0; flex-wrap: wrap; }
  footer p { width: 100%; margin: 0; order: 3; }
  footer a { margin-left: 0; }
}
