/* Farlight Studios static — Hestia-inspired, no WordPress */
:root {
  --nav: #272727;
  --footer: #323437;
  --accent: #5800fc;
  --text: #3c4858;
  --muted: #5e5e5e;
  --max: 1140px;
  --content: 750px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 15px; }
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav);
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
.brand {
  color: #fff !important;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none !important;
  margin: 0;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
}
.nav-menu a {
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  display: block;
  font-size: 14px;
  font-weight: 400;
}
.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--accent);
  text-decoration: none;
}
.hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a1a1a;
  padding: 120px 20px 72px;
}
.hero-logo {
  width: min(220px, 55vw);
  height: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.45));
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 640px;
}
.hero-inner h1 {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(32px, 6vw, 67px);
  font-weight: 700;
  margin: 0 0 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.hero-inner p {
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 28px;
  color: #f3f3f3;
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 3px;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(88,0,252,.35);
  text-decoration: none !important;
}
.btn:hover { filter: brightness(1.08); }
.main { flex: 1; padding: 110px 0 64px; }
.home-main { padding-top: 0; padding-bottom: 0; }
.page-content { max-width: var(--content); margin: 0 auto; }
.page-title {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #3c4858;
  margin: 0 0 24px;
}
h2 {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1.45rem;
  margin: 1.6em 0 .5em;
  color: #3c4858;
}
h3, h4 { color: #3c4858; margin: 1.2em 0 .4em; }
.prose p, .prose li { color: #000; }
.prose ul, .prose ol { padding-left: 1.3em; }
.game-shot { width: 100%; margin: 1rem 0; }
.game-shots { display: grid; gap: 12px; }
@media (min-width: 700px) {
  .game-shots.two { grid-template-columns: 1fr 1fr; }
}
.store-links { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin: 1.5rem 0; }
.store-links a { font-weight: 500; }
.games-list { list-style: disc; padding-left: 1.2em; font-size: 18px; }
.games-list li { margin: .6em 0; }
.contact-block h1 { font-size: 1.1rem; font-weight: 500; }
.contact-block h2 { font-size: 1.5rem; font-weight: 400; }
.email { font-size: 1.4rem; }
.socials { margin-top: 1.5rem; }
.socials span { display: block; color: var(--muted); margin: .35em 0; }
.home-games { padding: 56px 0 80px; background: #fafafa; }
.cards { display: grid; gap: 28px; }
@media (min-width: 800px) {
  .cards { grid-template-columns: 1fr 1fr; }
}
.card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.card img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 20px 22px 26px; }
.card h2 { margin: 0 0 8px; font-size: 1.35rem; }
.card p { margin: 0 0 16px; color: #555; }
.gif-wrap { text-align: center; }
.gif-wrap img { margin: 1.5rem auto; max-width: 357px; }
.footer {
  background: var(--footer);
  color: #fff;
  padding: 28px 0;
  margin-top: auto;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.footer a { color: #fff; text-decoration: none; font-size: 13px; }
.footer a:hover { text-decoration: underline; }
.copyright { color: #bbb; font-size: 13px; }
.copyright a { color: #fff; }
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--nav);
    flex-direction: column;
    padding: 8px 0 16px;
  }
  .nav-menu.open { display: flex; }
  .page-title { font-size: 26px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.hero-logo { width: min(280px, 70vw); }
.page-content:has(.cards) { max-width: none; }
