@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/nunito-cyrillic-ext.woff2?v=20260520") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/nunito-cyrillic.woff2?v=20260520") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/nunito-vietnamese.woff2?v=20260520") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/nunito-latin-ext.woff2?v=20260520") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/nunito-latin.woff2?v=20260520") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --green: #212121;
  --text: #212121;
  --muted: #58606d;
  --card: #f7f9fc;
  --light: #f5f7fa;
  --white: #fff;
  --page-bg: #fff;
  --surface: #fff;
  --heading: #30333b;
  --body-text: #364050;
  --soft-border: #e7edf4;
  --chip-bg: #eef4f7;
  --input-bg: #fff;
  --primary-button-bg: #212121;
  --primary-button-text: #fff;
  --font: "Nunito", Arial, Helvetica, sans-serif;
  --body-font: "Nunito", Arial, Helvetica, sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --green: #9be000;
  --text: #f5f7fb;
  --muted: #aeb8c7;
  --card: #181d25;
  --light: #151a21;
  --page-bg: #0f1218;
  --surface: #151a21;
  --heading: #f5f7fb;
  --body-text: #c7d1de;
  --soft-border: #2a3340;
  --chip-bg: #202631;
  --input-bg: #202631;
  --primary-button-bg: #f5f7fb;
  --primary-button-text: #111318;
}

* { box-sizing: border-box; }
html.i18n-loading [data-i18n],
html.i18n-loading [data-lang-visible] {
  visibility: hidden;
}
html {
  overflow-x: hidden;
  background: var(--page-bg);
}
body {
  margin: 0;
  color: var(--text);
  background: var(--page-bg);
  font-family: var(--font);
  font-size: 16px;
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  height: 128px;
  padding-top: 40px;
  padding-bottom: 8px;
  color: #fff;
}
.header__inner {
  width: 100%;
  max-width: 1600px;
  height: 100%;
  padding: 0 160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  width: 228px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
  color: rgba(255,255,255,.9);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}
.nav a { white-space: nowrap; }
.nav a:hover,
.nav a.active { color: #fff; }
.nav a.active { font-weight: 700; }
.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: 112px;
  height: 44px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  -webkit-tap-highlight-color: transparent;
}
.lang-switch__thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc((100% - 12px) / 2);
  height: calc(100% - 8px);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  transform: translateX(0);
  will-change: transform;
  transition: transform .2s ease;
}
.lang-switch.lang-switch--ru .lang-switch__thumb {
  transform: translateX(calc(100% + 4px));
}
.lang-switch button {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,.84);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  outline: 0;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: color .2s ease;
}
.lang-switch button.active {
  color: #212121;
}
.lang-switch button:focus-visible {
  outline: 2px solid rgba(255,255,255,.72);
  outline-offset: 2px;
}
.theme-toggle {
  position: relative;
  width: 78px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}
.theme-toggle span {
  position: absolute;
  display: block;
  top: 5px;
  left: 5px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  transition: transform .2s ease, background .2s ease;
}
.theme-toggle span::before,
.theme-toggle span::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
}
.theme-toggle span::before {
  top: 11px;
  left: 11px;
  width: 12px;
  height: 12px;
  background: #212121;
  box-shadow:
    0 -7px 0 -5px #212121,
    0 7px 0 -5px #212121,
    7px 0 0 -5px #212121,
    -7px 0 0 -5px #212121,
    5px 5px 0 -5px #212121,
    -5px 5px 0 -5px #212121,
    5px -5px 0 -5px #212121,
    -5px -5px 0 -5px #212121;
}
.theme-toggle span::after {
  width: 0;
  height: 0;
}
:root[data-theme="dark"] .theme-toggle span {
  transform: translateX(34px);
}
:root[data-theme="dark"] .theme-toggle span::before {
  top: 8px;
  left: 9px;
  width: 17px;
  height: 17px;
  background: #212121;
  box-shadow: none;
}
:root[data-theme="dark"] .theme-toggle span::after {
  top: 5px;
  left: 15px;
  width: 17px;
  height: 17px;
  background: #fff;
}
.theme-toggle:focus-visible {
  outline: 4px solid rgba(155,224,0,.45);
  outline-offset: 4px;
}
.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
}
.burger::before,
.burger::after,
.burger span {
  content: "";
  display: block;
  width: 28px;
  height: 4px;
  margin: 5px 0;
  border-radius: 99px;
  background: currentColor;
}
.burger::after { width: 17px; margin-left: auto; }

