:root {
  --ink: #090d0c;
  --muted: #626a70;
  --paper: #ffffff;
  --field: #edf0f2;
  --field-deep: #dfe4e7;
  --line: #d4dadd;
  --black: #030504;
  --green: #00e99a;
  --green-strong: #00c982;
  --green-soft: #dffff4;
  --magenta: #e100ee;
  --magenta-deep: #ba00c6;
  --danger: #d64067;
  --shadow: 0 2px 10px rgba(7, 18, 15, 0.08);
  --shadow-hover: 0 12px 26px rgba(7, 18, 15, 0.12);
  --radius: 6px;
  --content-gap: 20px;
  --header-height: 75px;
  --page-pad: 30px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(0, 201, 130, 0.035) 50%, transparent 50.2%),
    var(--field);
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  overflow-x: clip;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(0, 233, 154, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--green);
  border-radius: var(--radius);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 120;
  top: 0;
  height: var(--header-height);
  color: #fff;
  background: var(--black);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  width: min(1600px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand-link img {
  width: 135px;
  height: 34px;
}

.primary-nav {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.primary-nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav-actions {
  display: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 4px 0;
  color: #e9eeec;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--magenta));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-link[aria-current="page"] {
  color: var(--green);
}

.header-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.geo-switcher {
  display: grid;
  place-items: center;
}

.geo-toggle {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 46px;
  padding: 7px 9px;
  border: 1px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  background: #121614;
  cursor: pointer;
}

.geo-flag {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

.geo-chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms var(--ease);
}

.geo-toggle[aria-expanded="true"] .geo-chevron {
  transform: translateY(2px) rotate(225deg);
}

.geo-menu {
  position: fixed;
  z-index: 180;
  top: calc(var(--header-height) + 8px);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  width: min(780px, calc(100vw - 32px));
  max-height: calc(100vh - var(--header-height) - 16px);
  padding: 12px;
  overflow: hidden;
  border: 1px solid #303936;
  border-radius: 10px;
  color: #fff;
  background: #15191d;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.44);
  transform: translateX(-50%);
}

.geo-menu[hidden] {
  display: none;
}

.geo-link {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
  min-height: 46px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #f3f6f5;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.geo-link:hover,
.geo-link:focus-visible {
  border-color: rgba(0, 233, 154, 0.5);
  background: #252c29;
}

.geo-link[aria-current="page"] {
  color: var(--black);
  background: var(--green);
  border-color: var(--green);
}

.geo-name {
  min-width: 0;
}

.geo-code {
  display: none;
  letter-spacing: 0.03em;
}

.cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  max-width: 100%;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--black);
  background: var(--green);
  box-shadow: 0 5px 0 #008f5e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 150ms var(--ease),
    box-shadow 150ms var(--ease),
    background 150ms ease;
}

.cta:hover {
  background: #39ffba;
  transform: translateY(-1px);
}

.cta:active,
.cta.is-pulsing {
  box-shadow: 0 2px 0 #008f5e;
  transform: translateY(3px);
}

.cta::after {
  position: absolute;
  z-index: -1;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 233, 154, 0.7);
  border-radius: 50%;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.3);
}

.cta.is-pulsing::after {
  animation: kiwi-pulse 420ms ease-out;
}

.cta--bonus {
  color: #fff;
  background: var(--magenta);
  box-shadow: 0 5px 0 #85008e;
}

.cta--bonus:hover {
  background: #f02df8;
}

.cta--bonus:active,
.cta--bonus.is-pulsing {
  box-shadow: 0 2px 0 #85008e;
}

.cta--ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.cta--ghost:hover {
  color: var(--black);
  background: var(--green);
  border-color: var(--green);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #121815;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms var(--ease), opacity 140ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-scrim {
  position: fixed;
  z-index: 90;
  inset: var(--header-height) 0 0;
  border: 0;
  background: rgba(0, 0, 0, 0.58);
}

.site-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1020px) 240px;
  gap: 20px;
  align-items: start;
  width: min(1600px, 100%);
  margin: 0 auto;
  padding: 20px var(--page-pad) 0;
}

.site-layout--single {
  display: block;
  max-width: 1060px;
}

.content-column {
  display: grid;
  gap: var(--content-gap);
  min-width: 0;
}

.sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  display: grid;
  gap: 20px;
  max-height: calc(100vh - var(--header-height) - 40px);
  overflow: auto;
  scrollbar-width: thin;
}

.side-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.side-heading {
  margin: 0;
}

.side-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 38px;
  margin: 0;
  padding: 8px 12px;
  border: 0;
  color: #fff;
  background: var(--black);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}

.side-title:hover,
.side-title:focus-visible {
  color: var(--green);
}

.side-toggle-marker {
  display: grid;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  place-items: center;
}

.side-toggle-marker::before {
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms var(--ease);
}

.side-title[aria-expanded="false"] .side-toggle-marker::before {
  transform: translateX(-2px) rotate(-45deg);
}

.side-list,
.article-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-list a,
.article-nav a {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  width: 100%;
  min-height: 38px;
  padding: 8px 12px;
  border-bottom: 1px solid #e5e8ea;
  color: #333a3d;
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.article-nav a {
  grid-template-columns: 8px minmax(0, 1fr);
}

.side-list li:last-child a,
.article-nav li:last-child a {
  border-bottom: 0;
}

.side-list img {
  width: 17px;
  height: 17px;
  justify-self: center;
  object-fit: contain;
}

.league-flag {
  position: relative;
  display: block;
  justify-self: center;
  width: 16px;
  height: 11px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 1px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.league-flag--england {
  background: #fff;
}

.league-flag--england::before,
.league-flag--england::after {
  position: absolute;
  background: #d71920;
  content: "";
}

.league-flag--england::before {
  top: 4px;
  right: 0;
  left: 0;
  height: 3px;
}

.league-flag--england::after {
  top: 0;
  bottom: 0;
  left: 6px;
  width: 3px;
}

.league-flag--italy {
  background: linear-gradient(90deg, #009246 0 33.33%, #fff 33.33% 66.66%, #ce2b37 66.66%);
}

.league-flag--france {
  background: linear-gradient(90deg, #002395 0 33.33%, #fff 33.33% 66.66%, #ed2939 66.66%);
}

.league-flag--germany {
  background: linear-gradient(#111 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66%);
}

.league-flag--spain {
  background: linear-gradient(#aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%);
}

.league-flag--laliga {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 22%, transparent 23%),
    conic-gradient(#e31b23 0 14%, #f7941d 14% 28%, #ffd400 28% 42%, #34a853 42% 56%, #00a8e8 56% 70%, #2754c7 70% 84%, #9b2fae 84%);
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 12%);
}

.article-nav a > span {
  width: 6px;
  height: 6px;
  place-self: center;
  border-radius: 50%;
  background: #343c42;
  transition: background 160ms ease, transform 160ms var(--ease);
}

.article-nav a:hover > span,
.article-nav a:focus-visible > span,
.article-nav a.is-active > span {
  background: var(--green);
  transform: scale(1.15);
}

.side-list a::before,
.article-nav a::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 3px;
  background: linear-gradient(var(--green), var(--magenta));
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 180ms var(--ease);
}

.side-list a:hover,
.side-list a:focus-visible,
.article-nav a:hover,
.article-nav a:focus-visible,
.article-nav a.is-active {
  color: #005c3c;
  background: var(--green-soft);
}

.side-list a:hover::before,
.side-list a:focus-visible::before,
.article-nav a:hover::before,
.article-nav a:focus-visible::before,
.article-nav a.is-active::before {
  transform: scaleY(1);
}

.cta--download .cta-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  filter: brightness(0);
}

.cta--download .cta-label {
  display: block;
  line-height: 1.15;
  text-align: left;
  white-space: normal;
}

.cta--download .cta-label-top,
.cta--download .cta-label-platform {
  display: block;
}

.cta--download .cta-label-top {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.05;
}

.cta--download .cta-label-platform {
  margin-top: 2px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.05;
}

.cta--download span {
  min-width: 0;
}

.game-carousel {
  position: relative;
  padding-bottom: 8px;
}

.game-carousel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  margin: 0;
  padding: 8px 12px;
  color: #fff;
  background: var(--black);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.game-carousel-heading small {
  color: var(--green);
  font-size: 9px;
  letter-spacing: 0.03em;
}

.game-cover-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  perspective: 500px;
}

.game-cover {
  position: relative;
  display: block;
  aspect-ratio: 1;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d8e0dc;
  border-radius: 6px;
  background: #101613;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
  transform-origin: center;
}

.game-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 180ms ease,
    transform 180ms var(--ease);
}

.game-cover:hover img,
.game-cover:focus-visible img {
  transform: scale(1.04);
}

.game-cover.is-turning img {
  opacity: 0.12;
  transform: rotateY(88deg) scale(0.94);
}

.game-carousel-progress {
  height: 3px;
  margin: 0 8px;
  overflow: hidden;
  background: #dce5e1;
}

.game-carousel-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--magenta));
  animation: game-cover-progress 3s linear infinite;
  transform-origin: left;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 381px;
  overflow: hidden;
  padding: 65px 30px;
  border-radius: var(--radius);
  color: #fff;
  background-position: center;
  background-size: cover;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 8, 6, 0.98) 0%, rgba(1, 8, 6, 0.88) 36%, rgba(1, 8, 6, 0.26) 70%, rgba(1, 8, 6, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.22), transparent);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 24px;
  left: 24px;
  width: 140px;
  height: 32px;
  border-top: 1px solid rgba(0, 233, 154, 0.62);
  border-left: 1px solid rgba(0, 233, 154, 0.62);
  content: "";
  clip-path: polygon(0 0, 100% 0, 100% 4%, 58% 4%, 58% 45%, 42% 45%, 42% 100%, 41% 100%, 41% 44%, 57% 44%, 57% 3%, 0 3%);
}

