.game-banner {
  position: relative;
  height: 40vh;
  margin-top: 75px;
  background: linear-gradient(135deg, #0099ff 0%, #002b55 100%);
  display: flex;
  align-items: flex-end;
  padding: 3rem 4rem;
}

.banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent 40%, var(--bg-main) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.banner-content h1 {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.9;
  margin: 0.5rem 0;
  color: #ffffff;
}

.tagline {
  color: #e0f2fe;
  font-size: 1.1rem;
}

.game-store-container {
  max-width: 1400px;
  margin: 2rem auto 5rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
}

.media-placeholder {
  width: 100%;
  height: 420px;
  background: #cbd5e1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #475569;
}

.game-description {
  margin: 3rem 0;
}

.game-description h2, .sys-req h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.game-description p {
  color: var(--text-muted);
  line-height: 1.7;
}

.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.req-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.req-card h3 {
  color: var(--primary-blue);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.req-card ul {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.req-card li {
  margin-bottom: 0.5rem;
}

.purchase-box {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.8rem;
  border: 1px solid var(--border-light);
  position: sticky;
  top: 95px;
}

.price-header {
  margin-bottom: 1.5rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-dark);
}

.width-full {
  width: 100%;
  margin-bottom: 0.8rem;
  text-align: center;
}

.game-specs {
  margin-top: 2rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.spec-label {
  color: var(--text-muted);
}

.spec-value {
  font-weight: 700;
  color: var(--text-dark);
}

@media (max-width: 900px) {
  .game-store-container {
    grid-template-columns: 1fr;
  }
  .req-grid {
    grid-template-columns: 1fr;
  }
}