/* ── GAME HERO ── */
.game-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 var(--rc-pad-x);
}
.game-hero-bg {
  position: absolute;
  inset: 0;
}
.game-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.game-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(var(--hero-tint-rgb), var(--hero-tint-alpha-top, 0.6)) 0%,
    rgba(var(--hero-tint-rgb), var(--hero-tint-alpha-mid, 0.75)) 50%,
    rgba(var(--rc-bg-rgb), 0.96) 100%
  );
}
.game-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--rc-gap);
}
.game-hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--rc-dim);
}

/* ── ABOUT GRID ── */
.game-about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .game-about-grid { grid-template-columns: 1fr; }
}

.game-quote {
  border-left: 2px solid var(--rc-cyan);
  padding-left: var(--rc-gap);
}

.game-meta {
  display: flex;
  gap: var(--rc-gap);
  flex-wrap: wrap;
  padding-top: var(--rc-gap-sm);
}
.game-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.game-shots-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.game-shots-col .card-rc-art {
  height: 180px;
}

/* ── FEATURES GRID ── */
.game-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--rc-border);
}
.game-features-grid .card-rc {
  border-radius: 0;
  border: none;
  animation: none;
  background: var(--rc-surface-2);
}
.game-feature-icon {
  font-size: 24px;
  color: var(--rc-cyan);
  line-height: 1;
}
@media (max-width: 900px) {
  .game-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .game-features-grid { grid-template-columns: 1fr; }
}

/* ── SCREENSHOTS GRID ── */
.game-shots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.game-shots-grid .card-rc-art {
  height: 200px;
}
@media (max-width: 900px) {
  .game-shots-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── NOTIFY FORM ── */
.game-notify-row {
  display: flex;
  max-width: 380px;
  width: 100%;
}
.game-notify-row .input-rc {
  border-right: none;
  border-radius: var(--rc-radius) 0 0 var(--rc-radius);
}
.game-notify-row .btn-rc {
  border-radius: 0 var(--rc-radius) var(--rc-radius) 0;
  white-space: nowrap;
}

/* ── CTA ── */
.game-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--rc-gap);
  background: var(--rc-cyan);
}

/* ── BOTTOM NAV ── */
.game-bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--rc-gap-sm);
  padding: var(--rc-pad-y) var(--rc-pad-x);
  border-top: 1px solid var(--rc-border);
}