.hero-content {
  width: min(560px, 62%);
}

.hero h1 {
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  color: var(--green);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 36px;
  text-transform: uppercase;
  text-wrap: wrap;
}

.hero p {
  width: 100%;
  margin: 0 0 16px;
  color: #f2f5f4;
  font-size: 15px;
  line-height: 23.25px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .cta--download {
  justify-content: flex-start;
  gap: 12px;
  width: 190px;
  min-height: 56px;
  padding: 8px 14px;
}

.content-card,
.service-card {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: box-shadow 200ms var(--ease), border-color 200ms ease;
}

.content-card::before,
.service-card::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: -1px;
  width: 3px;
  background:
    linear-gradient(var(--green), rgba(0, 233, 154, 0.15) 62%, var(--magenta));
  content: "";
  transform: scaleY(0.16);
  transform-origin: top;
  transition: transform 260ms var(--ease);
}

.content-card:hover,
.content-card:focus-within {
  border-color: #b8d2c8;
  box-shadow: var(--shadow-hover);
}

.content-card:hover::before,
.content-card:focus-within::before {
  transform: scaleY(1);
}

.section-heading {
  width: 100%;
  margin: 0 0 20px;
  color: #111716;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 36px;
  text-wrap: wrap;
}

.section-body {
  display: flow-root;
  width: 100%;
}

.section-body > * {
  width: 100%;
  max-width: none;
}

.section-body > :first-child {
  margin-top: 0;
}

.section-body > :last-child {
  margin-bottom: 0;
}

.section-body p {
  margin: 0 0 20px;
  color: #3f474b;
  font-size: 15px;
  line-height: 23.25px;
}

.section-body h3 {
  width: 100%;
  margin: 20px 0;
  padding: 0;
  color: #15201d;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 32px;
  text-transform: uppercase;
  text-wrap: wrap;
}

.section-body ul,
.section-body ol {
  margin: 0 0 20px;
  padding-left: 27px;
}

.section-body li {
  position: relative;
  min-height: 24px;
  margin: 0 0 8px;
  padding-left: 4px;
  color: #3f474b;
  line-height: 23.25px;
}

.section-body li:last-child {
  margin-bottom: 0;
}

.section-body ul li::marker {
  color: var(--green-strong);
  font-size: 0.95em;
}

.steps-thread {
  position: relative;
  padding-left: 38px !important;
  list-style: none;
  counter-reset: step;
}

.steps-thread::before {
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 13px;
  width: 2px;
  background: linear-gradient(var(--green), var(--magenta));
  content: "";
}

.steps-thread > li {
  min-height: 32px;
  padding: 4px 0 4px 12px;
  counter-increment: step;
}

.steps-thread > li::before {
  position: absolute;
  z-index: 1;
  top: 3px;
  left: -38px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: #fff;
  background: var(--black);
  content: counter(step);
  font-size: 11px;
  font-weight: 800;
}

