/* ============================================================
   GAME DETAIL PAGES — shared styles (hero + trailer + store links)
   ============================================================ */

.game-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-top: var(--nav-h);
}

.game-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 15, 22, 0.55) 0%, var(--bg-darkest) 100%);
}

.game-hero-content {
  position: relative;
  z-index: 1;
  padding: 64px 48px;
}

.game-hero-logo {
  display: block;
  max-width: 480px;
  width: 100%;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
  margin: 0 auto 20px;
}

.game-hero-title {
  font-family: 'Quatro', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.game-hero-tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
  margin: 0 auto;
  text-align: center;
}

.game-trailer {
  padding: 56px 48px;
}

.trailer-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.trailer-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.game-store {
  padding: 0 48px 72px;
  text-align: center;
}

.game-store h2 {
  font-family: 'Quatro', system-ui, sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.store-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-family: 'Quatro', system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, transform 0.15s;
}

.store-btn i {
  font-size: 1.2rem;
  color: var(--teal);
}

.store-btn:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .game-hero-content,
  .game-trailer,
  .game-store {
    padding-left: 24px;
    padding-right: 24px;
  }
}
