@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --bg: #0b0b0b;
  --bg-soft: #141414;
  --text: #f5f5f5;
  --muted: #a7a7a7;
  --line: #292929;
  --accent: #e43b2c;
  --accent-dark: #a92319;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Roboto, Arial, sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(1000px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

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

.brand img {
  width: 170px;
  max-height: 52px;
  object-fit: contain;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

nav a {
  text-decoration: none;
  color: #ddd;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .9rem;
}

nav a:hover {
  color: #fff;
}

.hero {
  min-height: 720px;
  display: grid;
  place-items: center;
  position: relative;
  text-align: center;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.82)),
    url("assets/hero.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0, rgba(0,0,0,.55) 75%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.hero-logo {
  width: min(650px, 90vw);
  margin: 0 auto 24px;
}

.tagline {
  margin: 0;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 500;
}

.release {
  margin: 15px 0 30px;
  color: #ddd;
  font-size: 1.05rem;
}

.hero-buttons,
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  display: inline-block;
  padding: 13px 23px;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  border-color: #fff;
  background: rgba(0,0,0,.3);
}

.button-secondary:hover {
  background: #fff;
  color: #111;
}

.section {
  padding: 100px 0;
}

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

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .85rem;
  font-weight: 600;
}

h1,
h2 {
  margin: 0 0 20px;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.lead {
  max-width: 800px;
  margin: 0 auto 60px;
  color: #ccc;
  font-size: 1.15rem;
}

#game {
  text-align: center;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
  margin-bottom: 90px;
}

.features article {
  padding: 28px;
  background: #111;
  border: 1px solid var(--line);
}

.features h2 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.features p {
  margin: 0;
  color: var(--muted);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 18px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
  text-align: left;
}

.story-grid img {
  width: 100%;
  border: 1px solid var(--line);
}

.story-copy p {
  color: #bbb;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 35px;
}

.gallery a {
  overflow: hidden;
  background: #000;
}

.gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .2s ease;
}

.gallery a:hover img {
  transform: scale(1.04);
}

.steam-section {
  text-align: center;
}

.steam-section > p:not(.eyebrow) {
  color: var(--muted);
}

.steam-widget {
  width: 100%;
  max-width: 646px;
  margin: 35px auto 25px;
  overflow: hidden;
}

.steam-widget iframe {
  display: block;
  width: 100%;
  max-width: 646px;
  min-height: 190px;
}

.merch-section {
  background: #101010;
}

.merch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.merch-image img {
  width: 100%;
  max-width: 520px;
  margin: auto;
}

.merch p {
  color: #bbb;
}

.small-note {
  font-size: .85rem;
  color: #777 !important;
}

.social {
  text-align: center;
}

.social-links {
  margin-top: 35px;
}

.social-links a {
  min-width: 120px;
  padding: 12px 18px;
  border: 1px solid #444;
  text-decoration: none;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.social-links a:hover {
  border-color: var(--accent);
  color: #fff;
}

.footer {
  border-top: 1px solid var(--line);
  background: #070707;
  color: #777;
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer strong {
  color: #ddd;
  font-family: Oswald, sans-serif;
  letter-spacing: .08em;
}

.footer p {
  margin: 3px 0 0;
}

.footer a {
  color: #aaa;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

@media (max-width: 850px) {
  .nav {
    padding: 12px 0;
    flex-direction: column;
  }

  nav {
    justify-content: center;
  }

  .hero {
    min-height: 620px;
  }

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

  .story-grid,
  .merch {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

@media (max-width: 550px) {
  .container,
  .narrow {
    width: min(100% - 26px, var(--max));
  }

  .section {
    padding: 70px 0;
  }

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

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding: 70px 0;
  }

  nav {
    gap: 12px;
  }

  nav a {
    font-size: .78rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
.footer .made-in {
  white-space: nowrap !important;
}

.footer .made-in img {
  display: inline-block !important;
  width: 45px !important;
  height: auto !important;
  vertical-align: middle !important;
  margin-right: 8px !important;
}
}