.table-wrap {
  width: 100%;
  max-width: none;
  margin: 0 0 20px;
  overflow-x: auto;
  border: 1px solid #cbd4d0;
  border-radius: var(--radius);
  background: #fff;
  scrollbar-color: var(--green-strong) #e7ece9;
}

.data-table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  line-height: 1.42;
}

.data-table th,
.data-table td {
  min-width: 118px;
  padding: 12px 13px;
  border-right: 1px solid #dbe2df;
  border-bottom: 1px solid #dbe2df;
  text-align: left;
  vertical-align: middle;
}

.data-table th:first-child,
.data-table td:first-child {
  position: sticky;
  z-index: 2;
  left: 0;
  min-width: 160px;
  font-weight: 700;
}

.data-table thead th {
  position: sticky;
  z-index: 3;
  top: 0;
  color: #fff;
  background: var(--black);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.data-table thead th:first-child {
  z-index: 4;
}

.data-table tbody tr:nth-child(odd) td {
  background: #f8faf9;
}

.data-table tbody tr:nth-child(even) td {
  background: #eff8f4;
}

.data-table tbody tr td:first-child {
  background: #e3fff5;
  box-shadow: 3px 0 0 rgba(0, 201, 130, 0.18);
}

.data-table tbody tr {
  transition: color 160ms ease;
}

.data-table tbody tr:hover td {
  color: #004f35;
  background: #ddfff2;
}

.data-table tbody tr:hover td:first-child {
  box-shadow: 5px 0 0 var(--magenta);
}

.data-table th:last-child,
.data-table td:last-child {
  border-right: 0;
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.section-cta .cta {
  min-width: 170px;
}

.section-cta--downloads .cta--download {
  justify-content: flex-start;
  gap: 12px;
  width: 190px;
  min-height: 56px;
  padding: 8px 14px;
}

.promo-banner {
  --promo-focus-x: 50%;
  --promo-focus-y: 50%;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 260px;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius);
  color: #fff;
  background: #050a08;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.promo-banner::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: var(--promo-image);
  background-position: var(--promo-focus-x) var(--promo-focus-y);
  background-size: cover;
  content: "";
  filter: brightness(1.1) saturate(1.03);
  transform: scale(1.002);
}

.promo-banner::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 7, 5, 0.82) 0%, rgba(1, 7, 5, 0.56) 42%, rgba(1, 7, 5, 0.08) 74%, rgba(1, 7, 5, 0.01) 88%);
  content: "";
}

.promo-banner--right {
  justify-content: flex-end;
}

.promo-banner--right::before {
  background: linear-gradient(270deg, rgba(1, 7, 5, 0.82) 0%, rgba(1, 7, 5, 0.56) 42%, rgba(1, 7, 5, 0.08) 74%, rgba(1, 7, 5, 0.01) 88%);
}

.promo-content {
  position: relative;
  z-index: 2;
  width: min(480px, 54%);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.82);
}

.promo-content p {
  width: 100%;
  margin: 0 0 14px;
  color: #eef4f1;
}

.promo-title {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  color: var(--green);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-transform: uppercase;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  width: 100%;
  overflow: hidden;
  border: 1px solid #ccd7d2;
  border-radius: 4px;
  background: #f8fbfa;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms var(--ease);
}

.faq-item:hover,
.faq-item:focus-within {
  border-color: var(--green-strong);
  box-shadow: 0 6px 16px rgba(0, 92, 60, 0.08);
  transform: translateY(-1px);
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  color: #101714;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 3px;
  color: var(--green);
  background: var(--black);
  content: "+";
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  transition: transform 180ms var(--ease), color 180ms ease;
}

.faq-item[open] summary::after {
  color: var(--magenta);
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 14px 14px;
  border-top: 1px solid #dce4e0;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
  margin-top: 14px;
}

.compare-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.compare-card,
.review-card,
.expert-card {
  position: relative;
  width: 100%;
  padding: 18px;
  border: 1px solid #d8dfdc;
  border-radius: var(--radius);
  background: #f8fbfa;
}

.compare-card--pros {
  border-top: 3px solid var(--green);
}

.compare-card--cons {
  border-top: 3px solid var(--danger);
}

.compare-card h3 {
  margin-top: 0;
}

