:root {
  --games-bg: #111418;
  --games-surface: rgba(142, 172, 209, 0.06);
  --games-line: rgba(142, 172, 209, 0.16);
  --games-text: #eef3fb;
  --games-muted: rgba(238, 243, 251, 0.72);
  --games-accent: #6f9ed1;
  --games-accent-soft: #b5d5f6;
  --games-green: #64d394;
  --games-warm: #f5a25e;
  --games-violet: #a78bfa;
  --games-yellow: #f5d56c;
  --games-shadow: 0 26px 60px rgba(4, 10, 20, 0.3);
  --games-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.games-page {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--games-text);
  background:
    linear-gradient(180deg, #121922 0%, #10151d 38%, var(--games-bg) 100%);
  font-family: "Space Grotesk", sans-serif;
}
body.games-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 56%, transparent 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.games-skip {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 20;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #111;
}
.games-skip:focus { top: 1rem; }
.games-header, .games-main, .games-footer {
  width: min(var(--games-width), calc(100vw - 2rem));
  margin-inline: auto;
}
.games-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
  padding: 1rem 0;
  backdrop-filter: blur(16px);
  background: rgba(18, 19, 24, 0.72);
}
.games-brand { display: inline-flex; align-items: center; gap: 0.9rem; }
.games-brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
  flex: 0 0 auto;
}
.games-brand-copy { display: grid; gap: 0.08rem; }
.games-brand-copy span, .games-nav a, .games-strip span, .games-hero-copy p, .games-featured-copy p, .mosaic-copy p, .game-row p, .games-footer p {
  color: var(--games-muted);
}
.games-menu-toggle {
  display: none;
  border: 1px solid var(--games-line);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: transparent;
  color: var(--games-text);
  font: inherit;
}
.games-nav { display: inline-flex; gap: 1.1rem; flex-wrap: wrap; }
.games-main { padding-bottom: 4rem; }
.games-hero {
  width: min(var(--games-width), calc(100vw - 2rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 0.78fr);
  align-items: center;
  gap: 2rem;
  min-height: 34rem;
  padding: 3.6rem 0 2rem;
}

.games-hero-copy {
  width: 100%;
  max-width: 43rem;
}
.games-kicker, .games-card-kicker {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--games-accent-soft);
}
.games-hero-copy .games-kicker,
.games-featured-copy .games-kicker,
.mosaic-copy .games-card-kicker,
.game-row .games-card-kicker {
  color: var(--games-accent-soft);
}
.games-hero h1, .games-section-head h2, .games-cta h2, .mosaic-copy h3, .game-row h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  letter-spacing: 0;
}
.games-hero h1 {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: 3.75rem;
  line-height: 0.98;
  white-space: normal;
  text-wrap: pretty;
  overflow-wrap: anywhere;
  word-break: normal;
}
.games-hero-copy > p:last-of-type, .mosaic-copy p, .game-row p { line-height: 1.72; }
.games-hero-copy > p:last-of-type {
  max-width: 64rem;
}
.games-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.games-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease;
}
.games-button:hover, .games-button:focus-visible { transform: translateY(-2px); }
.games-button-primary {
  color: #111;
  background: linear-gradient(135deg, var(--games-accent-soft), var(--games-accent));
}
.games-button-secondary { border-color: var(--games-line); background: rgba(255, 255, 255, 0.03); }
.games-featured {
  position: relative;
  display: grid;
  gap: 1.5rem;
  min-height: 31rem;
  padding: 1.35rem;
  border: 1px solid rgba(142, 172, 209, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(15, 45, 57, 0.94), rgba(9, 17, 28, 0.96) 58%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--games-shadow);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}
.games-featured:hover,
.games-featured:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(155, 185, 221, 0.34);
}
.games-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 82%);
  pointer-events: none;
}
.games-featured-copy,
.games-featured-media {
  position: relative;
  z-index: 1;
}
.games-featured-copy h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 2.85rem;
  line-height: 0.98;
  letter-spacing: 0;
}
.games-featured-copy p:last-of-type {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: var(--games-muted);
  line-height: 1.65;
}
.games-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}
.games-feature-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.35rem 0.72rem;
  border: 1px solid rgba(238, 243, 251, 0.12);
  border-radius: 999px;
  background: rgba(238, 243, 251, 0.06);
  color: rgba(238, 243, 251, 0.82);
  font-size: 0.9rem;
}
.games-featured-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  justify-content: center;
  justify-items: center;
  gap: 0.9rem;
  min-height: 18rem;
  padding-top: 0.5rem;
}
.featured-phone {
  width: min(10.2rem, 100%);
  height: auto;
  border: 0;
  border-radius: 1.25rem;
  background: transparent;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}
