/* ============================================
   GAME PAGE — Black Theme
   ============================================ */

.ghero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  overflow: hidden;
}

.ghero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(251, 191, 36, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 20%, rgba(0, 212, 232, 0.06) 0%, transparent 40%),
    linear-gradient(180deg, rgba(0,0,0,0.70) 0%, rgba(5,5,8,0.45) 35%, rgba(5,5,8,0.45) 65%, rgba(0,0,0,0.80) 100%),
    url('../img/bg_dw1943.webp') center 20%/cover no-repeat;
  z-index: 0;
}

.ghero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.008) 2px, rgba(255,255,255,0.008) 4px);
  opacity: 0.4;
}

.ghero__content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.ghero__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  background: var(--teal);
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.ghero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white-bright);
  margin-bottom: 16px;
}

.ghero__title-year { color: var(--gold); font-size: 1.1em; }

.ghero__subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: var(--gray-100);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.ghero__meta { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

.ghero__tag {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-200);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 4px;
}

/* --- GAME INFO --- */
.ginfo {
  padding: var(--section-py) 0;
  background: var(--bg-raised);
}

.ginfo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.ginfo__heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white-bright);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ginfo__heading::before {
  content: '';
  display: inline-block;
  width: 3px; height: 1.2em;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}

.ginfo__block p {
  color: var(--gray-100);
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.ginfo__block strong { color: var(--gold); }

.ginfo__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ginfo__features li { font-size: 0.9rem; color: var(--gray-100); line-height: 1.5; }
.ginfo__icon { color: var(--teal); margin-right: 8px; font-size: 0.7rem; }
.ginfo__features strong { color: var(--white-bright); }

.ginfo__loop {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.ginfo__step {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border);
  transition: border-color 0.3s var(--ease);
}

.ginfo__step:hover { border-color: var(--border-hover); }

.ginfo__step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--teal);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 8px;
}

.ginfo__step h4 {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 600;
  margin-bottom: 4px;
  color: var(--white-bright);
}

.ginfo__step p { font-size: 0.85rem; color: var(--gray-200); line-height: 1.5; margin: 0; }

.ginfo__cta {
  text-align: center;
  padding: 40px 0 0;
  border-top: 1px solid var(--border);
}

.ginfo__cta-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-100);
  margin-bottom: 20px;
}

.ginfo__stores { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.ginfo__store-badge {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--gray-200);
}

.ginfo__store-badge--soon { opacity: 0.6; }

@media (min-width: 640px) {
  .ginfo__grid { grid-template-columns: repeat(2, 1fr); }
  .ginfo__block--full { grid-column: 1 / -1; }
  .ginfo__loop { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .ghero { min-height: 65vh; }
  .ginfo__loop { grid-template-columns: repeat(5, 1fr); }
  .ginfo__step { text-align: center; }
}

/* --- GAME-SPECIFIC HERO THEMES --- */

/* Wild West 1875 — Sepia/Western */
.ghero__bg--wildwest {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(139, 105, 20, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 87, 10, 0.06) 0%, transparent 40%),
    linear-gradient(180deg, rgba(0,0,0,0.82) 0%, rgba(10,8,5,0.65) 40%, rgba(10,8,5,0.65) 60%, rgba(0,0,0,0.85) 100%),
    url('../img/bg_wildwest.webp') center/cover no-repeat;
}
.ghero--wildwest .ghero__title-year { color: #d4840a; }
.ghero--wildwest .ghero__badge--dev {
  background: #8b6914; color: #000;
}

/* Cure-All 1885 — Amber/Americana */
.ghero__bg--cureall {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(74, 124, 89, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 30%, rgba(212, 132, 10, 0.06) 0%, transparent 40%),
    linear-gradient(180deg, rgba(0,0,0,0.82) 0%, rgba(5,8,5,0.65) 40%, rgba(5,8,5,0.65) 60%, rgba(0,0,0,0.85) 100%),
    url('../img/bg_cureall.webp') center 30%/cover no-repeat;
}
.ghero--cureall .ghero__title-year { color: #4a7c59; }
.ghero--cureall .ghero__badge--dev {
  background: #4a7c59; color: #000;
}

/* Five Finger Discount 1983 — Pop Art/Pink */
.ghero__bg--ffd {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(255, 105, 180, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 40%),
    linear-gradient(180deg, rgba(0,0,0,0.82) 0%, rgba(8,5,8,0.65) 40%, rgba(8,5,8,0.65) 60%, rgba(0,0,0,0.85) 100%),
    url('../img/bg_ffd.webp') center/cover no-repeat;
}
.ghero--ffd .ghero__title { font-size: clamp(2rem, 8vw, 4rem); }
.ghero--ffd .ghero__title-year { color: #ff69b4; }
.ghero--ffd .ghero__badge--dev {
  background: #ff69b4; color: #000;
}
