/* VirtuMate — каталог сюжетов /games */

.games-main {
  padding: 32px 0 64px;
}

.games-page-head {
  text-align: left;
  max-width: 760px;
  margin: 0 0 28px;
}

.games-page-head__kicker {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-muted, #a0a0a0);
}

.games-page-head__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #f4f4f5;
}

.games-page-head__lead {
  margin: 0;
  max-width: 40em;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(229, 229, 229, 0.78);
}

.games-featured-wrap {
  margin-bottom: 36px;
}

.games-slider {
  position: relative;
  outline: none;
}

.games-slider__viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.games-slider__slide,
.games-slider__slide .games-card,
.games-slider__slide .games-card__visual,
.games-slider__slide .games-card__banner,
.games-slider__slide .games-card__body {
  touch-action: pan-y;
}

.games-slider__track {
  display: flex;
  transition: transform 0.42s ease;
}

.games-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}

.games-slider__slide .games-card:hover {
  transform: none;
}

.games-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 10, 14, 0.5);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
}

.games-slider__arrow:hover {
  background: rgba(10, 10, 14, 0.72);
}

.games-slider__arrow.is-prev {
  left: 12px;
}

.games-slider__arrow.is-next {
  right: 12px;
}

@media (max-width: 760px) {
  .games-slider__arrow {
    width: 36px;
    height: 36px;
    background: rgba(10, 10, 14, 0.62);
  }
}

.games-slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
}

.games-slider__dot {
  width: 8px;
  height: 8px;
  padding: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  background-clip: content-box;
  cursor: pointer;
}

.games-slider__dot.is-active {
  width: 22px;
  background: #fff;
}

.games-card--tone-norse.has-cover .games-card__photo--cover {
  object-position: 68% 36%;
}

.games-card--tone-night.has-cover .games-card__photo--cover {
  object-position: 62% 28%;
}

.games-card--tone-yard.has-cover .games-card__photo--cover {
  object-position: 70% 22%;
}

.games-card--tone-ilissos.has-cover .games-card__photo--cover {
  object-position: 72% 28%;
}

.games-card--tone-thirst.has-cover .games-card__photo--cover {
  object-position: 68% 24%;
}

.games-card--tone-obsession.has-cover .games-card__photo--cover {
  object-position: 78% 22%;
}

.games-card--tone-island.has-cover .games-card__photo--cover {
  object-position: 62% 28%;
}

.games-card--tone-prince.has-cover .games-card__photo--cover {
  object-position: 72% 22%;
}

.games-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(155deg, rgba(32, 32, 34, 0.96), rgba(18, 18, 20, 0.98));
  color: inherit;
  text-decoration: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.games-card:hover {
  border-color: rgba(6, 182, 212, 0.32);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  transform: translateY(-2px);
  color: inherit;
}

.games-card.is-soon {
  cursor: default;
  opacity: 0.96;
}

.games-card.is-soon:hover {
  transform: none;
}

.games-card__visual {
  position: relative;
  overflow: hidden;
  min-height: 168px;
}

.games-card--featured .games-card__visual {
  width: 100%;
  min-height: 0;
  aspect-ratio: 21 / 9;
  background: #0b0b10;
}

.games-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  display: block;
  pointer-events: none;
}

.games-card__photo--ava {
  display: none;
}

.games-card--featured.has-cover .games-card__photo--cover {
  inset: 0;
  width: 100%;
  object-fit: cover;
  object-position: 58% 30%;
}

.games-card--featured.has-cover .games-card__glyph {
  display: none;
}

.games-card.has-cover:not(.games-card--featured) .games-card__visual {
  min-height: 0;
  aspect-ratio: 3 / 4;
  background: #0b0b10;
}

.games-card.has-cover:not(.games-card--featured) .games-card__photo {
  object-fit: cover;
  object-position: center 16%;
}

.games-card.has-cover:not(.games-card--featured) .games-card__glyph {
  display: none;
}

.games-card__art {
  position: absolute;
  inset: 0;
}