.featured-phone-back {
  opacity: 1;
  transform: none;
}
.featured-phone-front {
  transform: none;
}
.games-strip, .games-showcase, .games-listing, .games-cta { margin-top: 1.2rem; }
.games-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--games-line);
}
.games-strip strong { display: block; margin-bottom: 0.2rem; }
.games-showcase, .games-listing { padding-top: 3rem; }
.games-showcase, .games-listing, .games-cta {
  border-top: 1px solid var(--games-line);
}
.games-section-head h2, .games-cta h2 {
  font-size: 3.6rem;
  line-height: 0.96;
  letter-spacing: 0;
}
.games-section-head {
  max-width: 64rem;
}
.games-section-head > p:not(.games-kicker) {
  max-width: 52rem;
  margin: 1rem 0 0;
  color: var(--games-muted);
  line-height: 1.72;
}
.games-showcase {
  scroll-margin-top: 44px;
}
.games-catalog-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.2vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.game-card {
  grid-column: span 4;
  min-width: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(142, 172, 209, 0.22);
}
.game-card-featured {
  grid-column: span 4;
}
.game-card-multiplicatron,
.game-card-paises {
  grid-column: span 6;
}
.game-card-link {
  display: grid;
  gap: 1rem;
  min-width: 0;
}
.game-card-featured .game-card-link {
  grid-template-columns: 1fr;
}
.game-card-media {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(238, 243, 251, 0.1);
  border-radius: 8px;
  background: rgba(8, 12, 20, 0.44);
  transition: transform 180ms ease, border-color 180ms ease, filter 180ms ease;
}
.game-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.34;
  pointer-events: none;
}
.game-card-media > * {
  position: relative;
  z-index: 1;
}
.game-card-link:hover .game-card-media,
.game-card-link:focus-visible .game-card-media {
  transform: translateY(-3px);
  border-color: rgba(181, 213, 246, 0.34);
  filter: brightness(1.04);
}
.game-card-featured .game-card-media {
  min-height: 0;
}
.game-card-billar .game-card-media {
  background: linear-gradient(135deg, #0d3d4a, #101a2e 54%, #2b1768);
}
.game-card-polycarlab .game-card-media {
  background: linear-gradient(135deg, #082238, #0b4a68 54%, #10283f);
}
.game-card-dekis .game-card-media {
  background: linear-gradient(135deg, #0d4f85, #0f86bd);
}
.game-card-ekis .game-card-media {
  background: linear-gradient(135deg, #101827, #142749 72%, #253f65);
}
.game-card-cover .game-card-media {
  background: linear-gradient(135deg, #172034, #34455f);
}
.game-card-codeloom .game-card-media {
  background: linear-gradient(135deg, #061423, #10233b 64%, #0b3c58);
}
.game-card-multiplicatron .game-card-media {
  background: linear-gradient(135deg, #1aa084, #5ed48a);
}
.game-card-paises .game-card-media {
  background: linear-gradient(135deg, #101a40, #271952 64%, #4b175d);
}
.catalog-game-thumbnail {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
}
.game-card-body {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-width: 0;
}
.game-card-featured .game-card-body {
  padding: 0;
}
.game-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: rgba(238, 243, 251, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}
.game-card-topline span:first-child {
  color: var(--games-accent-soft);
}
.game-card h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  letter-spacing: 0;
}
.game-card h3 {
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 0.96;
}
.game-card p {
  margin: 0;
  color: var(--games-muted);
  line-height: 1.68;
}
.game-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(238, 243, 251, 0.68);
  font-size: 0.94rem;
}
.game-card-meta li {
  display: inline-flex;
  align-items: center;
}
.game-card-meta li:not(:last-child)::after {
  content: "";
  width: 0.28rem;
  height: 0.28rem;
  margin-left: 0.85rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}
.game-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2.8rem;
  margin-top: 0.2rem;
  border-bottom: 1px solid currentColor;
  color: var(--games-accent-soft);
  font-weight: 700;
}
.catalog-phone-row {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: clamp(0.55rem, 1.6vw, 1rem);
  padding: 0.7rem;
}
.catalog-phone-row-overlap {
  gap: 0;
}
.catalog-phone {
  width: min(9.6rem, 43%);
  max-height: 18rem;
  object-fit: contain;
  border-radius: 1rem;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.32));
}
.catalog-phone-row-overlap .catalog-phone {
  width: min(10rem, 34%);
  margin-inline: -0.35rem;
}
.catalog-phone-row-overlap .catalog-phone:nth-child(2) {
  z-index: 2;
  width: min(11.4rem, 38%);
  transform: translateY(-0.8rem);
}
.game-card-featured .catalog-phone {
  max-height: 21rem;
}
.catalog-phone-row-duo .catalog-phone {
  width: min(10.4rem, 44%);
}
.catalog-square-shot {
  width: min(18rem, 82%);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}
.catalog-square-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-emblem {
  display: grid;
  place-items: center;
  gap: 1rem;
  min-height: 16rem;
  color: rgba(238, 243, 251, 0.8);
  text-align: center;
}
.catalog-emblem img {
  width: clamp(5.5rem, 18vw, 8rem);
  height: clamp(5.5rem, 18vw, 8rem);
  padding: 0.65rem;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.26));
}
.catalog-emblem span {
  font-size: 0.94rem;
}
.catalog-cover-board {
  position: relative;
  width: clamp(6.5rem, 20vw, 9rem);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(204, 223, 250, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(172, 210, 255, 0.28), transparent 30%),
    repeating-conic-gradient(from 45deg, rgba(238, 243, 251, 0.18) 0 25%, rgba(95, 127, 172, 0.2) 0 50%) 50% / 2.1rem 2.1rem,
    linear-gradient(135deg, #15213a, #31486a);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.26);
}
.catalog-cover-board::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 45%);
}
.catalog-cover-mark {
  position: absolute;
  inset: 15% 16% 10% 14%;
  z-index: 1;
  color: #f7f2df;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.32));
}
.catalog-cover-mark path:first-child {
  fill: currentColor;
}
.catalog-cover-mark circle {
  fill: #172238;
}
.catalog-cover-mark path:last-child {
  fill: none;
  stroke: #172238;
  stroke-linecap: round;
  stroke-width: 7;
}
.catalog-cover-node {
  position: absolute;
  z-index: 2;
  width: 0.68rem;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: #93c5fd;
  box-shadow: 0 0 0 0.28rem rgba(147, 197, 253, 0.2);
}
.catalog-cover-node-a {
  top: 17%;
  right: 18%;
}
.catalog-cover-node-b {
  right: 30%;
  bottom: 18%;
  background: #fbbf24;
  box-shadow: 0 0 0 0.28rem rgba(251, 191, 36, 0.18);
}
.catalog-cover-node-c {
  bottom: 32%;
  left: 16%;
  background: #34d399;
  box-shadow: 0 0 0 0.28rem rgba(52, 211, 153, 0.18);
}
.games-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  gap: 1rem;
  margin-top: 1.8rem;
}
.mosaic-item {
  height: 100%;
}
.mosaic-item a {
  display: grid;
  grid-template-rows: 22rem auto;
  gap: 1rem;
  height: 100%;
  padding: 0;
  transition: transform 180ms ease;
}
.mosaic-item a:hover,
.mosaic-item a:focus-visible {
  transform: translateY(-3px);
}
.mosaic-media {
  display: grid;
  place-items: center;
  min-height: 22rem;
  border-radius: 24px;
  border: 1px solid rgba(238, 243, 251, 0.08);
  overflow: hidden;
  padding: 1.1rem;
}
.mosaic-warm { background: linear-gradient(180deg, #2b1c1a, #512714); }
.mosaic-dark { background: linear-gradient(180deg, #0d1525, #101f38); }
.mosaic-cool { background: linear-gradient(180deg, #12243a, #0f3f61); }
.mosaic-billar { background: linear-gradient(180deg, #0f2c3a, #0b1725); }
.mosaic-media img { max-height: 26rem; object-fit: contain; }
.mosaic-clean {
  min-height: 22rem;
  padding: 0;
  border-color: transparent;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}
.mosaic-clean .game-shot {
  height: 100%;
  max-height: 22rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.mosaic-clean .game-shot img {
  object-fit: contain;
}
.phone-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
  min-height: 18rem;
}
.phone-stack img {
  width: min(8.4rem, 30%);
  height: auto;
  max-height: 18.5rem;
  border: 0;
  border-radius: 1.1rem;
  background: transparent;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}
.phone-stack img:nth-child(1) {
  transform: none;
  opacity: 1;
}
.phone-stack img:nth-child(2) {
  z-index: 1;
  width: min(9.4rem, 34%);
}
.phone-stack img:nth-child(3) {
  transform: none;
  opacity: 1;
}
.game-shot {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(238, 243, 251, 0.14);
  background: rgba(8, 12, 20, 0.4);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}
.game-shot-phone {
  height: 19rem;
  aspect-ratio: 9 / 16;
  border-radius: 1.2rem;
}
.game-shot-square {
  width: min(15rem, 82%);
  aspect-ratio: 1;
  border-radius: 1.4rem;
}
.game-shot img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}
.mosaic-copy h3, .game-row h3 { font-size: 2rem; line-height: 1; }
.games-rows {
  display: grid;
  gap: 0;
  margin-top: 1.8rem;
  border-top: 1px solid var(--games-line);
}
.game-row {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--games-line);
  transition: transform 180ms ease;
}
.game-row:hover,
.game-row:focus-visible {
  transform: translateX(0.25rem);
}
.game-row img {
  width: 98px;
  height: 98px;
  object-fit: contain;
  padding: 0.7rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(238, 243, 251, 0.08);
}
.games-map {
  padding: 3rem 0 0;
  border-top: 1px solid var(--games-line);
}
.games-map-head {
  display: grid;
  gap: 0.9rem;
  max-width: 62rem;
}
.games-map-head h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 3.8rem;
  line-height: 0.95;
  letter-spacing: 0;
}
.games-map-head p:last-child {
  margin: 0;
  color: var(--games-muted);
  line-height: 1.72;
}
.games-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.games-cluster {
  position: relative;
  display: grid;
  gap: 1.2rem;
  min-height: 19rem;
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(142, 172, 209, 0.14);
  overflow: hidden;
}
.games-cluster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 100%);
  pointer-events: none;
}
.games-cluster > * {
  position: relative;
  z-index: 1;
}
.games-cluster-puzzles {
  background:
    radial-gradient(circle at top right, rgba(203, 124, 73, 0.22), transparent 16rem),
    linear-gradient(180deg, rgba(66, 37, 26, 0.86), rgba(26, 20, 22, 0.9));
}
.games-cluster-strategy {
  background:
    radial-gradient(circle at top right, rgba(155, 185, 221, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(18, 28, 48, 0.9), rgba(14, 19, 34, 0.92));
}
.games-cluster-arcade {
  background:
    radial-gradient(circle at top right, rgba(47, 182, 125, 0.2), transparent 16rem),
    linear-gradient(180deg, rgba(14, 43, 58, 0.9), rgba(10, 22, 33, 0.92));
}
.games-cluster-learning {
  background:
    radial-gradient(circle at top right, rgba(126, 121, 221, 0.16), transparent 16rem),
    linear-gradient(180deg, rgba(26, 26, 46, 0.9), rgba(18, 20, 34, 0.92));
}
.games-cluster-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: rgba(238, 243, 251, 0.76);
}
.games-cluster h3 {
  margin: 0;
  max-width: 14ch;
  font-family: "Newsreader", serif;
  font-size: 2.45rem;
  line-height: 0.98;
  letter-spacing: 0;
}
.games-cluster-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: flex-start;
}
.games-cluster-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.4rem;
  padding: 0.45rem 1rem 0.45rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 20, 0.28);
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.games-cluster-link:hover,
.games-cluster-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(155, 185, 221, 0.34);
  background: rgba(8, 12, 20, 0.4);
}
.games-cluster-link img {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  padding: 0.16rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.games-cluster-link span {
  font-size: 0.98rem;
}
.games-map-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}
.games-footer {
  display: grid;
  gap: 1rem;
  padding: 0 0 3rem;
}