.hero {
  position: relative;
  height: 640px;
  margin-bottom: 80px;
  overflow: hidden;
  border-bottom-right-radius: 36px;
  border-bottom-left-radius: 36px;
  background: #111;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.38) 44%, rgba(0,0,0,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.08) 48%, rgba(0,0,0,.5) 100%);
  transition: opacity .18s ease;
}
:root[data-theme="dark"] .hero::after {
  opacity: 1;
}
.hero > picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero > picture > img,
.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

main {
  padding-bottom: 0;
}
.games {
  width: min(1280px, 100% - 120px);
  margin: 0 auto;
}
.section-head h2 {
  margin: 0;
  color: #30333b;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}
.tags {
  display: none;
}
.tags button {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: #eef4f7;
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}
.tags button.active { background: var(--green); color: #fff; }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 400px));
  justify-content: center;
  gap: 30px;
  margin-top: 45px;
  margin-bottom: 55px;
}
.featured-card {
  min-height: 100%;
  overflow: hidden;
  border-radius: 35px;
  background: var(--card);
}
.featured-card.is-hidden,
.mini-card.is-hidden { display: none; }
.featured-card a {
  display: block;
  height: 100%;
}
.featured-card > a > img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.game-thumb {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-bottom-right-radius: 35px;
  border-bottom-left-radius: 35px;
  color: #fff;
  isolation: isolate;
}
.game-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 28%, rgba(0,0,0,.64) 100%);
}
.game-thumb__art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}
.game-thumb > picture {
  display: block;
  width: 100%;
  height: 100%;
}
.game-thumb span {
  position: absolute;
  z-index: 2;
  left: 35px;
  bottom: 28px;
  max-width: 300px;
  text-shadow: 0 8px 24px rgba(0,0,0,.35);
  font-size: 42px;
  line-height: .92;
  font-weight: 900;
  letter-spacing: 0;
}
.featured-card__body {
  padding: 30px 35px 35px;
}
.featured-card h2 {
  margin: 0 0 4px;
  color: #363942;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 500;
}
.featured-card p {
  margin: 0;
  color: #3e4652;
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.games-subtitle {
  margin: 0 0 34px;
  color: #30333b;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.mini-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 400px));
  justify-content: center;
  gap: 55px 30px;
}
.mini-card {
  max-width: 313px;
}
.mini-card__link {
  display: block;
  height: 100%;
  border-radius: 25px;
}
.mini-card__link:focus-visible {
  outline: 4px solid rgba(33,33,33,.18);
  outline-offset: 8px;
}
.mini-card__link:hover h3 {
  color: #111;
}
.mini-card__row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.mini-card__row picture {
  display: block;
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
}
.mini-card img,
.empty-icon {
  width: 100px;
  height: 100px;
  border-radius: 25px;
  object-fit: cover;
}
.empty-icon {
  display: block;
  background: #e9fffe;
}
.mini-card h3 {
  margin: 0 0 10px;
  color: #333640;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 500;
}
.mini-card p {
  margin: 0;
  color: #364050;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.game-detail {
  padding-bottom: 0;
}
.detail-hero {
  position: relative;
  min-height: 760px;
  padding: 180px 0 84px;
  overflow: hidden;
  border-bottom-right-radius: 36px;
  border-bottom-left-radius: 36px;
  background: #101820;
  color: #fff;
}
.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.38) 44%, rgba(0,0,0,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.08) 48%, rgba(0,0,0,.5) 100%);
}
.detail-hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}
body[data-game="find-a-cat"] .detail-hero,
body[data-game="find-a-cat"] .detail-hero a,
body[data-game="find-a-cat"] .detail-hero button {
  cursor: url("/assets/brand/cat-paw-cursor.svg?v=20260518-2") 15 15, pointer;
}
@media (pointer: fine) {
  body[data-game="truth-or-lie"] .detail-hero.detail-hero--truth-false,
  body[data-game="truth-or-lie"] .detail-hero.detail-hero--truth-false * {
    cursor: url("/assets/brand/truth-cursor-false.svg?v=20260519-1") 16 16, pointer;
  }
  body[data-game="truth-or-lie"] .detail-hero.detail-hero--truth-true,
  body[data-game="truth-or-lie"] .detail-hero.detail-hero--truth-true * {
    cursor: url("/assets/brand/truth-cursor-true.svg?v=20260519-1") 16 16, pointer;
  }
  body[data-game="where-logic"] .detail-hero.detail-hero--logic-letter,
  body[data-game="where-logic"] .detail-hero.detail-hero--logic-letter * {
    cursor: none;
  }
  body[data-game] .detail-hero .detail-kicker,
  body[data-game] .detail-hero .detail-kicker * {
    cursor: pointer !important;
  }
  body[data-content-page="robots"] .content-hero.content-hero--robot-bit,
  body[data-content-page="robots"] .content-hero.content-hero--robot-bit * {
    cursor: none;
  }
}
.logic-letter-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(105, 69, 13, .32);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffe872 0%, #ffd13f 52%, #f5b92d 100%);
  color: #59320f;
  box-shadow:
    inset 0 3px 0 rgba(255,255,255,.38),
    inset 0 -4px 0 rgba(156, 95, 8, .18),
    0 7px 16px rgba(0,0,0,.22);
  font-family: var(--font);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  text-shadow: 0 2px 0 rgba(255,255,255,.24);
  user-select: none;
  will-change: left, top;
}
.logic-letter-cursor[hidden] {
  display: none;
}
.robot-bit-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  user-select: none;
  will-change: left, top;
}
.robot-bit-cursor[hidden] {
  display: none;
}
.detail-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1280px, 100% - 120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 420px);
  align-items: end;
  justify-content: space-between;
  gap: 56px;
}
.detail-kicker {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  backdrop-filter: blur(8px);
}
.detail-title {
  max-width: 760px;
  margin: 0;
  font-size: 88px;
  font-weight: 900;
  line-height: .95;
  letter-spacing: 0;
  text-shadow: 0 12px 32px rgba(0,0,0,.28);
}
.detail-summary {
  max-width: 700px;
  margin: 28px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255,255,255,.95);
}
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: #fff;
  color: #212121;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}
