/* ============================================================
   GAME DETAILS PAGE — game hero split layout + quick stats
   Reuses .page-hero__breadcrumb, .btn, .container, .feature-card,
   .step-card, .game-card, .games-grid, .cta-band from main.css
   ============================================================ */

/* ---------- GAME HERO ---------- */
.game-hero {
  position: relative;
  padding-block: var(--space-10) var(--space-16);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  background-color: var(--color-bg);
  background-image:
    linear-gradient(120deg, rgba(8,8,8,0.94) 0%, rgba(8,8,8,0.80) 45%, rgba(139,0,0,0.35) 100%),
    linear-gradient(0deg, var(--color-bg) 0%, rgba(8,8,8,0.55) 30%, rgba(8,8,8,0.20) 100%),
    url('../../images/games/crash.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.game-hero__breadcrumb { margin-bottom: var(--space-8); }

.game-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: var(--space-12);
}

.game-hero__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(183,28,28,0.85);
  border: 1px solid var(--color-border-red);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-5);
}

.game-hero__grid h1 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 7vw, var(--text-6xl));
  font-weight: var(--fw-black);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: var(--lh-tight);
  margin-bottom: var(--space-5);
}

.game-hero__desc {
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  line-height: var(--lh-loose);
  max-width: 560px;
  margin-bottom: var(--space-8);
}

/* Quick stats row */
.game-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.stat-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.stat-chip strong {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
}

/* Screenshot frame */
.game-hero__frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-red);
  box-shadow: var(--shadow-glow-lg);
  background: var(--color-surface-2);
}

.game-hero__frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}

@media (max-width: 900px) {
  .game-hero__grid { grid-template-columns: 1fr; }
  .game-hero__frame { max-width: 420px; margin-inline: auto; }
  .game-hero__desc { max-width: 100%; }
}

@media (max-width: 560px) {
  .game-hero__stats { gap: var(--space-2); }
  .stat-chip { font-size: var(--text-xs); padding: 6px 12px; }
}