.games-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1.4rem;
}

.games-footer-links a {
  color: var(--games-muted);
}

.games-footer-links a:hover,
.games-footer-links a:focus-visible {
  color: var(--games-text);
}

.games-footer p {
  margin: 0;
  text-align: center;
}
@media (max-width: 980px) {
  .games-strip, .games-mosaic, .games-map-grid { grid-template-columns: 1fr; }
  .games-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2.8rem 0 1.8rem;
  }
  .games-hero-copy {
    max-width: 100%;
  }
  .games-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: 3.1rem;
  }
  .games-featured {
    min-height: auto;
  }
  .games-section-head h2,
  .games-map-head h2 {
    font-size: 3rem;
  }
  .games-cluster h3 {
    max-width: none;
    font-size: 2.15rem;
  }
}
@media (max-width: 760px) {
  .games-menu-toggle { display: inline-flex; }
  .games-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    padding: 0.8rem;
    border-radius: 24px;
    background: rgba(17, 18, 24, 0.96);
    border: 1px solid var(--games-line);
  }
  .games-nav.is-open { display: flex; }
  .games-nav a { padding: 0.75rem 0.9rem; border-radius: 16px; }
  .games-hero { min-height: auto; }
  .games-hero h1 {
    font-size: 2.35rem;
  }
  .games-featured {
    padding: 1rem;
    border-radius: 22px;
  }
  .games-map {
    padding-top: 2.4rem;
  }
  .games-featured-copy h2,
  .games-section-head h2,
  .games-map-head h2 {
    font-size: 2.35rem;
  }
  .games-featured-media {
    gap: 0.55rem;
    min-height: 16rem;
  }
  .featured-phone {
    width: min(8.3rem, 100%);
  }
  .featured-phone-back {
    transform: none;
  }
  .mosaic-item a {
    grid-template-rows: 18rem auto;
  }
  .mosaic-media {
    min-height: 18rem;
  }
  .mosaic-clean {
    min-height: 20rem;
  }
  .phone-stack img {
    width: min(5.9rem, 30%);
    max-height: 16.7rem;
  }
  .phone-stack img:nth-child(2) {
    width: min(6.6rem, 34%);
  }
  .game-shot-phone {
    height: 15.5rem;
  }
  .mosaic-copy h3,
  .game-row h3,
  .games-cluster h3 {
    font-size: 1.85rem;
  }
  .games-cluster {
    min-height: auto;
    padding: 1.2rem;
  }
  .games-map-actions,
  .games-footer-links {
    display: grid;
    justify-content: stretch;
  }
  .games-button {
    width: 100%;
  }
  .game-row { grid-template-columns: 1fr; }
}
@media (max-width: 1080px) {
  .game-card,
  .game-card-featured,
  .game-card-multiplicatron,
  .game-card-paises {
    grid-column: span 6;
  }
  .game-card-featured .game-card-link {
    grid-template-columns: 1fr;
  }
  .game-card-featured .game-card-media {
    min-height: 25rem;
  }
  .game-card-featured .game-card-body {
    padding-top: 0;
  }
}
@media (max-width: 760px) {
  .games-section-head > p:not(.games-kicker) {
    font-size: 1rem;
  }
  .games-catalog-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .game-card,
  .game-card-featured,
  .game-card-multiplicatron,
  .game-card-paises {
    grid-column: 1 / -1;
  }
  .game-card-media,
  .game-card-featured .game-card-media {
    min-height: 0;
  }
  .game-card-topline {
    display: grid;
    justify-content: start;
  }
  .game-card h3 {
    font-size: 2.25rem;
  }
  .catalog-phone-row {
    padding: 0.35rem;
  }
  .catalog-phone,
  .catalog-phone-row-duo .catalog-phone {
    max-height: 16.25rem;
  }
  .catalog-phone-row-overlap .catalog-phone {
    width: min(6.5rem, 33%);
  }
  .catalog-phone-row-overlap .catalog-phone:nth-child(2) {
    width: min(7.4rem, 38%);
  }
  .catalog-square-shot {
    width: min(15rem, 82%);
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
