﻿:root {
  --color-accent-cyan: #01daa6;
  --color-accent-cyan-hover: #33ffce;
  --color-dark-cyan: #00b289;
  --color-cyan-muted-l: #01daa71b;
  --color-purple: #9747ff;
  --color-white: #ffffff;
  --color-white-muted-s: rgba(255, 255, 255, 0.8);
  --color-white-muted-l: rgba(255, 255, 255, 0.2);
  --color-light-grey: #f0f7f8;
  --color-light-grey-card: #ebf3f4;
  --color-black: #000000;
  --color-black-muted-m: rgba(0, 0, 0, 0.65);
  --color-black-muted-l: rgba(0, 0, 0, 0.2);

  --gap-1: 8px;
  --gap-2: 16px;
  --gap-3: 24px;
  --gap-4: 32px;
  --gap-5: 64px;
  --gap-6: 80px;
  --padding-1: 8px;
  --padding-2: 24px;
  --padding-3: 32px;
  --padding-4: 64px;
  --padding-5: 112px;
  --width-l: 1312px;
  --space-1: var(--gap-1);
  --space-2: var(--gap-2);
  --space-3: var(--gap-3);
  --space-4: var(--gap-4);
  --space-5: var(--gap-5);
  --space-6: var(--gap-6);
  --pad-1: var(--padding-1);
  --pad-2: var(--padding-2);
  --pad-3: var(--padding-3);
  --pad-4: var(--padding-4);
  --pad-5: var(--padding-5);
  --container-max: var(--width-l);

  --radius-16: 16px;
  --radius-24: 24px;
  --radius-round: 999px;
  --radius-md: var(--radius-16);
  --radius-lg: var(--radius-24);
  --Border-radius-sm: 8px;
  --Border-radius-md: var(--radius-16);
  --Border-radius-bg: var(--radius-24);
  --Border-radius-max: 32px;
  --Border-radius-round: var(--radius-round);

  --font-body: "Atkinson Hyperlegible", "Segoe UI", system-ui, sans-serif;
  --font-display:
    "Clash Display", "Atkinson Hyperlegible", "Segoe UI", system-ui, sans-serif;

  --type-button-size: 18px;
  --type-button-line: 1;
  --type-button-letter: 0em;
  --type-h2-size: 64px;
  --type-h2-line: 1.04;
  --type-h2-letter: -0.02em;
  --type-h3-size: 32px;
  --type-h3-line: 1.17;
  --type-h3-letter: -0.02em;
  --type-app-card-heading-size: 28px;
  --type-app-card-heading-line: 1.152;
  --type-app-card-heading-letter: 0em;
  --type-body-size: 18px;
  --type-body-line: 1.28;
  --type-body-letter: 0em;
  --type-body-small-size: 16px;
  --type-body-small-line: 1.28;
  --type-body-small-letter: 0em;
}

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

html {
  font-size: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  letter-spacing: var(--type-body-letter);
  color: var(--color-white);
  background: var(--color-light-grey);
}

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

button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

.page {
  min-height: 100vh;
}

.sticky-header {
  --sticky-header-surface: var(--color-white);
  --sticky-header-text: var(--color-black);
  --sticky-header-muted-text: rgba(0, 0, 0, 0.58);
  --sticky-header-border: var(--color-black-muted-l);
  --sticky-header-search-bg: var(--color-white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 12px var(--pad-4) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition:
    opacity 240ms ease,
    transform 240ms ease,
    visibility 0s linear 240ms;
}

.sticky-header::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 92px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
  transition: opacity 260ms ease;
}

.sticky-header::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 92px;
  background: linear-gradient(
    180deg,
    rgba(45, 43, 51, 0.92) 0%,
    rgba(45, 43, 51, 0) 100%
  );
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  transition: opacity 260ms ease;
}

.sticky-header.has-gradient::before {
  opacity: 1;
}

.sticky-header__overlay {
  position: absolute;
  inset: 0;
  height: 92px;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  transition: opacity 260ms ease;
  z-index: 0;
}

.sticky-header.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 240ms ease,
    transform 240ms ease,
    visibility 0s linear 0s;
}

.sticky-header.has-gradient[data-gradient="dark"]::after {
  opacity: 1;
}

.sticky-header:not(.has-gradient)[data-gradient="dark"]::after,
.sticky-header[data-gradient="dark"]::before {
  opacity: 0;
}

.sticky-header__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1380px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-header__shell {
  position: relative;
  isolation: isolate;
  width: fit-content;
  min-height: 60px;
  padding: 8px;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: var(--space-2);
  border: 1px solid var(--sticky-header-border);
  border-radius: 32px;
  background: var(--sticky-header-surface);
  box-shadow:
    0 8px 24px rgba(8, 15, 24, 0.05),
    0 1px 2px rgba(8, 15, 24, 0.04);
}

.sticky-header__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  transition: opacity 260ms ease;
  z-index: 2;
}

.sticky-header.search-host-active {
  z-index: 40;
}

.sticky-header.search-host-closing {
  z-index: 40;
}

.sticky-header.search-host-active::before,
.sticky-header.search-host-active::after {
  opacity: 0;
}

.sticky-header.search-host-active .sticky-header__shell::after {
  opacity: 1;
}

.sticky-header__brand,
.sticky-header__actions {
  position: relative;
  z-index: 0;
}

.sticky-header__brand {
  min-height: 40px;
  padding-left: 0px;
  padding-right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-header__logo {
  width: 180px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(33%) sepia(84%) saturate(1334%)
    hue-rotate(137deg) brightness(90%) contrast(101%);
}

.search-bar {
  position: relative;
  width: fit-content;
  min-width: 0;
  z-index: 6;
}

.search-bar__field {
  width: auto;
  max-width: 100%;
  min-height: 41px;
  padding: 9px 32px 9px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border: 1px solid var(--color-accent-cyan);
  border-radius: var(--radius-round);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  cursor: text;
  transition:
    background-color 260ms ease,
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 260ms ease,
    opacity 220ms ease;
}

.search-bar--light .search-bar__field {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white-muted-s);
}

