body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 214, 133, 0.22), transparent 18rem),
    radial-gradient(circle at 88% 24%, rgba(142, 216, 255, 0.24), transparent 20rem),
    linear-gradient(180deg, #071631, #1a3268 48%, #f7fbff 100%);
  color: #10213d;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.category-page-shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.category-page-shell header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 56px;
}

.category-brand,
.category-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 950;
  text-decoration: none;
}

.category-brand img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: #ffffff;
  object-fit: contain;
}

.category-back {
  min-height: 44px;
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.14);
}

.category-page-hero {
  max-width: 760px;
  margin-bottom: 28px;
}

.category-page-hero p {
  margin: 0 0 10px;
  color: #ffd685;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.category-page-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 0.96;
}

.category-page-hero span {
  display: block;
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  font-weight: 760;
  line-height: 1.55;
}

.category-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-game-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: #10213d;
  text-decoration: none;
  box-shadow: 0 24px 52px rgba(5, 14, 33, 0.18);
}

.category-game-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  background: #ffffff;
  object-fit: cover;
  object-position: top center;
}

.category-game-card strong {
  font-size: 1.18rem;
  line-height: 1.15;
}

.category-game-card span {
  color: #52647f;
  font-size: 0.94rem;
  font-weight: 740;
  line-height: 1.44;
}

@media (max-width: 900px) {
  .category-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .category-page-shell header {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-page-grid {
    grid-template-columns: 1fr;
  }
}