.review-card {
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.review-card:hover {
  box-shadow: 0 10px 22px rgba(3, 17, 12, 0.1);
  transform: translateY(-2px);
}

.review-card strong {
  display: block;
  margin-bottom: 4px;
  color: #0e1714;
}

.review-card time {
  display: block;
  margin-bottom: 10px;
  color: #65706b;
  font-size: 12px;
  font-weight: 700;
}

.review-card p {
  margin: 0;
}

.review-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  width: 100%;
  margin: 0 0 20px;
  padding: 12px 16px;
  border: 1px solid #cfe1d9;
  border-left: 4px solid var(--green-strong);
  border-radius: var(--radius);
  color: #0e1714;
  background: #f2faf6;
  font-size: 13px;
  font-weight: 800;
}

.expert-card {
  border-left: 4px solid var(--green);
  background:
    linear-gradient(135deg, rgba(0, 233, 154, 0.08), rgba(225, 0, 238, 0.04)),
    #fff;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin: 0 0 16px;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 7px;
  color: var(--green-strong);
  content: "/";
}

.breadcrumbs a {
  color: #075c40;
}

.eyebrow {
  margin: 0 0 8px;
  color: #00744e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h1 {
  width: 100%;
  margin: 0 0 20px;
  font-size: 34px;
  line-height: 1.15;
}

.service-qa {
  display: grid;
  gap: 18px;
}

.service-qa h2 {
  width: 100%;
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.35;
}

.service-qa p {
  width: 100%;
  margin: 0;
  color: #3f474b;
}

.not-found {
  display: grid;
  place-items: center;
  min-height: 62vh;
  text-align: center;
}

.not-found-code {
  margin: 0;
  color: var(--green-strong);
  font-size: clamp(76px, 16vw, 160px);
  font-weight: 900;
  line-height: 0.9;
}

.site-footer {
  margin-top: 20px;
  color: #e9efec;
  background: var(--black);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 40px;
  width: min(1600px, 100%);
  margin: 0 auto;
  padding: 38px var(--page-pad) 22px;
}

.footer-brand img {
  width: 135px;
  height: 34px;
  margin-bottom: 14px;
}

.footer-brand p,
.footer-note {
  width: 100%;
  margin: 0;
  color: #aeb9b4;
  font-size: 13px;
}

.footer-title {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 0 0 9px;
}

.footer-links a {
  position: relative;
  color: #e3e9e6;
  font-size: 13px;
  text-decoration: none;
}

.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--green), var(--magenta));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.responsible-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
}

.age-badge {
  display: grid;
  flex: 0 0 44px;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1600px, 100%);
  margin: 0 auto;
  padding: 16px var(--page-pad) 22px;
  border-top: 1px solid #202824;
  color: #87938d;
  font-size: 12px;
}

.footer-geos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px 12px;
  width: min(1600px, 100%);
  margin: 0 auto;
  padding: 22px var(--page-pad);
  border-top: 1px solid #202824;
}

.footer-geos .geo-link {
  min-height: 48px;
  padding: 8px 14px;
  border-color: #444b50;
  background: #353b40;
}

.footer-geos .geo-link:hover,
.footer-geos .geo-link:focus-visible {
  border-color: #77827d;
  background: #41484d;
}

.footer-geos .geo-link[aria-current="page"] {
  color: var(--black);
  border-color: var(--green);
  background: var(--green);
}

@keyframes kiwi-pulse {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.3);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(4.4);
  }
}