.games-card__art::before,
.games-card__art::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.games-card__art::after {
  background:
    radial-gradient(ellipse 70% 55% at 78% 18%, rgba(255, 255, 255, 0.14), transparent 55%),
    linear-gradient(180deg, transparent 28%, rgba(8, 8, 10, 0.55) 72%, rgba(8, 8, 10, 0.92) 100%);
}

.games-card--tone-angel .games-card__art {
  background:
    radial-gradient(ellipse 80% 70% at 20% 80%, rgba(236, 72, 153, 0.28), transparent 50%),
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(250, 204, 21, 0.22), transparent 48%),
    linear-gradient(145deg, #1a1428 0%, #0f172a 42%, #1e1b4b 100%);
}

.games-card--tone-yard .games-card__art {
  background:
    radial-gradient(ellipse 70% 55% at 78% 22%, rgba(251, 146, 60, 0.28), transparent 50%),
    radial-gradient(ellipse 80% 70% at 12% 88%, rgba(15, 118, 110, 0.22), transparent 52%),
    linear-gradient(150deg, #140c08, #1c1910 55%, #0f172a);
}

.games-card--tone-ilissos .games-card__art {
  background:
    radial-gradient(ellipse 70% 55% at 80% 20%, rgba(186, 230, 253, 0.22), transparent 50%),
    radial-gradient(ellipse 80% 70% at 12% 88%, rgba(125, 211, 252, 0.16), transparent 52%),
    linear-gradient(150deg, #0c1220, #1e293b 55%, #0f172a);
}

.games-card--tone-thirst .games-card__art {
  background:
    radial-gradient(ellipse 70% 55% at 78% 18%, rgba(248, 113, 113, 0.22), transparent 50%),
    radial-gradient(ellipse 80% 70% at 12% 88%, rgba(30, 41, 59, 0.45), transparent 52%),
    linear-gradient(150deg, #0a0608, #1c1014 55%, #0f0a0c);
}

.games-card--tone-obsession .games-card__art {
  background:
    radial-gradient(ellipse 70% 55% at 80% 18%, rgba(190, 24, 93, 0.28), transparent 50%),
    radial-gradient(ellipse 80% 70% at 12% 88%, rgba(127, 29, 29, 0.22), transparent 52%),
    linear-gradient(150deg, #14080c, #1c1014 55%, #0a0608);
}

.games-card--tone-island .games-card__art {
  background:
    radial-gradient(ellipse 70% 55% at 78% 20%, rgba(45, 212, 191, 0.22), transparent 50%),
    radial-gradient(ellipse 80% 70% at 12% 88%, rgba(14, 116, 144, 0.28), transparent 52%),
    linear-gradient(150deg, #082f49, #134e4a 55%, #0c4a6e);
}

.games-card--tone-prince .games-card__art {
  background:
    radial-gradient(ellipse 70% 55% at 80% 18%, rgba(252, 211, 77, 0.22), transparent 50%),
    radial-gradient(ellipse 80% 70% at 12% 88%, rgba(148, 163, 184, 0.2), transparent 52%),
    linear-gradient(150deg, #1c1917, #292524 55%, #44403c);
}

.games-card__glyph {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  backdrop-filter: blur(8px);
}

.games-card--featured .games-card__glyph {
  width: 64px;
  height: 64px;
  font-size: 24px;
  right: 28px;
  top: 28px;
}

.games-card__badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(15, 14, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.games-card--featured .games-card__badge {
  left: 22px;
  top: 22px;
}

.games-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px 18px;
  flex: 1;
}

.games-card--featured {
  cursor: pointer;
}

.games-card--featured .games-card__banner {
  position: absolute;
  inset: 0;
  z-index: 2;
  -webkit-user-drag: none;
  user-select: none;
}

.games-card--featured .games-card__body {
  pointer-events: none;
}

.games-card--featured .games-card__more {
  pointer-events: auto;
  position: relative;
  z-index: 3;
}

.games-card--featured .games-card__play {
  position: absolute;
  top: auto;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  min-height: 42px;
  padding: 0 20px;
  font-size: 13px;
  text-decoration: none;
}

.games-card--featured .games-card__kicker {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 14px;
}

.games-card--featured .games-card__more {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  text-shadow: none;
}

.games-card--featured .games-card__more:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.games-card--featured .games-card__body {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  z-index: 2;
  width: min(48%, 520px);
  padding: 24px 20px 22px 26px;
  background: none;
}

.games-card--featured.has-cover .games-card__body {
  width: min(48%, 520px);
  max-width: none;
  padding: 24px 20px 22px 26px;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.games-card--featured.has-cover .games-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 90% 110% at 8% 100%,
    rgba(6, 6, 10, 0.72) 0%,
    rgba(6, 6, 10, 0.28) 46%,
    transparent 72%
  );
}

.games-card--featured.has-cover .games-card__title,
.games-card--featured.has-cover .games-card__desc {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.games-card__kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-a, #06b6d4);
}

.games-card__title {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.games-card--featured .games-card__title {
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
}

.games-card__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.games-card--featured.has-cover .games-card__title {
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
}

.games-card--featured.has-cover .games-card__desc {
  max-width: none;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.games-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.games-card__tag {
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.games-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: auto;
  padding-top: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.games-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.games-card__meta i {
  opacity: 0.7;
  font-size: 12px;
}

.games-feed-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 16px;
}

.games-feed-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.games-feed-count {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (min-width: 1100px) {
  .games-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .games-grid {
    grid-template-columns: 1fr;
  }

  .games-card--featured .games-card__visual {
    aspect-ratio: 3 / 4;
  }

  .games-card--featured .games-card__photo--cover {
    display: none;
  }

  .games-card--featured .games-card__photo--ava {
    display: block;
    object-fit: cover;
    object-position: center 14%;
  }

  .games-card--featured.has-cover .games-card__photo--cover {
    display: none;
  }

  .games-card--featured.has-cover .games-card__visual::after {
    background: linear-gradient(180deg, transparent 48%, rgba(8, 8, 10, 0.78) 100%);
  }

  .games-card--featured .games-card__play {
    top: 16px;
    right: 16px;
    bottom: auto;
  }

  .games-card--featured .games-card__body,
  .games-card--featured.has-cover .games-card__body {
    width: auto;
    max-width: none;
    left: 0;
    right: 0;
    padding: 18px 18px 16px;
  }

  .games-card--tone-norse.has-cover .games-card__photo--ava {
    object-position: center 12%;
  }

  .games-card--tone-night.has-cover .games-card__photo--ava {
    object-position: center 18%;
  }

  .games-card--tone-yard.has-cover .games-card__photo--ava {
    object-position: center 14%;
  }

  .games-card--tone-ilissos.has-cover .games-card__photo--ava {
    object-position: center 16%;
  }

  .games-card--tone-thirst.has-cover .games-card__photo--ava {
    object-position: center 18%;
  }

  .games-card--tone-obsession.has-cover .games-card__photo--ava {
    object-position: center 16%;
  }

  .games-card--tone-island.has-cover .games-card__photo--ava {
    object-position: center 18%;
  }

  .games-card--tone-prince.has-cover .games-card__photo--ava {
    object-position: center 16%;
  }
}

/* --- Story landing /games/:id --- */
.game-detail-main {
  padding: 28px 0 56px;
}

.game-detail-not-found {
  text-align: center;
  padding: 48px 16px;
}

.game-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.game-detail__back:hover {
  color: #fff;
}

.game-detail__hero {
  position: relative;
  overflow: hidden;
  min-height: min(48vw, 380px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.game-detail__art {
  position: absolute;
  inset: 0;
}

.game-detail--tone-angel .game-detail__art {
  background:
    radial-gradient(ellipse 80% 70% at 20% 80%, rgba(236, 72, 153, 0.28), transparent 50%),
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(250, 204, 21, 0.22), transparent 48%),
    linear-gradient(145deg, #1a1428 0%, #0f172a 42%, #1e1b4b 100%);
}

.game-detail--tone-norse .game-detail__art {
  background:
    radial-gradient(ellipse 70% 60% at 78% 30%, rgba(251, 191, 36, 0.22), transparent 52%),
    radial-gradient(ellipse 80% 70% at 12% 88%, rgba(14, 116, 144, 0.28), transparent 50%),
    linear-gradient(145deg, #0c1220 0%, #1c1917 48%, #172554 100%);
}

.game-detail--tone-night .game-detail__art {
  background:
    radial-gradient(ellipse 70% 55% at 82% 22%, rgba(147, 197, 253, 0.18), transparent 50%),
    radial-gradient(ellipse 80% 70% at 12% 88%, rgba(30, 41, 59, 0.4), transparent 52%),
    linear-gradient(145deg, #0b1020 0%, #111827 48%, #1e1b4b 100%);
}

.game-detail--tone-yard .game-detail__art {
  background:
    radial-gradient(ellipse 70% 55% at 80% 24%, rgba(251, 146, 60, 0.22), transparent 50%),
    radial-gradient(ellipse 80% 70% at 12% 88%, rgba(15, 23, 42, 0.45), transparent 52%),
    linear-gradient(145deg, #140c08 0%, #1c1910 48%, #0f172a 100%);
}

.game-detail--tone-ilissos .game-detail__art {
  background:
    radial-gradient(ellipse 70% 55% at 82% 18%, rgba(186, 230, 253, 0.2), transparent 50%),
    radial-gradient(ellipse 80% 70% at 12% 88%, rgba(30, 41, 59, 0.4), transparent 52%),
    linear-gradient(145deg, #0c1220 0%, #1e293b 48%, #0f172a 100%);
}

.game-detail--tone-thirst .game-detail__art {
  background:
    radial-gradient(ellipse 70% 55% at 80% 20%, rgba(248, 113, 113, 0.18), transparent 50%),
    radial-gradient(ellipse 80% 70% at 12% 88%, rgba(15, 23, 42, 0.5), transparent 52%),
    linear-gradient(145deg, #0a0608 0%, #1c1014 48%, #0f0a0c 100%);
}

.game-detail--tone-obsession .game-detail__art {
  background:
    radial-gradient(ellipse 70% 55% at 82% 18%, rgba(190, 24, 93, 0.22), transparent 50%),
    radial-gradient(ellipse 80% 70% at 12% 88%, rgba(15, 23, 42, 0.5), transparent 52%),
    linear-gradient(145deg, #14080c 0%, #1c1014 48%, #0a0608 100%);
}

.game-detail--tone-island .game-detail__art {
  background:
    radial-gradient(ellipse 70% 55% at 80% 22%, rgba(45, 212, 191, 0.18), transparent 50%),
    radial-gradient(ellipse 80% 70% at 12% 88%, rgba(14, 116, 144, 0.32), transparent 52%),
    linear-gradient(145deg, #082f49 0%, #134e4a 48%, #0c4a6e 100%);
}

.game-detail--tone-prince .game-detail__art {
  background:
    radial-gradient(ellipse 70% 55% at 82% 18%, rgba(252, 211, 77, 0.18), transparent 50%),
    radial-gradient(ellipse 80% 70% at 12% 88%, rgba(68, 64, 60, 0.4), transparent 52%),
    linear-gradient(145deg, #1c1917 0%, #292524 48%, #44403c 100%);
}

.game-detail__art-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 32%;
}

.game-detail--tone-norse .game-detail__art-photo {
  object-position: 68% 36%;
}

.game-detail--tone-night .game-detail__art-photo {
  object-position: 62% 28%;
}

.game-detail--tone-yard .game-detail__art-photo {
  object-position: 70% 22%;
}

.game-detail--tone-ilissos .game-detail__art-photo {
  object-position: 72% 28%;
}

.game-detail--tone-thirst .game-detail__art-photo {
  object-position: 68% 24%;
}

.game-detail--tone-obsession .game-detail__art-photo {
  object-position: 78% 22%;
}

.game-detail--tone-island .game-detail__art-photo {
  object-position: 62% 28%;
}

.game-detail--tone-prince .game-detail__art-photo {
  object-position: 72% 22%;
}

.game-detail__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 78% 18%, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(180deg, transparent 22%, rgba(8, 8, 10, 0.55) 68%, rgba(8, 8, 10, 0.94) 100%);
}

.game-detail__hero-copy {
  position: relative;
  z-index: 1;
  padding: 28px 28px 24px;
  margin-top: min(18vw, 140px);
}

.game-detail__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-a, #06b6d4);
}

.game-detail__title {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.game-detail__lead {
  margin: 0 0 14px;
  max-width: 44rem;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.game-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.game-detail__duration {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.game-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 360px);
  gap: 22px;
  margin-bottom: 36px;
  align-items: start;
}

.game-detail__story {
  display: grid;
  gap: 14px;
}

.game-detail__story > section {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 20, 0.88);
}

.game-detail__story h2 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c4b5fd;
}

.game-detail__story p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

/* One brief plane: player → role → goal strip */
.game-brief {
  display: grid;
  gap: 0;
  padding: 4px 4px 8px;
}

.game-brief__field {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
}

.game-brief__field--player {
  padding-bottom: 14px;
}

.game-brief__field--role {
  padding-top: 14px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.game-brief .game-brief__label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.92);
}

.game-brief .game-brief__text {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.game-brief .game-brief__text--lead,
.game-brief .game-brief__text--goal {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.game-brief__goal {
  margin: 4px 10px 8px;
  padding: 12px 14px;
  display: grid;
  gap: 5px;
  border-radius: 12px;
  border: 1px solid rgba(167, 139, 250, 0.28);
  background:
    linear-gradient(90deg, rgba(124, 58, 237, 0.16), rgba(124, 58, 237, 0.06));
}

.game-detail__story > .game-detail__endings {
  padding: 16px 18px;
}

.game-detail__story > .game-how {
  padding: 18px 20px;
}

.game-how__title {
  margin: 0 0 8px;
}

.game-how__lead {
  margin: 0 0 16px !important;
  font-size: 15px !important;
  font-weight: 400;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.86) !important;
}

.game-how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.game-how__step {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.game-how__step:first-child {
  border-top: 0;
  padding-top: 0;
}

.game-how__step:last-child {
  padding-bottom: 0;
}

.game-how__n {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(233, 213, 255, 0.9);
  background: rgba(124, 58, 237, 0.16);
  border: 1px solid rgba(167, 139, 250, 0.28);
  font-variant-numeric: tabular-nums;
}

.game-how__body {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding-top: 3px;
}

.game-how__step-title {
  margin: 0 !important;
  font-size: 15px !important;
  font-weight: 600;
  line-height: 1.35 !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

.game-how__step-text {
  margin: 0 !important;
  font-size: 15px !important;
  font-weight: 400;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

.game-how__note {
  margin: 14px 0 0 !important;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 15px !important;
  font-weight: 400;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

.game-detail__endings-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.game-detail__endings-intro {
  min-width: 0;
  flex: 1;
}

.game-detail__endings-head h2 {
  margin: 0 0 6px;
}

.game-detail__endings-lead {
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  color: rgba(255, 255, 255, 0.58) !important;
}

.game-detail__endings-meter {
  flex: 0 0 auto;
  min-width: 88px;
  display: grid;
  gap: 8px;
  justify-items: end;
  padding-top: 2px;
}

.game-detail__endings-progress {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(196, 181, 253, 0.75);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.game-detail__endings-progress-num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #e9d5ff;
}

.game-detail__endings-progress-sep {
  opacity: 0.55;
  margin: 0 1px;
}

.game-detail__endings-bar {
  width: 88px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.game-detail__endings-bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(167, 139, 250, 0.55), rgba(233, 213, 255, 0.95));
  transition: width 0.35s ease;
}

.game-detail__endings-status {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.game-detail__endings-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.game-ending {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 72px;
  padding: 12px 12px 12px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 42%),
    rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.game-ending::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.game-ending.is-open {
  border-color: rgba(196, 181, 253, 0.32);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.18), transparent 50%),
    rgba(18, 12, 28, 0.55);
}

.game-ending.is-open::before {
  background: linear-gradient(180deg, #c4b5fd, #7c3aed);
}

.game-ending.is-locked {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}

.game-ending.is-locked::before {
  background: rgba(255, 255, 255, 0.08);
}

.game-ending__index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.35);
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
}

.game-ending.is-open .game-ending__index {
  color: rgba(196, 181, 253, 0.85);
}

.game-ending__body {
  min-width: 0;
  display: grid;
  gap: 8px;
  align-content: space-between;
  min-height: 48px;
}

.game-ending__title {
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92) !important;
}

.game-ending.is-locked .game-ending__title {
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.42) !important;
}

.game-ending__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.game-ending__icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 9px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
}

.game-ending.is-open .game-ending__icon {
  color: #e9d5ff;
  background: rgba(167, 139, 250, 0.22);
}

.game-ending__badge {
  display: inline-flex;
  width: fit-content;
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
}

.game-ending.is-open .game-ending__badge {
  border-color: rgba(196, 181, 253, 0.4);
  color: #e9d5ff;
  background: rgba(124, 58, 237, 0.18);
}

.game-detail__aside {
  position: sticky;
  top: 88px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 18, 20, 0.94);
}

.game-detail__aside-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-a, #06b6d4);
}

.game-detail__hero-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.game-detail__hero-photo {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #121214;
  aspect-ratio: 3 / 4;
}

.game-detail__hero-card img,
.game-detail__hero-card .game-portrait {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 12%;
  border: 0;
  border-radius: 0;
}

.game-detail__hero-card .game-portrait {
  display: grid;
  place-items: center;
  min-height: 100%;
  font-size: 42px;
  color: rgba(255, 255, 255, 0.7);
}

.game-detail__hero-info {
  min-width: 0;
}

.game-detail__hero-name {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.game-detail__hero-vibe {
  margin: 6px 0 10px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

.game-detail__price {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.game-detail__price.is-free {
  color: #67e8f9;
  background: rgba(6, 182, 212, 0.14);
}

.game-detail__price.is-paid {
  color: #f9a8d4;
  background: rgba(236, 72, 153, 0.14);
}

.game-detail__cta {
  width: 100%;
  justify-content: center;
}

.game-detail__cta + .game-detail__cta {
  margin-top: 8px;
}

.game-detail__cta:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.game-detail__cta-note {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

body.is-cast-waiting {
  overflow: hidden;
}

.game-cast-wait {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 7, 6, 0.78);
  backdrop-filter: blur(6px);
}

.game-cast-wait[hidden] {
  display: none !important;
}

.game-cast-wait__card {
  width: min(100%, 360px);
  padding: 28px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, #1a1714 0%, #0f0e0d 100%);
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.game-cast-wait__spinner {
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: #5eead4;
  animation: game-cast-spin 0.9s linear infinite;
}

@keyframes game-cast-spin {
  to {
    transform: rotate(360deg);
  }
}

.game-cast-wait__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 650;
  color: #fff;
}

.game-cast-wait__lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.game-cast-wait__warn {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: #f0c4a0;
}

.game-detail__cast-btn {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}

.game-detail__cast-reset {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.game-detail__cast-reset:hover {
  color: #fff;
}

.game-cast {
  margin: 0 0 16px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 18, 20, 0.94);
}

.game-cast__title {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 800;
}

.game-cast__lead {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
}

.game-cast__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 12px;
}

.game-cast__tile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.game-cast__tile:hover {
  border-color: rgba(167, 139, 250, 0.4);
  transform: translateY(-2px);
}

.game-cast__tile.is-selected {
  border-color: rgba(103, 232, 249, 0.7);
  background: rgba(6, 182, 212, 0.1);
  box-shadow: 0 0 0 1px rgba(103, 232, 249, 0.25);
}

.game-portrait {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(250, 204, 21, 0.22), transparent 50%),
    linear-gradient(145deg, #1a1428, #1e1b4b);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15em;
}

.game-cast__tile img,
.game-cast__tile .game-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  object-position: 50% 12%;
  display: block;
  background: #121214;
}

.game-cast__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 11px 12px;
}

.game-cast__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.95);
}

.game-cast__badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.55);
}

.game-cast__tile.is-default .game-cast__badge {
  color: #67e8f9;
}

.game-cast__tile:not(.is-default) .game-cast__badge {
  color: rgba(233, 213, 255, 0.88);
}

@media (max-width: 720px) {
  .game-cast__grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
  }

  .game-cast__name {
    font-size: 13px;
  }
}

.game-seo {
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 860px;
}

.game-seo__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.92);
}

.game-seo__title,
.game-seo__h {
  scroll-margin-top: 88px;
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #f4f4f5;
}

.game-seo__h {
  margin-top: 0;
  font-size: clamp(18px, 2.4vw, 22px);
}

.game-seo__intro,
.game-seo__text {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.game-seo__intro {
  max-width: 42rem;
}

.game-seo a {
  color: #c4b5fd;
  text-decoration: none;
}

.game-seo a:hover {
  color: #e9d5ff;
  text-decoration: underline;
}

.game-seo__toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
}

.game-seo__toc a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.game-seo__toc a:hover {
  border-color: rgba(196, 181, 253, 0.35);
  background: rgba(124, 58, 237, 0.12);
  color: #e9d5ff;
  text-decoration: none;
}

.game-seo__block {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 20, 0.88);
}

.game-seo__compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.game-seo__compare-card {
  padding: 14px 14px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.game-seo__compare-card.is-plot {
  border-color: rgba(167, 139, 250, 0.28);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.16), transparent 55%),
    rgba(18, 12, 28, 0.45);
}

.game-seo__compare-label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.85);
}