.search-bar--muted .search-bar__field {
  background: #dfeaec;
  color: var(--color-black-muted-m);
}

.search-bar__input {
  width: var(--search-input-width, 22ch);
  min-width: 0;
  flex: 0 1 auto;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  letter-spacing: var(--type-body-letter);
}

.search-bar__input::placeholder {
  color: inherit;
  opacity: 1;
}

.search-bar__icon {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 auto;
}

.search-bar__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 32px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  max-height: min(420px, calc(100vh - 160px));
  overflow: hidden;
  will-change: opacity, transform;
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    visibility 0s linear 260ms;
}

.search-bar__dropdown-scroll {
  display: flex;
  max-height: min(420px, calc(100vh - 160px));
  flex-direction: column;
  gap: 10px;
  padding: var(--space-1);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
}

.search-bar__dropdown-scroll::-webkit-scrollbar {
  width: 7px;
}

.search-bar__dropdown-scroll::-webkit-scrollbar-track {
  margin: 28px 0;
  background: transparent;
}

.search-bar__dropdown-scroll::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.18);
  background-clip: content-box;
}

.search-bar__dropdown-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.28);
  background-clip: content-box;
}

.search-bar__dropdown-scroll::-webkit-scrollbar-button {
  -webkit-appearance: none;
  display: none;
  width: 0;
  height: 0;
  border: 0;
  background: transparent;
  background-image: none;
  color: transparent;
}

.search-bar__dropdown-scroll::-webkit-scrollbar-button:single-button,
.search-bar__dropdown-scroll::-webkit-scrollbar-button:vertical:start,
.search-bar__dropdown-scroll::-webkit-scrollbar-button:vertical:end {
  -webkit-appearance: none;
  display: none;
  width: 0;
  height: 0;
  border: 0;
  background: transparent;
  background-image: none;
  color: transparent;
}

.search-bar__dropdown-scroll::-webkit-scrollbar-button:vertical:decrement,
.search-bar__dropdown-scroll::-webkit-scrollbar-button:vertical:increment {
  -webkit-appearance: none;
  display: none;
  width: 0;
  height: 0;
  border: 0;
  background: transparent;
  background-image: none;
  color: transparent;
}

.search-bar__dropdown-scroll::-webkit-scrollbar-corner {
  background: transparent;
}

.search-bar__dropdown--results {
  background:
    linear-gradient(
      180deg,
      rgba(1, 218, 166, 0.2) 0%,
      rgba(1, 218, 166, 0) 100%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.12) 100%
    );
}

.search-bar__dropdown--empty {
  background:
    linear-gradient(
      180deg,
      rgba(1, 218, 166, 0) 0%,
      rgba(1, 218, 166, 0.2) 100%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.12) 100%
    );
}

.search-bar.is-active {
  z-index: 60;
}

.search-bar.is-closing {
  z-index: 60;
}

.search-bar__item,
.search-bar__empty,
.search-bar__popular {
  width: 100%;
  border-radius: 24px;
}

.search-bar__item {
  padding: var(--space-1);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-white);
  text-decoration: none;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.search-bar__item:hover,
.search-bar__item:focus-visible {
  background: rgba(222, 231, 232, 0.2);
  transform: translateX(2px);
}

.search-bar__thumb {
  width: 64px;
  height: 64px;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  flex: 0 0 auto;
}

.search-bar__label {
  font-size: var(--type-body-size);
  line-height: 1;
  font-weight: 700;
  color: var(--color-white);
}

.search-bar__empty {
  padding: 16px var(--space-1) var(--space-1);
  text-align: center;
  color: var(--color-white);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.search-bar__popular {
  padding: var(--pad-2) var(--space-1) var(--space-1);
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--type-body-size);
  line-height: 1;
  font-weight: 700;
}

.search-bar.is-active .search-bar__field {
  background: var(--color-white);
  border-color: transparent;
  color: var(--color-black-muted-m);
  box-shadow:
    inset 0 0 0 3px rgba(1, 218, 166, 0.4),
    0 8px 24px rgba(15, 23, 42, 0.12);
}

.search-bar.is-closing .search-bar__field {
  background: var(--color-white);
  border-color: transparent;
  color: var(--color-black-muted-m);
  box-shadow:
    inset 0 0 0 3px rgba(1, 218, 166, 0.4),
    0 8px 24px rgba(15, 23, 42, 0.12);
}

.search-bar.is-active .search-bar__icon {
  opacity: 0.4;
  filter: brightness(0);
}

.search-bar.is-closing .search-bar__icon {
  opacity: 0.4;
  filter: brightness(0);
}

.search-bar.is-active .search-bar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    visibility 0s linear 0s;
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
  transition:
    opacity 260ms ease,
    visibility 0s linear 260ms;
  z-index: 30;
}

body.search-overlay-active .search-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 220ms ease,
    visibility 0s linear 0s;
}

.sticky-header__searchbar {
  width: fit-content;
  --search-input-width: 30ch;
  position: relative;
  z-index: 2;
}

.sticky-header__search {
  min-height: 44px;
  border: 0;
}

.sticky-header__search-icon {
  width: 20px;
  height: 20px;
}

.sticky-header__searchbar .search-bar__field,
.sticky-header__searchbar .search-bar__input,
.sticky-header__searchbar .search-bar__input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.sticky-header__actions {
  display: inline-flex;
  align-items: center;
}

.sticky-header__login {
  min-width: 91px;
  min-height: 44px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid currentColor;
  border-radius: var(--radius-round);
  color: var(--sticky-header-text);
  font-size: var(--type-body-small-size);
  line-height: 1;
  letter-spacing: var(--type-body-small-letter);
  background: transparent;
  white-space: nowrap;
}

.sticky-header__login-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  height: min(112svh, 1200px);
  padding-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}

.hero__bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1);
  will-change: opacity, transform;
}

.hero__bg-slide.is-active {
  opacity: 1;
  animation: hero-bg-zoom 5000ms ease-out forwards;
}

