/* Game introduction and feature layouts, used only by the homepage. */
.hcr-hero {
  padding: 3rem 0;
  background: radial-gradient(ellipse at top left, #282017, #111114 60%, #000);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 32px; }
.hero-grid > *, .game-grid > * { min-width: 0; }
.hcr-hero h1 { margin-bottom: 1rem; font-size: clamp(2.1rem, 3.5vw, 3.6rem); line-height: 1.3; color: #ffbb32; }
.hcr-tagline { font-size: clamp(1.35rem, 1.8vw, 1.7rem); line-height: 1.6; margin-bottom: 1rem; }
.hcr-intro { max-width: 48ch; font-size: 1.08rem; line-height: 1.8; margin-bottom: 1.5rem; }
.hcr-store-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hcr-trailer-link { display: inline-block; margin-top: 1.1rem; }
.hcr-hero-image { display: block; width: 100%; border-radius: 8px; border: 1px solid #69502b; }

.hcr-section { padding: 3rem 0; }
.hcr-section-title { margin: 0 0 2rem; text-align: center; font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1.5; }
.hcr-video { position: relative; aspect-ratio: 16 / 9; max-width: 1040px; margin: 0 auto; background: #161616; }
.hcr-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.hcr-video-link { text-align: center; margin: 1rem 0 0; }

.game-grid { display: grid; grid-template-columns: 7fr 5fr; align-items: center; gap: 32px; }
.game-step { padding: 1.5rem; border-radius: 6px; margin-bottom: 1rem; background: #fff; color: var(--ink); }
.game-step h3 { margin-bottom: 0.75rem; }
.game-step p { margin: 0; }
.hcr-crow { display: block; width: 100%; max-width: 460px; margin: 1rem auto; }

.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.feature-card-inner { height: 100%; overflow: hidden; border-radius: 6px; background: #fafafa; color: var(--ink); }
.feature-card-inner > img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.feature-card-content { padding: 1.25rem; }
.feature-card-content h3 { font-size: 1.2rem; line-height: 1.6; margin-bottom: 0.75rem; }
.feature-card-content p { font-size: 1rem; margin: 0; }

.hcr-purchase, .hcr-support { text-align: center; }
.hcr-purchase { background: #181511; }
.hcr-purchase .hcr-section-title, .hcr-support .hcr-section-title { margin-bottom: 1rem; }
.hcr-purchase .hcr-store-links { justify-content: center; margin-top: 1.5rem; }
.hcr-support a { overflow-wrap: anywhere; }
.hcr-support .hcr-section-title { font-size: 2rem; }

@media (max-width: 1199px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 991px) {
  .hero-grid, .game-grid { grid-template-columns: 1fr; }
  .hcr-intro { max-width: 60ch; }
  .hcr-crow { max-width: 320px; }
}
@media (max-width: 575px) {
  .hcr-hero, .hcr-section { padding: 2rem 0; }
  .hcr-intro { font-size: 1rem; }
  .hcr-store-links { flex-direction: column; }
  .feature-grid { grid-template-columns: 1fr; }
}
