:root {
  --orange: #e8802a;
  --orange-deep: #b8621c;
  --blue: #35b7d8;
  --cream: #f6ecd6;
  --ink: #2f2a2a;
  --sky-top: #7fc4e8;
  --sky-warm: #f4c76a;
  --shadow: 0 8px 28px rgba(47, 42, 42, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fredoka', 'Nunito', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  background: url('assets/hero.jpg') center / cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,30,0.10) 0%, rgba(20,20,30,0.05) 45%, rgba(20,20,30,0.55) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-logo {
  width: min(560px, 82vw);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}
.tagline {
  margin-top: 1.2rem;
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.15rem, 3.4vw, 1.9rem);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
.release-date {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.4rem 1rem;
  border: 2px solid #fff;
  border-radius: 999px;
  background: rgba(47, 42, 42, 0.72);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  box-shadow: var(--shadow);
}

.cta-row {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 3px solid var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.92); color: var(--ink); }
.btn-big { font-size: 1.25rem; padding: 1rem 2.6rem; }
.btn-steam {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.steam-logo {
  height: 1.1em;
  width: auto;
  display: block;
}

.meta-chips {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.chip {
  background: rgba(255,255,255,0.9);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}

/* ---------- PITCH ---------- */
.pitch {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  text-align: center;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  font-weight: 600;
}

/* ---------- GAMEPLAY CLIPS ---------- */
.clips {
  max-width: 1080px;
  margin: 1rem auto 3rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.clips img {
  width: 100%;
  border-radius: 18px;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  display: block;
}

/* ---------- FEATURES ---------- */
.feature {
  max-width: 1080px;
  margin: 3.5rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.feature.reverse .feature-text { order: 2; }
.feature-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--orange-deep);
  margin-bottom: 0.8rem;
}
.feature-text p { font-size: 1.1rem; }
.feature-art img {
  width: 100%;
  border-radius: 18px;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  display: block;
}

/* ---------- VERBS ---------- */
.verbs {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.verb-card {
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 20px;
  padding: 1.6rem 1.4rem 1.8rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.verb-face {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 0.6rem;
}
.verb-card h3 {
  font-size: 1.5rem;
  color: var(--orange-deep);
  margin-bottom: 0.5rem;
}
.verb-card p { font-size: 0.98rem; }

/* ---------- GOLDEN HOUR ---------- */
.goldenhour {
  position: relative;
  margin: 4rem 0;
  padding: 5rem 1.5rem;
  background: url('assets/city_bg.png') center / cover no-repeat;
  text-align: center;
}
.goldenhour-inner {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(246, 236, 214, 0.92);
  border: 4px solid var(--ink);
  border-radius: 22px;
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow);
}
.goldenhour-inner h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--orange-deep);
  margin-bottom: 0.8rem;
}
.goldenhour-inner p { font-size: 1.15rem; }

/* ---------- TWO BUTTONS ---------- */
.two-buttons {
  max-width: 720px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  text-align: center;
}
.two-buttons h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--orange-deep);
  margin-bottom: 0.8rem;
}
.two-buttons p { font-size: 1.2rem; font-weight: 600; }

/* ---------- WISHLIST ---------- */
.wishlist {
  background: linear-gradient(180deg, var(--sky-top), var(--sky-warm));
  padding: 4.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}
.wishlist-faces { width: 130px; height: auto; }
.wishlist-copy { max-width: 520px; }
.wishlist-copy h2 {
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.wishlist-copy p { font-size: 1.1rem; font-weight: 600; margin-bottom: 1.2rem; }
.wishlist-copy .soon {
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.7;
  margin-top: 0.8rem;
  margin-bottom: 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 2.2rem 1.5rem;
}
.site-footer p { font-size: 0.95rem; }
.footer-fine { opacity: 0.7; font-size: 0.82rem; margin-top: 0.4rem; }
.footer-steam { height: 26px; width: auto; margin-bottom: 1rem; opacity: 0.9; }
.footer-links { margin-bottom: 0.9rem; font-weight: 700; }
.footer-links a { color: var(--orange); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-links .dot { opacity: 0.5; margin: 0 0.5rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 760px) {
  .feature { grid-template-columns: 1fr; }
  .feature.reverse .feature-text { order: 0; }
  .wishlist-faces { width: 90px; }
}