.hero__bg-slide--black {
  z-index: 1;
  transition: opacity 280ms ease;
}

.hero__bg-slide--black.is-active {
  opacity: 1;
  animation: none;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      64% 88% at 50% 56%,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.26) 40%,
      rgba(0, 0, 0, 0.56) 70%,
      rgba(0, 0, 0, 0.84) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.1) 16%,
      rgba(0, 0, 0, 0.24) 38%,
      rgba(0, 0, 0, 0.86) 88%,
      rgba(0, 0, 0, 0.98) 100%
    );
  pointer-events: none;
}

@keyframes hero-bg-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

@keyframes hero-fade-in-left {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-in-soft {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade-up-soft {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-searchbar-cat-wave {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(88px) rotate(0deg);
  }

  24% {
    opacity: 1;
    transform: translateX(-8px) translateY(-28px) rotate(4deg);
  }

  38% {
    opacity: 1;
    transform: translateX(-10px) translateY(-28px) rotate(0deg);
  }

  52% {
    opacity: 1;
    transform: translateX(-10px) translateY(-28px) rotate(8deg);
  }

  64% {
    opacity: 1;
    transform: translateX(-9px) translateY(-24px) rotate(-7deg);
  }

  76% {
    opacity: 1;
    transform: translateX(-8px) translateY(-20px) rotate(8deg);
  }

  86% {
    opacity: 1;
    transform: translateX(-6px) translateY(-12px) rotate(-6deg);
  }

  100% {
    opacity: 0;
    transform: translateX(0) translateY(92px) rotate(0deg);
  }
}

.hero__nav {
  position: relative;
  z-index: 2;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0;
}

.hero__nav-inner {
  width: min(100%, var(--container-max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.hero__logo-media {
  width: 175px;
  height: auto;
  display: block;
}

.hero__links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  color: var(--color-white-muted-s);
  font-size: 16px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero__ghost {
  border: 1px solid var(--color-white);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: var(--radius-round);
  font-size: 16px;
  height: 36px;
  width: auto;
  min-width: max-content;
  white-space: nowrap;
  line-height: 1;
}

.hero__solid {
  background: var(--color-white);
  color: var(--color-black);
  padding: 8px 20px;
  border-radius: var(--radius-round);
  font-size: 16px;
  height: 36px;
  width: auto;
  min-width: max-content;
  white-space: nowrap;
  line-height: 1;
}

.hero__icon-media {
  display: block;
  flex: 0 0 auto;
}

.hero__icon-media--arrow {
  width: 22px;
  height: 22px;
}

.hero__icon-media--search {
  width: 20px;
  height: 20px;
}

.hero__icon-media--plus {
  width: 36px;
  height: 36px;
}

.hero__content {
  position: relative;
  width: min(100%, var(--container-max));
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-4);
  flex: 1 1 auto;
  min-height: 0;
}

.hero__top {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.hero__title {
  font-family: var(--font-display);
  font-size: 43px;
  line-height: normal;
  font-weight: 600;
  letter-spacing: 0;
  max-width: 541px;
  margin: 0;
  opacity: 0;
  animation: hero-fade-in-left 720ms cubic-bezier(0.22, 1, 0.36, 1) 120ms
    forwards;
}

.hero__searchbar {
  width: fit-content;
  --search-input-width: 18ch;
  overflow: visible;
}

.hero__search {
  font-size: 18px;
  position: relative;
  z-index: 3;
  opacity: 0;
  animation: hero-fade-in-left 720ms cubic-bezier(0.22, 1, 0.36, 1) 240ms
    forwards;
}

.hero__searchbar-cat-window {
  position: absolute;
  left: 40px;
  bottom: calc(100% - 2px);
  width: 168px;
  height: 172px;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.hero__searchbar-cat {
  position: absolute;
  left: 0;
  bottom: -68px;
  width: 156px;
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transform: translateY(92px) rotate(0deg);
  transform-origin: 48% 92%;
  animation: hero-searchbar-cat-wave 2000ms ease-in-out 980ms 1 forwards;
}

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-top: 0;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 38px;
  padding-bottom: 48px;
}

.hero__game {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__game-logo {
  width: 258px;
  height: 136px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.hero__game-logo-media {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left bottom;
  opacity: 1;
  transition: opacity 260ms ease;
}

.hero__game-logo-media.is-fading {
  opacity: 0;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  font-size: 18px;
}

.hero__cta p {
  margin: 0;
}

.cta-button {
  --cta-highlight-size: 92px;
  --cta-pointer-x: 50%;
  --cta-pointer-y: 50%;
  --cta-highlight-scale: 0;
  --cta-highlight-opacity: 0;
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 20px 8px 6px;
  border-radius: var(--radius-round);
  background: var(--color-accent-cyan);
  color: var(--color-black);
  font-weight: 700;
  font-size: 18px;
  height: 46px;
  width: fit-content;
  min-width: max-content;
  white-space: nowrap;
  overflow: hidden;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    background-color 260ms ease;
}

.cta-button::before {
  content: "";
  position: absolute;
  left: var(--cta-pointer-x);
  top: var(--cta-pointer-y);
  width: var(--cta-highlight-size);
  height: var(--cta-highlight-size);
  border-radius: 999px;
  background: var(--color-accent-cyan-hover);
  opacity: var(--cta-highlight-opacity);
  transform: translate(-50%, -50%) scale(var(--cta-highlight-scale));
  transform-origin: center;
  pointer-events: none;
  transition:
    opacity 280ms ease,
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.cta-button > * {
  position: relative;
  z-index: 1;
}

.cta-button:hover {
  --cta-highlight-scale: 1;
  --cta-highlight-opacity: 1;
}

.cta-button:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.35);
  outline-offset: 2px;
}

.cta-button.is-rippling {
  --cta-highlight-scale: 3.6;
  --cta-highlight-opacity: 1;
}

.cta-button--light {
  padding: 12px 20px;
  background: var(--color-white);
}

.cta-button--light.is-rippling {
  background: var(--color-accent-cyan-hover);
}

.cta-button.is-pressed {
  transform: translateY(4px);
}

.cta-button__icon {
  width: 36px;
  height: 36px;
  display: block;
  flex: 0 0 auto;
  transform: rotate(var(--cta-icon-rotation, 0deg));
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

.hero__cta-btn {
  align-self: flex-start;
}

.hero__review {
  max-width: 324px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--color-white-muted-s);
  font-size: 18px;
}

.hero__review p {
  margin: 0;
}

.hero__review strong {
  font-weight: 700;
}

.hero__right {
  display: flex;
  align-items: flex-end;
}

.hero__game-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__game-card {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--pad-1);
  width: 243px;
  border-radius: var(--radius-lg);
  text-align: left;
  transition:
    background-color 220ms ease,
    transform 220ms ease,
    backdrop-filter 220ms ease;
}

.hero__game-card--active {
  background: rgba(222, 231, 232, 0.2);
  backdrop-filter: blur(10px);
}

.hero__game-thumb-media {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex: 0 0 auto;
}

.hero__game-card span {
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  color: var(--color-white);
}

.hero__game-card:hover {
  transform: translateX(-4px);
}

.hero__more {
  padding-left: 12px;
  font-size: 14px;
  color: var(--color-white-muted-s);
}

.reviews {
  position: relative;
  background: transparent;
  color: var(--color-black);
  border-radius: 0;
  padding: var(--pad-5) var(--pad-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  overflow: clip;
}

.reviews__heading {
  width: min(100%, 994px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-align: center;
  position: relative;
}

.reviews__quote-mark {
  position: absolute;
  left: 50px;
  top: -81px;
  width: 100px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -4px;
  color: #d3e5e9;
  z-index: 0;
}

.reviews__title,
.reviews__subtitle {
  position: relative;
  z-index: 1;
}

.reviews__title {
  margin: 0;
  width: 100%;
  font-family: var(--font-display);
  font-size: var(--type-h2-size);
  line-height: var(--type-h2-line);
  letter-spacing: -1.28px;
  font-weight: 500;
}

.reviews__subtitle {
  margin: 0;
  width: 100%;
  color: var(--color-black-muted-m);
  font-size: 18px;
  line-height: 1.28;
}

.reviews__content {
  width: min(100%, var(--container-max));
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.reviews__embla-shell {
  --reviews-edge-offset: max(
    var(--pad-3),
    calc((100vw - var(--container-max)) / 2)
  );
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.reviews__embla {
  width: 100%;
  min-width: 0;
}

.reviews__viewport {
  overflow: hidden;
  cursor: grab;
}

.reviews__viewport.is-dragging {
  cursor: grabbing;
}

.reviews__cards {
  display: flex;
  align-items: stretch;
  gap: var(--space-4);
  touch-action: pan-y pinch-zoom;
  will-change: transform;
}

.reviews__slide {
  flex: 0 0 775px;
  min-width: 0;
}

.reviews__slide:first-child {
  margin-left: var(--reviews-edge-offset);
}

.reviews__slide:last-child {
  margin-right: var(--reviews-edge-offset);
}

.review-card {
  min-height: 363px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  min-width: 0;
  display: flex;
  align-items: stretch;
  padding: 16px;
  gap: 0;
}

.review-card__media {
  position: relative;
  flex: 0 0 331px;
  width: 331px;
  min-height: 331px;
  padding: 0 24px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.review-card__cover-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.review-card__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 49.8%, #000 100%);
}

.review-card__game-logo {
  position: relative;
  z-index: 1;
  width: 190px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.review-card__body {
  flex: 1 1 auto;
  min-width: 0;
  padding: 32px 32px 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
}

.review-card__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.review-card__quote {
  margin: 0;
  width: 20px;
  height: 29px;
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  font-weight: 600;
  color: var(--color-accent-cyan);
}

.review-card__text {
  margin: 0;
  width: 100%;
  font-size: 20px;
  line-height: 1.28;
  color: rgba(0, 0, 0, 0.65);
}

.review-card__author {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.review-card__avatar-placeholder,
.review-card__avatar-media {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-round);
  display: block;
}

.review-card__avatar-media {
  object-fit: cover;
}

.review-card__avatar-placeholder {
  border: 1px dashed rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.08);
}

.review-card__author p {
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 18px;
  line-height: 1.28;
}

.reviews__footer {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.reviews__slider-buttons {
  display: inline-flex;
  gap: var(--space-2);
}

.reviews__slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-black);
  border-radius: var(--radius-round);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    background-color 160ms ease;
}

.reviews__slider-btn:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.04);
}

.reviews__slider-btn:active:not(:disabled) {
  transform: scale(0.96);
}

.reviews__slider-btn:disabled {
  opacity: 0.32;
  cursor: default;
}

.reviews__chevron-placeholder,
.reviews__chevron-media {
  width: 26px;
  height: 26px;
  display: block;
}

.reviews__chevron-placeholder {
  border: 1px dashed rgba(0, 0, 0, 0.65);
  border-radius: var(--radius-round);
  background: rgba(0, 0, 0, 0.06);
}

.usps {
  position: relative;
  padding: var(--pad-5) var(--pad-3) 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 112px;
  background: linear-gradient(
    180deg,
    var(--color-white) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  color: var(--color-black);
}

.usps__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.usps__pill {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 24px;
  border-radius: var(--radius-round);
  background: rgba(1, 218, 166, 0.12);
  color: rgba(0, 178, 137, 0.7);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
}

.usps__title {
  margin: 0;
  width: min(100%, 892px);
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--type-h2-size);
  line-height: var(--type-h2-line);
  letter-spacing: -1.28px;
  font-weight: 500;
  opacity: 0;
}

.usps__row {
  width: min(100%, var(--container-max));
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.usp-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-light-grey-card);
  opacity: 0;
  transform: translateY(28px);
}

.usps.is-visible .usps__pill {
  animation: fade-in-soft 620ms ease 120ms forwards;
}

.usps.is-visible .usps__title {
  animation: fade-in-soft 720ms ease 260ms forwards;
}

.usps.is-visible .usp-card {
  animation: fade-up-soft 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.usps.is-visible .usp-card:nth-child(1) {
  animation-delay: 420ms;
}

.usps.is-visible .usp-card:nth-child(2) {
  animation-delay: 620ms;
}

.usps.is-visible .usp-card:nth-child(3) {
  animation-delay: 820ms;
}

.usp-card__visual-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-light-grey-card);
}

.usp-card__visual-wrap--gradient {
  background:
    linear-gradient(
      154.69deg,
      rgba(222, 231, 232, 1) 16.05%,
      rgba(151, 71, 255, 1) 100%
    ),
    linear-gradient(
      90deg,
      rgba(235, 243, 244, 1) 0%,
      rgba(235, 243, 244, 1) 100%
    );
}

.usp-card__visual-placeholder,
.usp-card__visual-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
}

.usp-card__visual-placeholder {
  border: 1px dashed rgba(0, 0, 0, 0.25);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.26) 0%,
      rgba(255, 255, 255, 0.08) 100%
    ),
    var(--color-light-grey-card);
}

.usp-card__visual-media--illustration {
  position: static;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}

.usp-card__content {
  width: 100%;
  padding: 0 var(--pad-2) var(--pad-2);
  background: var(--color-light-grey-card);
}

.usp-card__title {
  margin: 0 0 var(--space-2);
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.17;
  letter-spacing: -0.64px;
  font-weight: 500;
}

.usp-card__desc {
  margin: 0;
  color: var(--color-black-muted-m);
  font-size: 18px;
  line-height: 1.28;
}

.usp-card--dark {
  background: #17062b;
}

.usp-card__content--dark {
  background: #17062b;
}

.usp-card__title--dark {
  color: var(--color-white);
}

.usp-card--dark .usp-card__desc {
  color: var(--color-white-muted-s);
}

.gamelogos {
  --gamelogos-top-row-height: 450px;
  --gamelogos-bottom-row-height: 360px;
  --gamelogos-row-gap: 16px;
  --gamelogos-cover-width: 300px;
  --gamelogos-loop-distance: calc(
    (var(--gamelogos-cover-width) * 5) + (var(--gamelogos-row-gap) * 5)
  );
  position: relative;
  background: #1f1f21;
  color: var(--color-white);
  padding: var(--pad-5) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  overflow: clip;
}

.gamelogos::before,
.gamelogos::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: max(0px, calc((100vw - 1920px) / 2));
  z-index: 6;
  pointer-events: none;
}