@keyframes game-cover-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1359px) {
  .site-layout {
    display: block;
    max-width: 1080px;
  }

  .sidebar {
    display: none;
  }
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: 160px minmax(0, 1fr) auto auto;
    gap: 18px;
  }

  .primary-nav ul {
    gap: 18px;
  }

  .header-actions .cta:first-child {
    display: none;
  }

  .footer-geos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 60px;
    --page-pad: 16px;
  }

  body.menu-open {
    padding-top: var(--header-height);
  }

  .site-header {
    height: var(--header-height);
  }

  body.menu-open .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .brand-link img {
    width: 112px;
    height: auto;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    z-index: 130;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: auto;
    display: block;
    width: 100%;
    max-height: calc(100vh - var(--header-height));
    padding: 14px var(--page-pad) 18px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #070a09;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-100% - 12px));
    visibility: hidden;
    transition:
      transform 230ms var(--ease),
      opacity 180ms ease,
      visibility 230ms step-end;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition:
      transform 230ms var(--ease),
      opacity 180ms ease,
      visibility 0s step-start;
  }

  .menu-scrim {
    right: 0;
  }

  .primary-nav ul {
    display: grid;
    gap: 4px;
  }

  .nav-link {
    width: 100%;
    min-height: 48px;
    padding: 8px 10px;
    border-bottom: 1px solid #1e2824;
  }

  .nav-link::after {
    bottom: 0;
  }

  .header-actions {
    display: none;
  }

  .geo-menu {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    width: min(620px, calc(100vw - 24px));
    padding: 10px;
  }

  .geo-menu .geo-link,
  .footer-geos .geo-link {
    justify-content: center;
    min-height: 42px;
    padding: 6px;
  }

  .geo-menu .geo-flag,
  .footer-geos .geo-flag {
    width: 25px;
    height: 25px;
  }

  .geo-menu .geo-name,
  .footer-geos .geo-name {
    display: none;
  }

  .geo-menu .geo-code,
  .footer-geos .geo-code {
    display: inline;
  }

  .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #1e2824;
  }

  .mobile-nav-actions .cta {
    width: 100%;
  }

  .site-layout {
    padding-top: 16px;
  }

  .content-column {
    gap: 16px;
  }

  .hero {
    min-height: 430px;
    align-items: flex-end;
    padding: 30px 20px;
    background-position: 66% center;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(1, 8, 6, 0.98) 0%, rgba(1, 8, 6, 0.9) 48%, rgba(1, 8, 6, 0.18) 100%),
      linear-gradient(90deg, rgba(1, 8, 6, 0.72), transparent);
  }

  .hero-content {
    width: 100%;
  }

  .promo-banner,
  .promo-banner--right {
    min-height: 350px;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 24px 20px;
  }

  .promo-banner {
    --promo-focus-x: 78%;
  }

  .promo-banner--right {
    --promo-focus-x: 22%;
  }

  .promo-banner::before,
  .promo-banner--right::before {
    background: linear-gradient(0deg, rgba(1, 7, 5, 0.88) 0%, rgba(1, 7, 5, 0.64) 44%, rgba(1, 7, 5, 0.12) 76%, rgba(1, 7, 5, 0.02) 100%);
  }

  .promo-content {
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .footer-brand {
    display: grid;
    grid-column: 1 / -1;
    justify-items: center;
    text-align: center;
  }

  .footer-inner > nav {
    text-align: center;
  }

  .footer-links {
    display: grid;
    justify-items: center;
  }

  .footer-links a::after {
    transform-origin: center;
  }

  .responsible-row {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer-bottom {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
}

@media (max-width: 638px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .content-card,
  .service-card {
    padding: 18px 16px;
  }

  .section-heading {
    font-size: 26px;
    line-height: 32px;
  }

  .promo-banner,
  .promo-banner--right {
    min-height: 360px;
  }

  .promo-banner {
    --promo-focus-x: 80%;
  }

  .promo-banner--right {
    --promo-focus-x: 20%;
  }

  .hero {
    min-height: 420px;
  }

  .hero h1 {
    font-size: 27px;
    line-height: 32px;
  }

  .compare-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  .responsible-row {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .footer-geos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    padding: 22px var(--page-pad);
  }
}

@media (max-width: 520px) {
  .geo-toggle {
    width: 58px;
    height: 44px;
    padding: 6px 8px;
  }

  .geo-menu {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    width: calc(100vw - 16px);
    padding: 8px;
  }

  .geo-menu .geo-link,
  .footer-geos .geo-link {
    gap: 6px;
    min-height: 38px;
    font-size: 12px;
  }

  .geo-menu .geo-flag,
  .footer-geos .geo-flag {
    width: 23px;
    height: 23px;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 450px;
    padding: 26px 16px;
  }

  .hero h1 {
    font-size: 25px;
    line-height: 30px;
  }

  .hero p,
  .section-body p,
  .section-body li {
    font-size: 14px;
    line-height: 22px;
  }

  .promo-banner,
  .promo-banner--right {
    min-height: 370px;
    padding: 22px 16px;
  }

  .hero-actions,
  .promo-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .cta,
  .promo-actions .cta,
  .section-cta .cta {
    width: 100%;
    white-space: normal;
  }

  .promo-title {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .game-carousel-progress span {
    animation: none !important;
    transform: scaleX(1);
  }
}
