/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #07080c;
  color: #d8d6cf;
  font-family: 'Syne', sans-serif;
  overflow-x: hidden;
}

/* ── STARFIELD ── */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── PAGE WRAPPER ── */
.page {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 32px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── LOGO BLOCK ── */
.logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.logo-symbol {
  height: 72px;
  width: auto;
}

.logo-wordmark {
  width: min(480px, 78vw);
  height: auto;
}

.logo-tagline {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 18px;
  color: #44475a;
  letter-spacing: 0.08em;
  margin-top: -4px;
}

/* ── GAME KEY ART ── */
.game-thumb-link {
  display: block;
  width: 100%;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  transition: transform 0.35s ease, opacity 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.game-thumb-link:hover {
  transform: scale(1.01);
}

.game-thumb-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ── DIVIDER ── */
.divider {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 48px 0;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* ── TRAILER ── */
.trailer-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.trailer-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── STEAM CTA ── */
.steam-cta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.steam-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #4f9cf9;
  color: #06080f;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.steam-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.footer-copy {
  font-size: 12px;
  color: #44475a;
  letter-spacing: 0.1em;
}

.footer-contact {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #44475a;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact:hover {
  color: #d8d6cf;
}

/* ── ANIMATION ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .page {
    padding: 52px 20px 60px;
  }

  .logo-block {
    margin-bottom: 36px;
  }
}