.gamelogos::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(31, 31, 33, 0.98) 0%,
    rgba(31, 31, 33, 0.82) 42%,
    rgba(31, 31, 33, 0.42) 74%,
    rgba(31, 31, 33, 0) 100%
  );
}

.gamelogos::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(31, 31, 33, 0.98) 0%,
    rgba(31, 31, 33, 0.82) 42%,
    rgba(31, 31, 33, 0.42) 74%,
    rgba(31, 31, 33, 0) 100%
  );
}

.gamelogos__top {
  width: min(800px, calc(100% - (var(--pad-3) * 2)));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gamelogos__pill {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 24px;
  border-radius: var(--radius-round);
  background: rgba(1, 218, 166, 0.12);
  color: var(--color-accent-cyan);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.gamelogos__title {
  margin: 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--type-h2-size);
  line-height: var(--type-h2-line);
  letter-spacing: -1.28px;
  font-weight: 500;
}

.gamelogos__searchbar {
  width: fit-content;
  --search-input-width: 18ch;
  margin-top: var(--space-5);
}

.gamelogos__search {
  font-size: 18px;
}

.gamelogos__search-icon {
  width: 20px;
  height: 20px;
}

.gamelogos__container {
  position: relative;
  width: min(100%, 1920px);
  height: calc(
    var(--gamelogos-top-row-height) + var(--gamelogos-bottom-row-height) +
      var(--gamelogos-row-gap)
  );
  display: flex;
  flex-direction: column;
  gap: var(--gamelogos-row-gap);
  overflow: hidden;
}

.gamelogos__container::before,
.gamelogos__container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 5;
  pointer-events: none;
}

