.game-detail-page {
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 242, 255, 0.1), transparent 26rem),
    radial-gradient(circle at 8% 46%, rgba(0, 194, 212, 0.08), transparent 30rem),
    #010b1a;
}

.game-detail-main {
  padding: clamp(48px, 7vw, 82px) 0 76px;
}

.game-detail-hero {
  padding-bottom: clamp(38px, 6vw, 64px);
}

.game-detail-hero__copy {
  max-width: 800px;
}

.game-detail-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: #5eead4;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.game-detail-hero h1 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(2.35rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.game-detail-hero p {
  max-width: 760px;
  color: #b8d8e8;
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.75;
}

.game-detail-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  color: #001427;
  background: linear-gradient(135deg, #67e8f9, #5eead4);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 242, 255, 0.16);
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.game-detail-play:hover,
.game-detail-play:focus-visible {
  box-shadow: 0 18px 40px rgba(0, 242, 255, 0.25);
  outline: none;
  transform: translateY(-2px);
}

.game-detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.game-detail-facts span {
  padding: 7px 11px;
  color: #bce6f1;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 700;
}

.game-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
  align-items: start;
  gap: clamp(28px, 6vw, 70px);
}

.game-detail-content {
  min-width: 0;
}

.game-detail-section {
  padding: 0 0 32px;
  scroll-margin-top: 90px;
}

.game-detail-section + .game-detail-section {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.game-detail-section h2 {
  margin-bottom: 14px;
  color: #ffffff;
  background: none;
  font-size: clamp(1.3rem, 3vw, 1.72rem);
  -webkit-text-fill-color: initial;
}

.game-detail-section p,
.game-detail-section li {
  color: #b7d0dc;
  font-size: 0.98rem;
  line-height: 1.78;
}

.game-detail-section p + p {
  margin-top: 12px;
}

.game-detail-section ol,
.game-detail-section ul {
  display: grid;
  gap: 9px;
  margin-left: 21px;
}

.game-detail-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 !important;
  list-style: none;
}

.game-detail-keywords li {
  padding: 7px 11px;
  color: #ccfbf1;
  background: rgba(45, 212, 191, 0.09);
  border: 1px solid rgba(45, 212, 191, 0.18);
  border-radius: 999px;
  font-size: 0.8rem;
  line-height: 1.2;
}

.game-detail-side {
  position: sticky;
  top: 94px;
  padding: 23px;
  background: rgba(6, 25, 45, 0.64);
  border: 1px solid rgba(0, 242, 255, 0.17);
  border-radius: 21px;
}

.game-detail-side h2 {
  margin-bottom: 12px;
  color: #ffffff;
  background: none;
  font-size: 1.08rem;
  -webkit-text-fill-color: initial;
}

.game-detail-side p {
  color: #9fc5d5;
  font-size: 0.88rem;
  line-height: 1.65;
}

.game-detail-side .game-detail-play {
  width: 100%;
  margin-top: 18px;
}

@media (max-width: 820px) {
  .game-detail-grid {
    grid-template-columns: 1fr;
  }

  .game-detail-side {
    position: static;
  }
}

@media (max-width: 520px) {
  .game-detail-main {
    padding-top: 40px;
  }

  .game-detail-hero h1 {
    font-size: clamp(2.35rem, 14vw, 3.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .game-detail-play {
    transition: none;
  }
}