.store-button:hover {
  transform: translateY(-1px);
}
.store-button--soon {
  background: #9be000;
  color: #162100;
  pointer-events: none;
}
.detail-cover {
  align-self: center;
  width: 100%;
  max-width: 360px;
  justify-self: end;
  overflow: hidden;
  border-radius: 35px;
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
}
.detail-cover picture {
  display: block;
}
.detail-cover img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.detail-content {
  width: min(980px, 100% - 120px);
  margin: 84px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.detail-copy h2,
.detail-facts h2,
.detail-update h2,
.detail-more h2 {
  margin: 0 0 22px;
  color: #30333b;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.05;
}
.detail-more h2 {
  font-size: 36px;
}
.detail-copy p {
  margin: 0;
  color: #364050;
  font-size: 22px;
  line-height: 1.5;
}
.detail-facts ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.detail-facts li {
  position: relative;
  padding-left: 26px;
  color: #364050;
  font-size: 20px;
  line-height: 1.45;
}
.detail-facts li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9be000;
}
.try-cta {
  width: min(1280px, 100% - 120px);
  margin: 44px auto 0;
  display: flex;
  justify-content: center;
}
.try-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 270px;
  min-height: 60px;
  border: 0;
  border-radius: 999px;
  background: #212121;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(33,33,33,.18);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.try-button:not(.try-button--disabled)::before {
  content: "";
  width: 14px;
  height: 18px;
  flex: 0 0 14px;
  background: currentColor;
  -webkit-mask: url("/assets/brand/action-mark.svg?v=20260517") center / contain no-repeat;
  mask: url("/assets/brand/action-mark.svg?v=20260517") center / contain no-repeat;
}
.try-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(33,33,33,.24);
}
.try-button:focus-visible {
  outline: 4px solid rgba(155,224,0,.45);
  outline-offset: 5px;
}
.try-button--disabled {
  background: #c7ced8;
  color: #fff;
  cursor: default;
  box-shadow: none;
}
.try-button--disabled:hover {
  transform: none;
  box-shadow: none;
}
.detail-update {
  width: min(980px, 100% - 120px);
  margin: 54px auto 0;
  padding: 34px 38px 36px;
  border-radius: 28px;
  background: var(--card);
}
.detail-update__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}
.detail-update h2 {
  margin-bottom: 0;
  font-size: 34px;
}
.detail-update__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.detail-update__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #fff;
  color: #364050;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}