.gamelogos__container::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(31, 31, 33, 0.98) 0%,
    rgba(31, 31, 33, 0.86) 34%,
    rgba(31, 31, 33, 0.48) 68%,
    rgba(31, 31, 33, 0) 100%
  );
}

.gamelogos__container::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(31, 31, 33, 0.98) 0%,
    rgba(31, 31, 33, 0.86) 34%,
    rgba(31, 31, 33, 0.48) 68%,
    rgba(31, 31, 33, 0) 100%
  );
}

.gamelogos__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: max(100vw, 1920px);
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(31, 31, 33, 0.995) 0%,
      rgba(31, 31, 33, 0.78) 14%,
      rgba(31, 31, 33, 0) 30%,
      rgba(31, 31, 33, 0) 74%,
      rgba(31, 31, 33, 0.48) 90%,
      rgba(31, 31, 33, 0.72) 100%
    ),
    radial-gradient(
      ellipse at center,
      rgba(31, 31, 33, 0) 12%,
      rgba(31, 31, 33, 0.58) 58%,
      rgba(31, 31, 33, 0.82) 100%
    ),
    linear-gradient(
      90deg,
      rgba(31, 31, 33, 0.8) 0%,
      rgba(31, 31, 33, 0.56) 10%,
      rgba(31, 31, 33, 0) 22%,
      rgba(31, 31, 33, 0) 78%,
      rgba(31, 31, 33, 0.56) 90%,
      rgba(31, 31, 33, 0.8) 100%
    );
}

.gamelogos__row {
  --gamelogos-duration: 27s;
  --gamelogos-delay: 0s;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: var(--gamelogos-row-gap);
  height: var(--gamelogos-top-row-height);
}

.gamelogos__row--left {
  --gamelogos-duration: 160.3s;
  --gamelogos-delay: -4s;
}

.gamelogos__row--right {
  --gamelogos-duration: 400.5s;
  --gamelogos-delay: -10s;
  height: var(--gamelogos-bottom-row-height);
}