.game-seo__compare-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}

.game-seo__steps {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.game-seo__step {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.game-seo__step:first-child {
  border-top: 0;
  padding-top: 0;
}

.game-seo__step:last-child {
  padding-bottom: 0;
}

.game-seo__n {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(233, 213, 255, 0.9);
  background: rgba(124, 58, 237, 0.16);
  border: 1px solid rgba(167, 139, 250, 0.28);
  font-variant-numeric: tabular-nums;
}

.game-seo__step-body {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding-top: 3px;
}

.game-seo__step-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
}

.game-seo__step-text {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.game-seo__faq .faq-list {
  margin: 12px 0 0;
  max-width: none;
}

.game-seo__note {
  margin: 22px 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

.game-seo__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

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

  .game-seo__block {
    padding: 16px 14px;
  }

  .games-seo__table thead {
    display: none;
  }

  .games-seo__table,
  .games-seo__table tbody,
  .games-seo__table tr,
  .games-seo__table th,
  .games-seo__table td {
    display: block;
    width: 100%;
  }

  .games-seo__table tr {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .games-seo__table tbody th,
  .games-seo__table tbody td {
    padding: 4px 14px;
    border: 0;
    width: auto;
  }

  .games-seo__table tbody td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 2px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(229, 229, 229, 0.45);
  }
}

.games-seo {
  margin: 56px auto 0;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 860px;
}

.games-seo__title,
.games-seo__h,
.games-seo__faq-head .games-seo__h {
  scroll-margin-top: 88px;
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #f4f4f5;
}

.games-seo__h {
  margin-top: 36px;
}

.games-seo__prose,
.games-seo__lead {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(229, 229, 229, 0.78);
}

.games-seo__prose p {
  margin: 0 0 12px;
}

.games-seo__prose p:last-child {
  margin-bottom: 0;
}

.games-seo__prose a,
.games-seo__lead a,
.games-seo .faq-item__answer a {
  color: var(--brand-a, #06b6d4);
  text-decoration: none;
}

.games-seo__prose a:hover,
.games-seo__lead a:hover,
.games-seo .faq-item__answer a:hover {
  text-decoration: underline;
}

.games-seo__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.games-seo__cta .btn {
  min-height: 48px;
  padding: 12px 22px;
  text-decoration: none;
}

.games-seo__cta .btn:hover {
  text-decoration: none;
}

.games-seo__cta .btn-primary {
  color: #fff;
}

.games-seo__cta .btn-primary:hover {
  color: #fff;
}

.games-seo__cta .btn-secondary {
  color: #f4f4f5;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.games-seo__cta .btn-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.games-seo__toc {
  margin: 24px 0 8px;
  padding: 18px 20px;
  border-radius: var(--radius-lg, 16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.games-seo__toc-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(229, 229, 229, 0.5);
}

.games-seo__toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  counter-reset: games-seo-toc;
}

.games-seo__toc li {
  counter-increment: games-seo-toc;
}

.games-seo__toc a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #e4e4e7;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.games-seo__toc a::before {
  content: counter(games-seo-toc, decimal-leading-zero);
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand-a, #06b6d4);
}

.games-seo__compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 8px 0 8px;
}

.games-seo__pane {
  margin: 0;
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg, 16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.games-seo__pane--plot {
  border-color: rgba(6, 182, 212, 0.28);
  background: rgba(6, 182, 212, 0.06);
}

.games-seo__pane-title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f4f4f5;
}

.games-seo__pane-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.games-seo__pane-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(229, 229, 229, 0.78);
}

