@font-face {
  font-family: "souba display";
  src: url("/media/fonts/souba_display.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "souba text";
  src: url("/media/fonts/souba_text.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #0b0b0d;
  --panel: #141418;
  --ink: #ececf0;
  --muted: #9a9aa8;
  --cyan: #4ff0ff;
  --lime: #b9ec1e;
  --magenta: #ff2d9b;
  --purple: #8b2bff;
  --orange: #ff6a1f;
  --yellow: #ffd400;
  --display: "souba display", "Arial Rounded MT Bold", ui-rounded, system-ui, sans-serif;
  --text: "souba text", ui-rounded, system-ui, sans-serif;
  --body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--cyan); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--lime); }

:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10;
  background: var(--lime);
  color: #000;
  padding: .6rem 1rem;
  border-radius: 999px;
}

.hero {
  max-width: 68rem;
  margin: 0 auto;
  padding: 2.4rem 1.4rem 1.6rem;
  text-align: center;
}

.hero h1 { margin: 0; }

.hero-logo {
  width: min(27rem, 100%);
  margin: 0 auto;
}

.tagline {
  font-family: var(--display);
  font-size: clamp(1.1rem, 3.2vw, 1.55rem);
  line-height: 1.25;
  margin: .9rem auto 1.4rem;
}

.platforms {
  font-family: var(--text);
  color: var(--muted);
  font-size: .9rem;
  margin: .9rem 0 0;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: 1rem;
  padding: .75rem 1.6rem;
  border-radius: 999px;
  border: 0;
  color: var(--ink);
  background: var(--panel);
  text-decoration: none;
  transition: transform .12s ease, background-color .12s ease, color .12s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: #000;
}

.btn-primary {
  background: var(--lime);
  color: #000;
}

.btn-primary:hover {
  background: var(--cyan);
  color: #000;
}

.section {
  max-width: 68rem;
  margin: 0 auto;
  padding: 1.6rem 1.4rem;
}

.blurb {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  color: #d3d3dc;
}

.notice {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  color: #b6b6c2;
}

.trailer {
  width: 100%;
  max-width: 54rem;
  margin: 0 auto;
  border-radius: 18px;
  background: #000;
}

.shots {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

.shots a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  transition: opacity .12s ease;
}

.shots a:hover { opacity: .8; }

.shots img { width: 100%; }

.footer {
  max-width: 68rem;
  margin: 1rem auto 0;
  padding: 1.4rem 1.4rem 2.4rem;
  color: var(--muted);
  font-size: .92rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 2rem;
  justify-content: space-between;
}

.footer p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