.gamelogos__track {
  display: flex;
  gap: var(--gamelogos-row-gap);
  width: max-content;
  will-change: transform;
  position: relative;
  z-index: 1;
}

.gamelogos__row--left .gamelogos__track {
  animation: gamelogos-scroll-left var(--gamelogos-duration) linear infinite;
  animation-delay: var(--gamelogos-delay);
}

.gamelogos__row--right .gamelogos__track {
  transform: translateX(calc(var(--gamelogos-loop-distance) * -1));
  animation: gamelogos-scroll-right var(--gamelogos-duration) linear infinite;
  animation-delay: var(--gamelogos-delay);
}

.gamelogos--static .gamelogos__row {
  height: auto;
  overflow: visible;
  justify-content: center;
  width: 100%;
}

.gamelogos--single-row .gamelogos__row {
  justify-content: center;
}

.gamelogos--static .gamelogos__track {
  width: min(100%, calc((var(--gamelogos-cover-width) * 5) + (var(--gamelogos-row-gap) * 4)));
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
}

.gamelogos--single-row .gamelogos__track {
  width: min(100%, calc((var(--gamelogos-cover-width) * 5) + (var(--gamelogos-row-gap) * 4)));
  margin: 0 auto;
}

.gamelogos--static .gamelogos__row--left .gamelogos__track,
.gamelogos--static .gamelogos__row--right .gamelogos__track {
  transform: none;
  animation: none;
}

.gamelogos__row[hidden] {
  display: none;
}

.gamelogos--static .gamelogos__cover {
  height: var(--gamelogos-top-row-height);
}

.gamelogos__cover {
  flex: 0 0 var(--gamelogos-cover-width);
  width: var(--gamelogos-cover-width);
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.gamelogos__cover-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@keyframes gamelogos-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(var(--gamelogos-loop-distance) * -1));
  }
}

@keyframes gamelogos-scroll-right {
  from {
    transform: translateX(calc(var(--gamelogos-loop-distance) * -1));
  }

  to {
    transform: translateX(0);
  }
}

.features {
  background: linear-gradient(
    180deg,
    var(--color-white) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  color: var(--color-black);
  padding: 0 var(--pad-3) var(--pad-5);
  display: flex;
  justify-content: center;
  padding-top: 200px;
}

.features__content {
  width: min(100%, var(--container-max));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 112px;
}

.features__item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.features__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #00533f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.features__icon {
  width: 36px;
  height: 36px;
  display: block;
}

.features__copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features__title {
  margin: 0;
  max-width: 363px;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.17;
  letter-spacing: -0.64px;
  font-weight: 500;
}

.features__desc {
  margin: 0;
  max-width: 363px;
  font-size: 18px;
  line-height: 1.28;
  color: var(--color-black-muted-m);
}

.community {
  padding: var(--pad-5) var(--pad-3);
  display: flex;
  justify-content: center;
}

.community__container {
  width: min(100%, var(--container-max));
}

.community__card {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: var(--color-purple);
}

.community__left {
  flex: 1 1 0;
  min-width: 0;
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  justify-content: center;
}

.community__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  background: #321d4c;
  border-radius: 8px;
  padding: 8px 16px 8px 12px;
}

.community__badge-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.community__badge span {
  font-size: 18px;
  line-height: 1.28;
  color: var(--color-white);
}

.community__heading {
  width: min(100%, 560px);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.community__heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-h2-size);
  line-height: var(--type-h2-line);
  letter-spacing: -1.28px;
  font-weight: 500;
  color: var(--color-white);
}

.community__heading p {
  margin: 0;
  font-size: 18px;
  line-height: 1.28;
  color: var(--color-white-muted-s);
}

.community__actions {
  width: 272px;
  padding-top: var(--space-2);
}

.community__btn {
  min-width: 180px;
}

.community__visual-wrap {
  position: relative;
  width: 656px;
  height: 640px;
  overflow: hidden;
  flex: 0 0 auto;
}

.community__visual {
  position: absolute;
  left: 10px;
  top: -6px;
  width: 646px;
  height: 646px;
  object-fit: cover;
  display: block;
}

.community__dot {
  position: absolute;
  width: 44px;
  height: 44px;
}

.community__dot--left {
  left: 559px;
  top: 220px;
}

.community__dot--right {
  left: 623px;
  top: 220px;
}

.community__logo-badge {
  position: absolute;
  left: 107px;
  top: 484px;
  width: 112px;
  height: 112px;
  display: inline-block;
}

.community__logo-badge-bg {
  width: 112px;
  height: 112px;
  display: block;
}

.community__logo-badge-logo {
  position: absolute;
  left: 33px;
  top: 38px;
  width: 45px;
  height: 39px;
  object-fit: contain;
}

.comparison {
  padding: var(--pad-5) var(--pad-3);
  display: flex;
  justify-content: center;
  background: var(--color-light-grey);
  color: var(--color-black);
}

.comparison__inner {
  width: min(100%, var(--container-max));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.comparison__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-h2-size);
  line-height: var(--type-h2-line);
  letter-spacing: -1.28px;
  font-weight: 500;
  color: #162033;
  text-align: center;
}

.comparison__title span {
  color: var(--color-purple);
}

.comparison__frame {
  width: min(100%, 1088px);
  border: 1px solid var(--color-black-muted-l);
  border-radius: var(--radius-lg);
  padding: 64px;
}

.comparison__table {
  width: min(100%, 960px);
  margin: 0 auto;
}

.comparison__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px 292px;
  align-items: stretch;
}