.games-seo__pane-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(229, 229, 229, 0.35);
}

.games-seo__pane--plot .games-seo__pane-list li::before {
  background: var(--brand-a, #06b6d4);
}

@media (max-width: 720px) {
  .games-seo__compare {
    grid-template-columns: 1fr;
  }
}

.games-seo__table-wrap {
  overflow-x: auto;
  margin: 8px 0 8px;
  border-radius: var(--radius-lg, 16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.games-seo__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.45;
}

.games-seo__table th,
.games-seo__table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.games-seo__table thead th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(229, 229, 229, 0.55);
  background: rgba(255, 255, 255, 0.03);
}

.games-seo__table tbody th {
  font-weight: 600;
  color: #f4f4f5;
  width: 28%;
}

.games-seo__table td {
  color: rgba(229, 229, 229, 0.78);
}

.games-seo__table tbody tr:last-child th,
.games-seo__table tbody tr:last-child td {
  border-bottom: 0;
}

.games-seo__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: games-seo-step;
}

.games-seo__steps li {
  counter-increment: games-seo-step;
  position: relative;
  padding: 16px 18px 16px 56px;
  border-radius: var(--radius-lg, 16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.games-seo__steps li::before {
  content: counter(games-seo-step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(6, 182, 212, 0.22);
  border: 1px solid rgba(6, 182, 212, 0.35);
}

.games-seo__step-title {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.games-seo__steps p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(229, 229, 229, 0.72);
}

.games-seo__uses {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.games-seo__uses li {
  position: relative;
  padding: 12px 16px 12px 32px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(229, 229, 229, 0.78);
}

.games-seo__uses li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 20px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-a, #06b6d4);
}

.games-seo__faq {
  margin-top: 12px;
}

.games-seo__faq .faq-list {
  margin: 0;
  max-width: none;
}

.games-seo__note {
  margin: 28px 0 18px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(229, 229, 229, 0.45);
}

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

  .game-detail__aside {
    position: static;
    max-width: 360px;
  }

  .game-detail__hero-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .game-detail__hero-copy {
    padding: 20px 18px 18px;
    margin-top: 120px;
  }

  .game-detail__story {
    gap: 12px;
  }

  .game-brief {
    padding: 2px 2px 6px;
  }

  .game-brief__field {
    padding: 14px 14px;
  }

  .game-brief__goal {
    margin: 2px 8px 6px;
    padding: 11px 12px;
  }

  .game-detail__story > .game-detail__endings,
  .game-detail__story > .game-how {
    padding: 14px 14px;
  }

  .game-detail__endings-head {
    flex-direction: column;
    gap: 12px;
  }

  .game-detail__endings-meter {
    justify-items: start;
    width: 100%;
  }

  .game-detail__endings-bar {
    width: 100%;
    max-width: 160px;
  }

  .game-detail__endings-list {
    grid-template-columns: 1fr;
  }
}