.detail-update p {
  margin: 0;
  color: #364050;
  font-size: 19px;
  line-height: 1.55;
}
.detail-more {
  width: min(1280px, 100% - 120px);
  margin: 84px auto 0;
}
.detail-more__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.detail-more-card {
  display: block;
  overflow: hidden;
  border-radius: 28px;
  background: var(--card);
}
.detail-more-card picture {
  display: block;
}
.detail-more-card:focus-visible {
  outline: 4px solid rgba(33,33,33,.18);
  outline-offset: 8px;
}
.detail-more-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.detail-more-card span {
  display: block;
  padding: 20px 24px 24px;
  color: #30333b;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}
.detail-not-found {
  width: min(920px, 100% - 120px);
  min-height: 62vh;
  margin: 0 auto;
  padding: 180px 0 0;
}
.detail-not-found h1 {
  margin: 0 0 20px;
  font-size: 56px;
  line-height: 1.05;
}
.detail-not-found p {
  margin: 0 0 28px;
  color: #364050;
  font-size: 22px;
  line-height: 1.45;
}
.content-page {
  padding-bottom: 0;
}
.content-hero {
  position: relative;
  min-height: 640px;
  padding: 190px 0 90px;
  overflow: hidden;
  border-bottom-right-radius: 36px;
  border-bottom-left-radius: 36px;
  background: #101820;
  color: #fff;
}
.content-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.42) 48%, rgba(0,0,0,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.48) 100%);
}
.content-hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}
.content-hero__inner {
  position: relative;
  z-index: 2;
  width: min(980px, 100% - 120px);
  margin: 0 auto;
}
.content-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: 82px;
  font-weight: 900;
  line-height: .95;
  letter-spacing: 0;
  text-shadow: 0 12px 32px rgba(0,0,0,.28);
}
.content-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.94);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.35;
}
.content-body {
  width: min(1180px, 100% - 120px);
  margin: 84px auto 0;
}
.content-lead {
  width: min(920px, 100%);
}
.content-lead p {
  margin: 0;
  color: #364050;
  font-size: 24px;
  line-height: 1.5;
}
.content-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 54px;
}
.content-card {
  min-height: 100%;
  padding: 34px;
  border-radius: 28px;
  background: var(--card);
}
.content-card h2 {
  margin: 0 0 14px;
  color: #30333b;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.08;
}
.content-card p {
  margin: 0;
  color: #364050;
  font-size: 18px;
  line-height: 1.45;
}
.content-card a {
  display: inline-flex;
  margin-top: 22px;
  color: #212121;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}
.content-card a:hover {
  text-decoration: underline;
}
body[data-content-page="contacts"] .content-card a,
body[data-content-page="robots"] .content-card a {
  position: relative;
  display: inline-block;
  padding-left: 22px;
  gap: 0;
}
body[data-content-page="contacts"] .content-card a span,
body[data-content-page="robots"] .content-card a span {
  transform: none;
}
body[data-content-page="contacts"] .content-card a::before,
body[data-content-page="robots"] .content-card a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 18px;
  flex: 0 0 14px;
  margin-top: 0;
  background: currentColor;
  transform: translateY(-50%);
  -webkit-mask: url("/assets/brand/action-mark.svg?v=20260517") center / contain no-repeat;
  mask: url("/assets/brand/action-mark.svg?v=20260517") center / contain no-repeat;
}
.content-note {
  width: min(920px, 100%);
  margin-top: 64px;
}
.content-note h2 {
  margin: 0 0 18px;
  color: #30333b;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.08;
}
.content-note p {
  margin: 0;
  color: #364050;
  font-size: 22px;
  line-height: 1.5;
}
.robot-easter-egg {
  width: min(920px, 100%);
  margin-top: 34px;
  padding: 26px 30px;
  border-radius: 24px;
  background: #fff;
  color: #30333b;
  box-shadow: inset 0 0 0 2px rgba(33,33,33,.06);
}
.robot-easter-egg > strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}
.robot-easter-egg > p {
  margin: 12px 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
}
.legal-content {
  width: min(920px, 100%);
  margin-top: 54px;
  color: #364050;
}
.legal-updated {
  display: inline-flex;
  margin: 0 0 30px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--card);
  color: #30333b;
  font-size: 16px;
  font-weight: 900;
}
.legal-section {
  padding: 34px 0;
  border-top: 1px solid #e7edf4;
}
.legal-section h2 {
  margin: 0 0 16px;
  color: #30333b;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.08;
}
.legal-section p,
.legal-section li {
  color: #364050;
  font-size: 19px;
  line-height: 1.55;
}
.legal-section p {
  margin: 0 0 14px;
}
.legal-section p:last-child {
  margin-bottom: 0;
}
.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 24px;
}
.legal-section a {
  color: #212121;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.legal-links {
  list-style: none;
  padding-left: 0;
}
.contact-form {
  width: min(920px, 100%);
  margin-top: 64px;
  padding: 40px;
  border-radius: 28px;
  background: var(--card);
}
.contact-form h2 {
  margin: 0 0 28px;
  color: #30333b;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.08;
}
.contact-form label {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  color: #30333b;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}
.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: #212121;
  font: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.contact-form input,
.contact-form select {
  height: 58px;
  padding: 0 18px;
}
.contact-form select {
  padding-right: 52px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #30333b 50%),
    linear-gradient(135deg, #30333b 50%, transparent 50%);
  background-position:
    calc(100% - 28px) 50%,
    calc(100% - 22px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.contact-form textarea {
  min-height: 170px;
  resize: vertical;
  padding: 18px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline-color: rgba(33,33,33,.2);
}
.contact-form__footer {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.contact-form__status {
  margin: 0;
  color: #4b5564;
  font-size: 17px;
  line-height: 1.35;
}
.store-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0,0,0,.48);
}
.store-modal.is-open {
  display: flex;
}
.store-modal__panel {
  position: relative;
  width: min(520px, 100%);
  padding: 44px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.store-modal__panel h2 {
  margin: 0 0 12px;
  color: #30333b;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.05;
}
.store-modal__panel p {
  margin: 0 0 28px;
  color: #4b5564;
  font-size: 18px;
  line-height: 1.45;
}
.store-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f1f4f8;
  color: #212121;
  cursor: pointer;
}
.store-modal__close::before,
.store-modal__close::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 12px;
  width: 18px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}
.store-modal__close::before {
  transform: rotate(45deg);
}
.store-modal__close::after {
  transform: rotate(-45deg);
}
.store-modal__buttons {
  display: grid;
  grid-template-columns: minmax(0, 260px);
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.store-badge {
  width: 260px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: #111318;
  color: #fff;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.store-badge:hover {
  background: #181d25;
  border-color: rgba(255, 255, 255, .18);
  transform: translateY(-1px);
}
.store-badge__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff;
}
.store-badge__icon img {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
}
.store-badge__copy {
  min-width: 0;
  display: grid;
  gap: 3px;
  text-align: left;
}
.store-badge__eyebrow {
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.store-badge__name {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
}
.store-badge--apple .store-badge__icon img {
  width: 25px;
  height: 29px;
  transform: translateY(-1px);
}
.store-badge--huawei .store-badge__icon {
  background: #c7000b;
}
.store-badge--huawei .store-badge__icon img {
  width: 28px;
  height: 28px;
  transform: translateY(-2px);
}
.store-badge--rustore .store-badge__icon {
  background: #097cff;
}

:root[data-theme="dark"] .section-head h2,
:root[data-theme="dark"] .games-subtitle,
:root[data-theme="dark"] .featured-card h2,
:root[data-theme="dark"] .mini-card h3,
:root[data-theme="dark"] .detail-copy h2,
:root[data-theme="dark"] .detail-facts h2,
:root[data-theme="dark"] .detail-update h2,
:root[data-theme="dark"] .detail-more h2,
:root[data-theme="dark"] .detail-more-card span,
:root[data-theme="dark"] .detail-not-found h1,
:root[data-theme="dark"] .content-card h2,
:root[data-theme="dark"] .content-note h2,
:root[data-theme="dark"] .legal-updated,
:root[data-theme="dark"] .legal-section h2,
:root[data-theme="dark"] .contact-form h2,
:root[data-theme="dark"] .contact-form label,
:root[data-theme="dark"] .store-modal__panel h2 {
  color: var(--heading);
}

:root[data-theme="dark"] .featured-card p,
:root[data-theme="dark"] .mini-card p,
:root[data-theme="dark"] .detail-copy p,
:root[data-theme="dark"] .detail-facts li,
:root[data-theme="dark"] .detail-update p,
:root[data-theme="dark"] .detail-not-found p,
:root[data-theme="dark"] .content-lead p,
:root[data-theme="dark"] .content-card p,
:root[data-theme="dark"] .content-note p,
:root[data-theme="dark"] .legal-content,
:root[data-theme="dark"] .legal-section p,
:root[data-theme="dark"] .legal-section li,
:root[data-theme="dark"] .contact-form__status,
:root[data-theme="dark"] .store-modal__panel p {
  color: var(--body-text);
}

:root[data-theme="dark"] .tags button {
  background: var(--chip-bg);
  color: var(--text);
}

:root[data-theme="dark"] .tags button.active {
  background: var(--green);
  color: #162100;
}

:root[data-theme="dark"] .mini-card__link:hover h3,
:root[data-theme="dark"] .content-card a,
:root[data-theme="dark"] .legal-section a {
  color: var(--text);
}

:root[data-theme="dark"] .empty-icon {
  background: #203039;
}

:root[data-theme="dark"] .store-button,
:root[data-theme="dark"] .try-button {
  background: var(--primary-button-bg);
  color: var(--primary-button-text);
}

:root[data-theme="dark"] .try-button {
  box-shadow: 0 14px 30px rgba(0,0,0,.32);
}

:root[data-theme="dark"] .try-button:hover {
  box-shadow: 0 18px 38px rgba(0,0,0,.42);
}

:root[data-theme="dark"] .try-button--disabled {
  background: #4a5564;
  color: #c7d1de;
}

:root[data-theme="dark"] .detail-update__meta span,
:root[data-theme="dark"] .store-modal__close {
  background: var(--input-bg);
  color: var(--body-text);
}

:root[data-theme="dark"] .store-modal__panel {
  background: var(--surface);
}

:root[data-theme="dark"] .legal-section {
  border-top-color: var(--soft-border);
}

:root[data-theme="dark"] .contact-form input,
:root[data-theme="dark"] .contact-form select,
:root[data-theme="dark"] .contact-form textarea {
  background: var(--input-bg);
  color: var(--text);
}

:root[data-theme="dark"] .contact-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, #f5f7fb 50%),
    linear-gradient(135deg, #f5f7fb 50%, transparent 50%);
}

:root[data-theme="dark"] .contact-form input:focus,
:root[data-theme="dark"] .contact-form select:focus,
:root[data-theme="dark"] .contact-form textarea:focus,
:root[data-theme="dark"] .mini-card__link:focus-visible,
:root[data-theme="dark"] .detail-more-card:focus-visible {
  outline-color: rgba(155,224,0,.42);
}

:root[data-theme="dark"] .robot-easter-egg {
  background: #111318;
  color: #111318;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}

:root[data-theme="dark"] .robot-easter-egg > strong,
:root[data-theme="dark"] .robot-easter-egg > p {
  color: #111318;
}

.footer {
  margin-top: 100px;
  padding: 80px 0;
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
  background: #212121;
  color: #fff;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
}
.footer__top,
.footer__bottom {
  width: 100%;
  max-width: 1600px;
  padding: 0 160px;
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 48px;
}
.footer__section {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.footer nav {
  display: grid;
  gap: 14px;
  align-content: start;
}
.footer__section h2 {
  height: 64px;
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
}
.footer a {
  color: #fff;
  min-height: 22px;
  display: flex;
  align-items: center;
  line-height: 1.35;
}
.footer .muted {
  color: rgba(255,255,255,.62);
}
.footer .current {
  font-weight: 900;
}
.footer__bottom {
  margin-top: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.footer__bottom img {
  width: 228px;
}
.footer__bottom p {
  margin: 0;
  text-align: right;
}

@media (max-width: 1280px) {
  .header__inner,
  .footer__top,
  .footer__bottom {
    padding-left: 60px;
    padding-right: 60px;
  }
  .nav {
    display: none;
  }
  .header-actions {
    margin-left: auto;
  }
  .burger {
    display: block;
  }
  .games {
    width: min(100%, calc(100% - 120px));
  }
  .detail-hero__inner,
  .detail-content,
  .detail-update,
  .detail-more,
  .try-cta,
  .content-hero__inner,
  .content-body,
  .detail-not-found {
    width: min(100%, calc(100% - 120px));
  }
}

@media (max-width: 1024px) {
  .featured-grid,
  .mini-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 400px));
  }
  .detail-hero__inner,
  .detail-content {
    grid-template-columns: 1fr;
  }
  .detail-title {
    font-size: 68px;
  }
  .detail-cover {
    justify-self: start;
    max-width: 300px;
  }
  .detail-more__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-card-grid {
    grid-template-columns: 1fr;
  }
  .content-hero h1 {
    font-size: 62px;
  }
}

@media (max-width: 760px) {
  .header {
    position: fixed;
    height: 84px;
    padding-top: 30px;
    background: rgba(0,0,0,.08);
    backdrop-filter: blur(8px);
  }
  .header__inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    gap: 8px;
    display: flex;
    justify-content: flex-start;
  }
  .logo {
    flex: 0 0 auto;
  }
  .logo img {
    width: 126px;
    max-width: none;
  }
  .lang-switch {
    width: 112px;
    height: 44px;
    gap: 4px;
  }
  .lang-switch__thumb {
    inset: auto;
    top: 4px;
    left: 4px;
    width: calc((100% - 12px) / 2);
    height: calc(100% - 8px);
    transform: translateX(0);
    transition: transform .2s ease;
  }
  .lang-switch button {
    display: block;
    flex: 1 1 0;
    width: auto;
    height: 36px;
    font-size: 14px;
  }
  .header-actions {
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
    gap: 6px;
  }
  .theme-toggle {
    display: none;
  }
  .nav {
    position: fixed;
    top: 84px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 18px;
    border-radius: 18px;
    background: rgba(40, 55, 68, .92);
    flex-wrap: wrap;
  }
  .nav.open { display: flex; }
  .burger {
    order: 3;
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: 8px;
  }
  .burger::before,
  .burger::after,
  .burger span {
    width: 32px;
    margin: 0;
  }
  .burger::after {
    width: 32px;
    margin-left: 0;
  }
  .hero {
    height: clamp(360px, 72vw, 625px);
    margin-bottom: 50px;
  }
  .games {
    width: 100%;
    padding: 0 30px;
  }
  .section-head {
    margin-bottom: 45px;
  }
  .section-head h2 { font-size: 34px; }
  .games-subtitle {
    margin-bottom: 28px;
    font-size: 34px;
  }
  .featured-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }
  .featured-grid {
    margin-top: 0;
  }
  .featured-card > a > img,
  .game-thumb {
    height: 231px;
  }
  .game-thumb span {
    left: 24px;
    right: 24px;
    bottom: 22px;
    max-width: none;
    font-size: 34px;
  }
  .featured-card { min-height: 0; }
  .mini-grid { gap: 55px; }
  .detail-hero {
    min-height: 640px;
    padding: 142px 0 54px;
  }
  .detail-hero__inner,
  .detail-content,
  .detail-update,
  .detail-more,
  .try-cta,
  .detail-not-found {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .detail-title {
    font-size: 48px;
  }
  .detail-summary {
    font-size: 20px;
  }
  .detail-cover {
    display: none;
  }
  .detail-content {
    margin-top: 54px;
    gap: 42px;
  }
  .detail-copy h2,
  .detail-facts h2,
  .detail-update h2,
  .detail-more h2 {
    font-size: 34px;
  }
  .detail-more h2 {
    font-size: 30px;
  }
  .detail-copy p,
  .detail-facts li {
    font-size: 18px;
  }
  .detail-more {
    margin-top: 54px;
  }
  .detail-update {
    margin-top: 42px;
    padding: 28px 30px 30px;
    border-radius: 24px;
  }
  .detail-update__head {
    display: grid;
    gap: 14px;
  }
  .detail-update__meta {
    justify-content: flex-start;
  }
  .detail-update p {
    font-size: 17px;
  }
  .try-cta {
    margin-top: 36px;
  }
  .try-button {
    width: 100%;
    min-width: 0;
  }
  .detail-more__grid {
    grid-template-columns: 1fr;
  }
  .detail-not-found {
    padding-top: 132px;
  }
  .detail-not-found h1 {
    font-size: 42px;
  }
  .content-hero {
    min-height: 560px;
    padding: 142px 0 62px;
  }
  .content-hero__inner,
  .content-body {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .content-hero h1 {
    font-size: 48px;
  }
  .content-hero p {
    font-size: 20px;
  }
  .content-body {
    margin-top: 54px;
  }
  .content-lead p,
  .content-note p {
    font-size: 18px;
  }
  .content-card-grid {
    gap: 22px;
    margin-top: 40px;
  }
  .content-card {
    padding: 28px;
    border-radius: 24px;
  }
  .content-card h2 {
    font-size: 26px;
  }
  .content-card p {
    font-size: 17px;
  }
  .content-note {
    margin-top: 48px;
  }
  .content-note h2 {
    font-size: 32px;
  }
  .contact-form {
    margin-top: 48px;
    padding: 28px;
    border-radius: 24px;
  }
  .contact-form h2 {
    font-size: 32px;
  }
  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form__footer .try-button {
    width: 100%;
  }
  .store-modal {
    padding: 20px;
  }
  .store-modal__panel {
    padding: 36px 24px 26px;
    border-radius: 22px;
  }
  .store-modal__panel h2 {
    font-size: 30px;
  }
  .store-modal__buttons {
    grid-template-columns: minmax(0, 260px);
  }
  .store-badge {
    width: min(100%, 260px);
  }
  .footer__top,
  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .footer__section h2 {
    height: auto;
    margin-bottom: 18px;
  }
  .footer__bottom {
    margin-top: 54px;
    display: grid;
    justify-items: start;
    align-items: flex-start;
  }
  .footer__bottom p { text-align: left; }
}

@media (max-width: 380px) {
  .header__inner {
    padding-left: 14px;
    padding-right: 14px;
    gap: 8px;
  }
  .logo img {
    width: 108px;
  }
  .burger {
    width: 36px;
    height: 38px;
  }
  .burger::before,
  .burger::after,
  .burger span {
    width: 28px;
  }
  .burger::after {
    width: 28px;
  }
  .header-actions {
    gap: 5px;
  }
  .lang-switch {
    width: 112px;
    height: 44px;
  }
  .lang-switch button {
    height: 36px;
    font-size: 14px;
  }
}