.comparison__cell {
  min-width: 0;
  border-bottom: 1px solid var(--color-black-muted-l);
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison__cell--label {
  justify-content: flex-start;
  padding: 16px 24px 16px 0;
  font-size: 16px;
  line-height: 1.28;
  color: rgba(0, 0, 0, 0.65);
}

.comparison__cell--head {
  min-height: 96px;
}

.comparison__cell--label.comparison__cell--head {
  align-items: flex-end;
  padding-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
}

.comparison__cell--hostral {
  background: var(--color-white);
}

.comparison__cell--hostral-head {
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.comparison__cell--hostral-foot {
  border-bottom: 0;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison__cell--others,
.comparison__cell--empty,
.comparison__cell--cta {
  background: transparent;
}

.comparison__hostral-logo {
  width: 188px;
  height: auto;
  display: block;
}

.comparison__others-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.17;
  letter-spacing: -0.48px;
  color: #101828;
}

.comparison__others-icon {
  width: 33px;
  height: 34px;
  display: block;
}

.comparison__mark {
  width: 24px;
  height: 24px;
  display: block;
}

.comparison__mark--cross {
  width: 24px;
  height: 24px;
}

.comparison__row--foot .comparison__cell {
  min-height: 96px;
  border-bottom: 0;
}

.comparison__slam {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 8px;
  padding: 0 0px;
}

.comparison__slam-image {
  width: 104px;
  height: 96px;
  object-fit: contain;
  display: block;
}

.comparison__slam-text {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.17;
  letter-spacing: -0.48px;
  color: var(--color-purple);
  transform: rotate(-3.73deg);
}

.comparison__row--cta .comparison__cell {
  min-height: 96px;
  border-bottom: 0;
}

.comparison__cta {
  padding: 5px 20px 5px 6px;
  line-height: 1;
}

.comparison__cta-icon {
  width: 36px;
  height: 36px;
  display: block;
}

.endcta {
  --endcta-bg-shift-x: 0px;
  --endcta-bg-shift-y: 0px;
  position: relative;
  padding-top: var(--pad-5);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.endcta__bg {
  position: absolute;
  inset: 0;
}

.endcta__bg-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: translate3d(var(--endcta-bg-shift-x), var(--endcta-bg-shift-y), 0)
    scale(1.035);
  transform-origin: center;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.endcta__content {
  position: relative;
  width: min(100%, var(--container-max));
  height: 768px;
  display: flex;
  align-items: flex-start;
}

.endcta__inner {
  width: min(100%, 616px);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.endcta__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-h2-size);
  line-height: var(--type-h2-line);
  letter-spacing: -1.28px;
  font-weight: 500;
  color: var(--color-black);
  opacity: 0;
}

.endcta__text {
  margin: 0;
  width: min(100%, 548px);
  font-size: 18px;
  line-height: 1.28;
  color: var(--color-black-muted-m);
}

.endcta__actions {
  padding-top: var(--space-4);
}

.endcta__btn {
  padding: 8px 20px 8px 6px;
  max-height: 46px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
}

.endcta.is-visible .endcta__title {
  animation: fade-in-soft 700ms ease 120ms forwards;
}

.endcta.is-visible .endcta__btn {
  animation: fade-in-soft 700ms ease 300ms forwards;
}

.endcta__btn-icon {
  width: 36px;
  height: 36px;
  display: block;
}

.newsletter {
  background: var(--color-white);
  padding: var(--space-5) var(--pad-3);
  display: flex;
  justify-content: center;
}

.newsletter__inner {
  width: min(100%, var(--container-max));
  display: flex;
  flex-direction: column;
}

.newsletter__row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.newsletter__content {
  width: min(100%, 500px);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.newsletter__content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.17;
  letter-spacing: -0.64px;
  color: var(--color-black);
  font-weight: 500;
}

.newsletter__content p {
  margin: 0;
  font-size: 18px;
  line-height: 1.28;
  color: var(--color-black-muted-m);
}

.newsletter__capture {
  width: min(100%, 500px);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  justify-content: center;
}

.newsletter__form {
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: var(--space-2);
}

.newsletter__input-wrap {
  flex: 1 1 0;
  min-width: 0;
}

.newsletter__input {
  width: 100%;
  border: 1px solid var(--color-black-muted-l);
  border-radius: var(--radius-round);
  background: var(--color-white);
  color: var(--color-black);
  font-size: 18px;
  line-height: 1.28;
  padding: 12px 16px;
}

.newsletter__input::placeholder {
  color: var(--color-black-muted-m);
  opacity: 1;
}

.newsletter__submit {
  border: 1px solid var(--color-accent-cyan);
  border-radius: var(--radius-round);
  background: var(--color-accent-cyan);
  color: var(--color-black);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  padding: 12px 20px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.newsletter__privacy {
  margin: 0;
  width: 100%;
  font-size: 16px;
  line-height: 1.28;
  color: rgba(0, 0, 0, 0.4);
}

.newsletter__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer {
  padding: 24px var(--pad-3);
  display: flex;
  justify-content: center;
}

.footer__container {
  width: min(100%, var(--container-max));
}

.footer__links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  min-width: 0;
}

.footer__link,
.footer__copyright {
  margin: 0;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 400;
  color: var(--color-black-muted-m);
  white-space: nowrap;
}

.footer__link {
  text-decoration: none;
}

.footer__copyright {
  min-width: 0;
  text-align: right;
}

@media (max-width: 1100px) {
  .sticky-header {
    padding: 8px var(--space-3) 0;
  }

  .sticky-header__inner {
    width: 100%;
  }

  .sticky-header__shell {
    width: min(100%, 960px);
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: var(--space-1);
  }

  .sticky-header__search {
    min-width: 0;
  }

  .sticky-header__searchbar {
    width: min(100%, 389px);
  }

  .hero__nav {
    padding: 0 var(--space-3);
  }

  .hero__content {
    padding: 0 var(--space-3);
  }

  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__right {
    width: 100%;
  }

  .hero__game-list {
    width: 100%;
  }

  .hero__game-card {
    width: 100%;
  }

  .reviews {
    padding: var(--space-6) var(--space-3);
  }

  .reviews__slide {
    flex: 0 0 min(86vw, 640px);
  }

  .reviews__slide:first-child {
    margin-left: var(--space-3);
  }

  .reviews__slide:last-child {
    margin-right: var(--space-3);
  }

  .reviews__quote-mark {
    left: 0;
    top: -58px;
    font-size: 140px;
    width: auto;
  }

  .usps {
    padding: var(--space-6) var(--space-3) var(--space-6);
  }

  .usps__row {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
  }

  .gamelogos {
    padding-top: var(--space-6);
  }

  .hero__searchbar,
  .gamelogos__searchbar {
    width: min(100%, 389px);
  }

  .gamelogos__container {
    height: calc(
      var(--gamelogos-top-row-height) + var(--gamelogos-bottom-row-height) +
        var(--gamelogos-row-gap)
    );
  }

  .gamelogos {
    --gamelogos-top-row-height: 320px;
    --gamelogos-bottom-row-height: 256px;
    --gamelogos-cover-width: 220px;
  }

  .features {
    padding: var(--space-6) var(--space-3);
  }

  .features__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .community__card {
    flex-direction: column;
  }

  .community__left {
    padding: var(--space-5) var(--space-3);
  }

  .community__visual-wrap {
    width: 100%;
    max-width: 656px;
    margin: 0 auto;
  }

  .endcta {
    padding-top: var(--space-6);
    padding-inline: var(--space-3);
  }

  .endcta__content {
    height: 640px;
  }

  .newsletter {
    padding: var(--space-5) var(--space-3);
  }

  .newsletter__row {
    flex-direction: column;
    gap: var(--space-4);
  }

  .newsletter__content,
  .newsletter__capture {
    width: 100%;
  }

  .footer {
    padding: var(--space-5) var(--space-3);
  }

  .footer__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__left {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .footer__copyright {
    text-align: left;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title,
  .hero__search {
    opacity: 1;
    animation: none;
  }

  .hero__searchbar-cat {
    opacity: 0;
    animation: none;
  }

  .usps__pill,
  .usps__title,
  .usp-card {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .endcta__title,
  .endcta__btn {
    opacity: 1;
    animation: none;
  }

  .endcta__bg-image {
    transform: none;
    transition: none;
  }
}

@media (max-width: 860px) {
  .hero__nav-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__links {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .sticky-header {
    padding-inline: var(--space-2);
  }

  .sticky-header__shell {
    grid-template-columns: auto auto;
    gap: 8px;
    min-height: 52px;
  }

  .sticky-header__search {
    display: none;
  }

  .sticky-header__searchbar .search-bar__dropdown {
    display: none;
  }

  .sticky-header__logo {
    width: 128px;
    height: auto;
  }

  .sticky-header__login {
    min-height: 36px;
    font-size: 14px;
    padding-inline: 20px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__searchbar,
  .gamelogos__searchbar {
    width: 100%;
    max-width: 389px;
  }

  .search-bar__dropdown {
    width: 100%;
  }

  .hero__nav {
    height: auto;
    padding: var(--space-2) var(--space-3);
  }

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

  .hero__game-logo {
    width: min(258px, 100%);
  }

  .reviews__title {
    font-size: 42px;
  }

  .reviews__embla-shell {
    --reviews-edge-offset: var(--space-3);
    width: calc(100% + (var(--space-3) * 2));
    margin-left: calc(var(--space-3) * -1);
  }

  .reviews__slide {
    flex: 0 0 min(92vw, 640px);
  }

  .reviews__subtitle {
    font-size: 16px;
  }

  .review-card {
    flex-direction: column;
    min-height: auto;
  }

  .review-card__media {
    width: 100%;
    flex-basis: auto;
    min-height: 280px;
  }

  .review-card__body {
    padding: 24px;
    gap: 28px;
  }

  .review-card__text {
    font-size: 18px;
  }

  .reviews__footer {
    justify-content: center;
  }

  .usps__title {
    font-size: 42px;
  }

  .usp-card__desc,
  .usps__pill {
    font-size: 16px;
  }

  .gamelogos__title {
    font-size: 42px;
  }

  .gamelogos__search {
    font-size: 16px;
  }

  .gamelogos__container {
    height: calc(
      var(--gamelogos-top-row-height) + var(--gamelogos-bottom-row-height) +
        var(--gamelogos-row-gap)
    );
  }

  .gamelogos__top {
    width: 100%;
  }

  .gamelogos {
    --gamelogos-top-row-height: 240px;
    --gamelogos-bottom-row-height: 192px;
    --gamelogos-cover-width: 168px;
  }

  .features__title {
    font-size: 32px;
  }

  .features__desc {
    font-size: 16px;
  }

  .community__heading h2 {
    font-size: 42px;
  }

  .community__heading p,
  .community__badge span,
  .community__btn {
    font-size: 16px;
  }

  .community__actions {
    width: auto;
  }

  .endcta__content {
    height: 560px;
  }

  .endcta__title {
    font-size: 42px;
  }

  .endcta__text,
  .endcta__btn {
    font-size: 16px;
  }

  .newsletter__content h3 {
    font-size: 32px;
  }

  .newsletter__content p,
  .newsletter__input,
  .newsletter__submit,
  .newsletter__privacy {
    font-size: 16px;
  }

  .newsletter__form {
    flex-direction: column;
    align-items: stretch;
  }

  .footer__links {
    gap: 12px;
  }

  .footer__left {
    gap: 12px 20px;
  }

  .footer__link,
  .footer__copyright {
    font-size: 16px;
  }
}

@media (max-width: 1100px) {
  .comparison__frame {
    padding: 40px 24px;
  }

  .comparison__row {
    grid-template-columns: minmax(0, 1fr) 220px 220px;
  }
}

@media (max-width: 700px) {
  .comparison {
    padding: var(--space-6) var(--space-3);
  }

  .comparison__inner {
    gap: 48px;
  }

  .comparison__title {
    font-size: 42px;
  }

  .comparison__frame {
    width: 100%;
    padding: 24px 16px;
  }

  .comparison__table {
    width: 100%;
    overflow-x: auto;
  }

  .comparison__row {
    min-width: 720px;
  }

  .comparison__cell--label {
    font-size: 15px;
  }

  .comparison__cell--label.comparison__cell--head,
  .comparison__others-brand {
    font-size: 18px;
  }

  .comparison__slam-text {
    font-size: 20px;
  }
}
