@charset "UTF-8";
:root {
  --color-bg: #040814;
  --color-text: #ffffff;
  --color-dark: #040814;
  --color-semi-dark: #3C4454;
  --color-text-muted: #8D99AE;
  --color-accent: #FF334C;
  --color-event: #FFF156;
  --color-gift: #00AAFF;
  --color-star: #f5b400;
  --font-display: "Orbitron", sans-serif;
  --heading-weight: 700;
  --heading-tracking: 0.1em;
  --font-text: "Space Grotesk", sans-serif;
  --caption: "Orbitron", sans-serif;
  --caption-weight: 600;
  --caption-tracking: 0.1em;
  --caption-leading: calc(23 / 18);
  --container: 1320px;
  --gap: 24px;
  --radius: 14px;
  --section-padding: 80px;
}

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

html {
  scrollbar-gutter: stable;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-text);
  line-height: 1.4;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
input,
textarea,
select,
[contenteditable] {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  color: var(--color-text);
  margin: 0;
  text-transform: uppercase;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.container--wide {
  max-width: none;
}
@media (max-width: 991px) {
  .container {
    max-width: 500px;
  }
  .container--wide {
    max-width: none;
  }
}

.main {
  padding: 24px 0 120px;
}
.is-home .main {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .is-home .main {
    padding-bottom: 24px;
  }
}

.section {
  padding-block: var(--section-padding);
}

.site {
  position: relative;
  padding: calc(124px + env(safe-area-inset-top)) 0 61px;
  overflow-x: clip;
}
@media (min-width: 992px) and (max-width: 1700px) {
  .site {
    zoom: 0.85;
  }
}

.is-home .site::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: url("/img/hero-bg.jpg"), url("/img/footer-bg.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center bottom;
}

@media (max-width: 991px) {
  .is-home .site::before {
    content: none;
  }
}
@media (max-width: 991px) {
  .site {
    padding: calc(79px + env(safe-area-inset-top)) 0 64px;
  }
  .main {
    padding: 16px 0 64px;
  }
}
.breadcrumbs {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}
.breadcrumbs__link {
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.breadcrumbs__link:hover {
  color: var(--color-text);
}
.breadcrumbs__sep {
  color: var(--color-semi-dark);
}
.breadcrumbs__current {
  color: var(--color-text);
}

.only-mobile {
  display: none !important;
}

@media (max-width: 991px) {
  .only-desktop {
    display: none !important;
  }
  .only-mobile {
    display: inline !important;
  }
}
.wordmark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: var(--caption-leading);
  text-transform: uppercase;
  font-size: clamp(40px, 9vw, 134px);
  color: var(--color-text);
}
.wordmark__text b {
  color: var(--color-accent);
  font-weight: inherit;
}
@media (max-width: 991px) {
  .wordmark {
    font-size: clamp(30px, 9vw, 36px);
  }
}

.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  margin: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  opacity: 0.99;
  display: inline-block;
  transition: color 0.2s;
  --border-color: var(--btn-color);
  --overlay-color: #040814;
  --glow-color: var(--btn-color);
  /* внешняя рамка */
}
.button::before, .button::after {
  clip-path: polygon(13px 0, calc(100% - 13px) 0, 100% 13px, 100% calc(100% - 13px), calc(100% - 13px) 100%, 13px 100%, 0 calc(100% - 13px), 0 13px);
  content: "";
  position: absolute;
  z-index: -1;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
}
.button::before {
  background-color: rgba(4, 8, 2, 0.5);
}
.button::after {
  background-color: var(--btn-color);
  opacity: 0;
  transition: opacity 0.2s;
}
.button {
  /* обертка для фильтра */
}
.button .button__wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0));
  transition: filter 0.2s;
}
.button {
  /* внутренняя рамка и фон */
}
.button .button__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--border-color);
  padding: 16px;
  height: 47px;
  white-space: nowrap;
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
  transition: background 0.1s;
  /* задняя поддоожка */
}
.button .button__inner::before {
  clip-path: polygon(7px 0, calc(100% - 7px) 0, 100% 7px, 100% calc(100% - 7px), calc(100% - 7px) 100%, 7px 100%, 0 calc(100% - 7px), 0 7px);
  content: "";
  position: absolute;
  z-index: 1;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: var(--overlay-color);
}
.button .button__inner::after {
  clip-path: polygon(7px 0, calc(100% - 7px) 0, 100% 7px, 100% calc(100% - 7px), calc(100% - 7px) 100%, 7px 100%, 0 calc(100% - 7px), 0 7px);
  content: "";
  position: absolute;
  z-index: 1;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  box-shadow: inset 0px 0px 20.6px var(--glow-color);
  background: color-mix(in srgb, var(--btn-color) 10%, transparent);
}
.button .button__text {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 13px;
  position: relative;
  z-index: 2;
}
.button .button__text::before, .button .button__text::after {
  content: "/";
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  color: var(--btn-color);
  transition: color 0.2s;
}
.button .button__text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.1;
}
.button .button__text-content small {
  font-size: 0.72em;
  font-weight: inherit;
  letter-spacing: inherit;
}
.button:hover .button__wrapper, .button.active .button__wrapper {
  filter: drop-shadow(0 0 30px var(--btn-color));
}
.button:hover .button__inner::before, .button.active .button__inner::before {
  opacity: 0.3;
}
.button:hover .button__text::before, .button:hover .button__text::after, .button.active .button__text::before, .button.active .button__text::after {
  color: #ffffff;
}
.button:hover::after, .button.active::after {
  opacity: 0.25;
}
.button:disabled, .button.disabled {
  color: #8D99AE;
  cursor: default;
  --border-color: #040814;
  --overlay-color: #282E3D;
  --glow-color: #040814;
}
.button:disabled .button__inner::after, .button.disabled .button__inner::after {
  background: none;
}
.button:disabled .button__text::before, .button:disabled .button__text::after, .button.disabled .button__text::before, .button.disabled .button__text::after {
  color: #040814;
}

.button--primary {
  --btn-color: #FF334C;
}

.button--event {
  --btn-color: #F5E000;
}

.button--gift {
  --btn-color: #00AAFF;
}

.button--ghost {
  --btn-color: #8D99AE;
}

.header {
  position: fixed;
  top: calc(36px + env(safe-area-inset-top));
  left: 0;
  right: 0;
  z-index: 60;
  transition: transform 0.45s ease;
  filter: drop-shadow(0 8px 24px rgb(4, 8, 20));
}
.header.is-hidden {
  transform: translateY(calc(-100% - 36px - 40px - env(safe-area-inset-top)));
}
.header__panel {
  position: relative;
  z-index: 0;
  height: 88px;
  display: flex;
  align-items: center;
  padding: 0 68px;
  overflow: visible;
}
.header__panel::before, .header__panel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 1280px 88px;
  background-image: url("/img/header-frame.svg");
}
.header__panel::before {
  left: 0;
  background-position: left center;
}
.header__panel::after {
  right: 0;
  background-position: right center;
}
.header__segment {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__segment--lang, .header__segment--phone {
  flex: 0 0 64px;
  padding-bottom: 6px;
}
.header__segment--menu {
  flex: 1 1 auto;
}
.header__segment--logo {
  flex: 0 0 230px;
  padding-top: 9px;
}
.header__segment--book {
  flex: 0 0 253px;
}
.header__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.header__tagline, .header__link {
  font-family: var(--caption);
  font-weight: var(--caption-weight);
  letter-spacing: var(--caption-tracking);
  line-height: var(--caption-leading);
  text-transform: uppercase;
}
.header__tagline {
  color: var(--color-text-muted);
  font-size: 14px;
}
.header__link {
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.header__link:hover {
  color: var(--color-text);
}
.header__link.is-active {
  color: var(--color-text);
}
.header__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.header__menu {
  --slahses-gap: clamp(14px, 1.3vw, 16px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px var(--slahses-gap);
}
.header__menu--primary {
  font-size: clamp(14px, 1.3vw, 18px);
}
.header__menu--secondary {
  font-size: clamp(12px, 1.3vw, 14px);
}
.header__menu .header__item::before, .header__menu::after {
  content: "//";
  color: var(--color-dark);
  font-family: var(--caption);
  font-weight: var(--caption-weight);
  letter-spacing: var(--caption-tracking);
  transition: color 0.2s ease;
}
.header__menu .header__item::before {
  margin-right: var(--slahses-gap);
}
.header__menu--secondary .header__item::before, .header__menu--secondary::after {
  content: "/";
}
.header__menu .header__item:hover .header__link {
  color: var(--color-text);
}
.header__menu .header__item:hover::before,
.header__menu .header__item:hover + .header__item::before {
  color: var(--color-text);
}
.header__menu:has(.header__item:last-child:hover)::after {
  color: var(--color-text);
}
@media (max-width: 1270px) {
  .header .header__menu .header__item:first-child::before,
  .header .header__menu::after {
    content: none;
  }
  .header .header__menu {
    --slahses-gap: 10px;
  }
  .header .header__menu--primary {
    font-size: clamp(12px, 1.2vw, 16px);
  }
  .header .header__menu--secondary {
    font-size: clamp(10px, 1.1vw, 14px);
  }
}
.header__lang {
  position: relative;
}
.header__lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-text-muted);
  font-family: var(--caption);
  font-weight: var(--caption-weight);
  letter-spacing: var(--caption-tracking);
  text-transform: uppercase;
  font-size: 14px;
  transition: color 0.2s ease;
}
.header__lang-trigger:hover {
  color: var(--color-text);
}
.header__lang.is-open .header__lang-caret {
  transform: rotate(180deg);
}
.header__lang-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-surface-alt);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.header__lang-list a {
  color: var(--color-text-muted);
  font-family: var(--caption);
  font-weight: var(--caption-weight);
  letter-spacing: var(--caption-tracking);
  text-transform: uppercase;
  font-size: 14px;
  transition: color 0.2s ease;
}
.header__lang-list a:hover, .header__lang-list a.is-active {
  color: var(--color-text);
}
.header__lang.is-open .header__lang-list {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.header__phone {
  display: inline-flex;
}
.header__phone-wave {
  opacity: 0.5;
  transition: stroke 0.2s ease, opacity 0.2s ease;
}
.header__phone:hover .header__phone-wave {
  stroke: var(--color-text);
  animation: phone-wave 1.1s ease-in-out infinite;
}
.header__burger {
  --step: 0.2s;
  --line: var(--color-text);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
  width: 46px;
  height: 46px;
  padding: 13px 11px;
  background: #282E3D;
  box-shadow: inset 0 0 12px #040814;
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
}
.header__burger-line {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--line);
  translate: var(--x, 0) var(--y, 0);
  rotate: var(--rotate, 0deg);
  transition-property: translate, rotate;
  transition-duration: var(--step);
  transition-delay: calc(var(--step) * var(--translate-index, 0)), calc(var(--step) * var(--rotate-index, 0));
  transition-timing-function: cubic-bezier(0.5, 1.75, 0.75, 1.25);
}
.header__burger[aria-expanded=true] .header__burger-line:nth-of-type(1) {
  --y: 6px;
  --rotate: 45deg;
}
.header__burger[aria-expanded=true] .header__burger-line:nth-of-type(2) {
  --x: 200%;
}
.header__burger[aria-expanded=true] .header__burger-line:nth-of-type(3) {
  --y: -6px;
  --rotate: -45deg;
}
.header__burger[aria-expanded=true] .header__burger-line:nth-of-type(2) {
  --translate-index: 0;
}
.header__burger[aria-expanded=true] .header__burger-line:is(:nth-of-type(1), :nth-of-type(3)) {
  --translate-index: 1.5;
  --rotate-index: 2.5;
}
.header__burger[aria-expanded=false] .header__burger-line:nth-of-type(2) {
  --translate-index: 2;
}
.header__burger[aria-expanded=false] .header__burger-line:is(:nth-of-type(1), :nth-of-type(3)) {
  --translate-index: 1;
  --rotate-index: 0;
}
@media (max-width: 991px) {
  .header {
    top: calc(16px + env(safe-area-inset-top));
  }
  .header.is-hidden {
    transform: translateY(calc(-100% - 16px - 40px - env(safe-area-inset-top)));
  }
  .header__panel {
    height: 62px;
    padding: 0 8px 0 16px;
    gap: 16px;
    background: transparent;
  }
  .header__panel::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    width: auto;
    z-index: -1;
    background: #4D5466;
    background-image: none;
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  }
  .header__panel::before {
    inset: 2px;
    width: auto;
    z-index: -1;
    background: #3C4354;
    background-image: none;
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  }
  .header__segment--menu, .header__segment--book {
    display: none;
  }
  .header__segment--logo {
    flex: 1 1 auto;
    justify-content: flex-start;
    padding: 0;
  }
  .header__logo {
    width: 110px;
    height: auto;
  }
  .header__brand {
    gap: 8px;
    align-items: flex-start;
  }
  .header__tagline {
    font-size: 10px;
    line-height: 9px;
    letter-spacing: 0.07em;
  }
  .header__segment--lang, .header__segment--phone {
    display: flex;
    flex: 0 0 auto;
    padding: 0;
  }
  .header__burger {
    display: inline-flex;
  }
}

body.is-drawer-open {
  overflow: hidden;
}

@keyframes phone-wave {
  0%, 100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}
.drawer {
  position: fixed;
  top: 78px;
  left: 20px;
  right: 20px;
  z-index: 50;
  visibility: hidden;
  transition: visibility 0s linear 0.45s;
}
.drawer.is-open {
  visibility: visible;
  transition: visibility 0s;
}
.drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 20, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease 0.15s;
}
.drawer.is-open .drawer__overlay {
  opacity: 1;
  transition-delay: 0s;
}
.drawer.is-open .drawer__panel {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}
.drawer__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  margin: 16px auto;
  display: flex;
  flex-direction: column;
  padding: 24px 38px;
  background: #4D5466;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 40px), calc(100% - 12px) calc(100% - 28px), calc(100% - 36px) calc(100% - 28px), calc(100% - 64px) 100%, 64px 100%, 36px calc(100% - 28px), 12px calc(100% - 28px), 0 calc(100% - 40px), 0 12px);
  opacity: 0;
  transform: translateY(-24px);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.5, 1.75, 0.75, 1.25);
}
.drawer__panel::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: #3C4354;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 40px), calc(100% - 12px) calc(100% - 28px), calc(100% - 36px) calc(100% - 28px), calc(100% - 64px) 100%, 64px 100%, 36px calc(100% - 28px), 12px calc(100% - 28px), 0 calc(100% - 40px), 0 12px);
  z-index: -1;
}
.drawer__menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 16px;
  margin-bottom: 24px;
}
.drawer__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.drawer__item:nth-child(3n) .drawer__slash {
  display: none;
}
.drawer__link {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.1;
  color: var(--color-text);
  transition: color 0.2s ease;
}
.drawer__link:hover {
  color: var(--color-accent);
}
.drawer__link.is-active {
  color: var(--color-accent);
}
.drawer__slash {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  font-size: 16px;
  color: var(--color-dark);
}
.drawer__contact {
  text-align: center;
}
.drawer__contact-label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--caption);
  font-weight: var(--caption-weight);
  letter-spacing: var(--caption-tracking);
  text-transform: uppercase;
  font-size: 14px;
  color: var(--color-text-muted);
}
.drawer__contact-value {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: 18px;
  color: var(--color-text);
  transition: color 0.2s ease;
}
.drawer__contact-value:hover {
  color: var(--color-accent);
}
.drawer__socials {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
}
.drawer__social {
  display: inline-flex;
  width: 46px;
  height: 46px;
}
.drawer__social img {
  display: block;
  width: 100%;
  height: 100%;
}
.drawer__social--whatsapp {
  color: #3CDD1B;
}
.drawer__social--email {
  color: var(--color-event);
}
.drawer__social--instagram {
  color: var(--color-accent);
}
.drawer__book {
  align-self: center;
  margin-top: 32px;
  width: 100%;
  max-width: 200px;
}

.hero {
  --hero-shape: polygon(
      92.8125% 0%, 94.6875% 5.393%, 98.75% 5.393%, 100% 8.989%,
      100% 83.820%, 98.75% 87.416%, 96.094% 87.416%, 91.719% 100%,
      51.563% 100%, 47.188% 87.416%, 7.188% 87.416%, 5.313% 82.022%,
      1.25% 82.022%, 0% 78.427%, 0% 8.989%, 1.25% 5.393%,
      5.313% 5.393%, 7.188% 0%
  );
}
.hero__slider {
  position: relative;
  display: grid;
}
.hero__slide {
  grid-area: 1/1;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}
.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero__media {
  position: relative;
  margin: 0;
  aspect-ratio: 1280/445;
}
.hero__media img, .hero__media video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: var(--hero-shape);
  background: var(--color-dark);
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: var(--hero-shape);
  background-image: linear-gradient(180deg, rgba(4, 8, 20, 0) 40%, #040814 100%), linear-gradient(180deg, rgba(4, 8, 20, 0) 0%, #040814 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.hero__glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}
.hero__glow feFlood {
  flood-color: var(--slide-glow, var(--color-accent));
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/hero-banner.svg") center/100% 100% no-repeat;
  pointer-events: none;
  z-index: 3;
}
.hero__play, .hero__pause {
  position: absolute;
  top: calc(50% - 80px);
  left: 50%;
  margin: auto;
  margin-left: -36px;
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
  cursor: pointer;
  z-index: 4;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hero__play svg, .hero__pause svg {
  width: 72px;
  height: 72px;
}
.hero__play:hover, .hero__pause:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.05);
}
.hero__pause {
  display: none;
}
.hero__media.is-playing .hero__play {
  display: none;
}
.hero__media.is-playing:hover .hero__pause {
  display: inline-flex;
}
.hero__caption {
  position: absolute;
  left: clamp(70px, 8vw, 111px);
  bottom: 91px;
  z-index: 2;
  transition: opacity 0.4s ease;
}
.hero__title {
  margin: 0 0 8px;
  font-family: var(--caption);
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: var(--caption-tracking);
}
.hero__subtitle {
  margin: 10px 0 0;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
}
.hero__actions {
  position: absolute;
  right: clamp(70px, 8vw, 111px);
  bottom: 32px;
  z-index: 2;
  display: flex;
  gap: var(--gap);
  width: 40%;
}
.hero__caption--vex {
  top: 105px;
  bottom: auto;
}
.hero__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__slide--vex .hero__actions {
  justify-content: center;
}
.hero__slide--vex .hero__actions .hero__btn {
  flex: 0 0 auto;
}
.hero__title--vex {
  font-size: 66px;
  line-height: 1.1;
  text-transform: uppercase;
  filter: drop-shadow(0 0 10px rgba(0, 170, 255, 0.7)) drop-shadow(0 0 16px rgba(0, 170, 255, 0.7));
}
.hero__subtitle--vex {
  margin-top: 16px;
  font-size: 20px;
  line-height: 1.4;
}
.hero__slide--vex .hero__media::before {
  content: none;
}
.hero__btn {
  flex: 1;
}
@media (max-width: 1270px) {
  .hero__btn .button__text {
    font-size: 14px;
    line-height: 1.1;
  }
}
.hero__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.hero__nav:hover {
  color: var(--color-text);
}
.hero__nav--next svg {
  transform: scaleX(-1);
}
.hero__nav {
  width: 48px;
  height: 48px;
}
.hero__nav svg {
  width: 34px;
  height: 29px;
}
.hero__nav {
  position: absolute;
  bottom: -9px;
  z-index: 3;
}
.hero__nav--prev {
  left: 0;
}
.hero__nav--next {
  right: 0;
}
.hero__band {
  position: absolute;
  z-index: 1;
  bottom: -24px;
  left: 139px;
}
.hero__band-title {
  position: relative;
  display: inline-block;
  padding: 0 clamp(46px, 4.2vw, 56px);
  z-index: 0;
  font-family: var(--caption);
  font-weight: var(--caption-weight);
  font-size: clamp(20px, 2.8vw, 36px);
  line-height: clamp(36px, 4.8vw, 64px);
  letter-spacing: var(--caption-tracking);
  text-transform: uppercase;
  color: var(--color-text);
}
.hero__band-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-semi-dark);
  transform: skewX(45deg);
  z-index: -1;
}
.hero__wordmark {
  margin-top: 66px;
}
.hero__intro {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.hero__intro-col {
  margin: 0;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero__intro-col + .hero__intro-col {
  margin-top: 24px;
}
@media (max-width: 991px) {
  .hero {
    --hero-shape: polygon(
        3.75% 0%, 96.25% 0%, 100% 2.73%, 100% 89.07%,
        96.25% 91.8%, 88.75% 91.8%, 80% 98.18%, 20% 98.18%,
        11.25% 91.8%, 3.75% 91.8%, 0% 89.07%, 0% 2.73%
    );
    padding: 0;
  }
  .hero__slide {
    display: flex;
    flex-direction: column;
    padding-bottom: 32px;
    height: 431px;
  }
  .hero__slide::after, .hero__slide::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    max-width: 255px;
    background: url(/img/hero-banner-mob.svg) no-repeat;
    pointer-events: none;
    z-index: 3;
    background-size: cover;
  }
  .hero__slide::after {
    background-position: top right;
    right: 0;
  }
  .hero__slide::before {
    background-position: top left;
    left: 0;
  }
  .hero__media {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    aspect-ratio: 320/220;
    z-index: 0;
  }
  .hero__media img, .hero__media video {
    -o-object-position: center top;
       object-position: center top;
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%, 0 12px);
  }
  .hero__media::before {
    clip-path: none;
  }
  .hero__media::after {
    display: none;
  }
  .hero__slide--vex .hero__media {
    inset: 0;
    transform: none;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
  .hero__slide--vex .hero__media img {
    clip-path: var(--hero-shape);
  }
  .hero__glow {
    display: none;
  }
  .hero__play, .hero__pause {
    width: 48px;
    height: 48px;
    margin-left: -24px;
    top: 70px;
  }
  .hero__play svg, .hero__pause svg {
    width: 48px;
    height: 48px;
  }
  .hero__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .hero__subtitle {
    font-size: 18px;
    margin: 0;
  }
  .hero__caption {
    position: static;
    text-align: center;
    padding: 0 28px;
    margin-top: auto;
  }
  .hero__actions {
    position: static;
    width: auto;
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
    margin-top: 16px;
    gap: 16px;
  }
  .hero__btn {
    flex: none;
  }
  .hero__nav {
    bottom: auto;
    top: 406px;
    width: 32px;
    height: 32px;
  }
  .hero__nav svg {
    width: 22px;
    height: 19px;
  }
  .hero__nav--prev {
    left: 0;
  }
  .hero__nav--next {
    right: 0;
  }
  .hero__band {
    position: relative;
    bottom: auto;
    left: auto;
    text-align: center;
    margin-top: 24px;
  }
  .hero__band-title {
    padding: 0;
    font-size: 24px;
    line-height: 1.1;
  }
  .hero__band-title::before {
    content: none;
  }
  .hero__wordmark {
    margin-top: 16px;
  }
  .hero__intro {
    margin-top: 24px;
    text-align: left;
  }
  .hero__intro-col {
    font-size: 18px;
  }
  .hero__intro-col + .hero__intro-col {
    margin-top: 16px;
  }
}

.hero--vex-banner {
  padding-bottom: 120px;
}
.hero--vex-banner .hero__slide {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .hero--vex-banner {
    padding-bottom: 40px;
  }
}

.stats {
  position: relative;
  text-align: center;
  overflow: hidden;
  height: 800px;
  margin-top: 64px;
}
.stats__media {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -960px;
  z-index: -1;
  height: 800px;
  width: 1920px;
}
.stats__media picture {
  display: contents;
}
.stats__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stats .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 100%;
}
.stats__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 40px;
}
.stats__subtitle {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-text-muted);
}
.stats__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-top: 16px;
}
.stats__number {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-accent);
  line-height: 1.1;
  white-space: nowrap;
}
.stats__label {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text);
  text-wrap: balance;
}
@media (max-width: 991px) {
  .stats {
    height: auto;
    margin-top: 60px;
    padding-bottom: 0;
  }
  .stats__media {
    left: 50%;
    margin-left: -180px;
    width: 360px;
    height: 360px;
  }
  .stats__media img {
    -o-object-position: center;
       object-position: center;
  }
  .stats__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(4, 8, 20, 0) 54.81%, #040814 100%);
  }
  .stats__media::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 180px;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(4, 8, 20, 0) 0%, #040814 100%);
    transform: matrix(-1, 0, 0, 1, 0, 0);
  }
  .stats .container {
    justify-content: flex-start;
    min-height: auto;
    padding-top: 296px;
  }
  .stats__title {
    font-size: 20px;
    line-height: 1.1;
  }
  .stats__subtitle {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.1;
  }
  .stats__list {
    grid-template-columns: auto 1fr;
    -moz-column-gap: 16px;
         column-gap: 16px;
    row-gap: 16px;
    margin-top: 8px;
    text-align: left;
  }
  .stats__item {
    display: contents;
  }
  .stats__number {
    font-size: 26px;
    line-height: 1.1;
    text-align: right;
  }
  .stats__label {
    margin-top: 0;
    align-self: center;
    font-size: 14px;
  }
}

.how-to-play {
  padding: 120px 0;
}
.how-to-play__inner {
  display: grid;
  grid-template-columns: 1fr 57%;
  gap: var(--gap);
  align-items: center;
}
.how-to-play__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin-bottom: 64px;
}
.how-to-play__content {
  position: relative;
  z-index: 3;
  padding: 44px 32px 36px;
}
.how-to-play__content::before, .how-to-play__content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 63px;
  background: url("/img/how-to-play-border.svg") no-repeat center/100% 100%;
  pointer-events: none;
}
.how-to-play__content::before {
  top: 0;
}
.how-to-play__content::after {
  bottom: 0;
  transform: scaleY(-1);
}
.how-to-play__frame {
  display: none;
}
.how-to-play__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.how-to-play__step {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.how-to-play__step-number {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-accent);
}
.how-to-play__cta {
  margin-top: 32px;
  display: inline-block;
}
.how-to-play__step-num {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 30px;
}
.how-to-play__step-text {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0;
}
.how-to-play__media {
  position: relative;
  margin: 0;
}
.how-to-play__media picture {
  display: contents;
}
.how-to-play__media::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(50% 50% at 50% 50%, var(--color-accent) 56%, rgba(255, 51, 76, 0) 97%) no-repeat;
  background-size: 560px 560px;
  height: 700px;
  background-position: center bottom -25px;
}
.how-to-play__media img {
  position: relative;
  z-index: 1;
}
.how-to-play__media::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 861px;
  height: 357px;
  left: -79px;
  bottom: 0;
  background: linear-gradient(180deg, rgba(4, 8, 20, 0) 0%, #040814 100%);
  pointer-events: none;
}
@media (max-width: 1270px) {
  .how-to-play__inner {
    grid-template-columns: 1fr 51%;
  }
  .how-to-play__media::before {
    background-size: 510px 510px;
  }
}
@media (max-width: 991px) {
  .how-to-play {
    padding: 64px 0;
  }
  .how-to-play__title {
    font-size: 26px;
    line-height: 1.1;
    margin-bottom: 16px;
    text-align: center;
  }
  .how-to-play__inner {
    position: relative;
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
    justify-content: center;
    padding-top: 273px;
  }
  .how-to-play__media {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    margin: 0;
  }
  .how-to-play__media img {
    width: 100%;
  }
  .how-to-play__media::before {
    background-size: 350px 410px;
    height: 350px;
    background-position: bottom -115px center;
  }
  .how-to-play__media::after {
    width: 100%;
    left: 0;
    height: 155px;
  }
  .how-to-play__content {
    padding: 24px 16px 32px;
  }
  .how-to-play__content::before, .how-to-play__content::after {
    content: none;
  }
  .how-to-play__frame {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 26px;
    pointer-events: none;
  }
  .how-to-play__frame--top {
    top: 0;
  }
  .how-to-play__frame--bottom {
    bottom: 0;
    transform: scaleY(-1);
  }
  .how-to-play__steps {
    gap: 16px;
  }
  .how-to-play__step {
    gap: 4px;
  }
  .how-to-play__step-number {
    font-size: 14px;
  }
  .how-to-play__step-num {
    font-size: 18px;
    line-height: 1.1;
  }
  .how-to-play__step-text {
    font-size: 18px;
  }
  .how-to-play__cta {
    margin-top: 24px;
  }
}

.games {
  text-align: center;
  overflow-x: clip;
  padding-bottom: 120px;
  background-image: url("/img/games-bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
}
.games--no-bg {
  background-image: none;
}
.games__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
}
.games__subtitle {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-text-muted);
  text-wrap: balance;
}
.games__filters {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 32px;
}
.games__filters li {
  display: flex;
  align-items: center;
  gap: 32px;
}
.games__filters li:not(:first-child)::before {
  content: "//";
  color: var(--color-semi-dark);
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.games__filter {
  padding: 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.games__filter:hover {
  color: var(--color-text);
}
.games__filter--active {
  color: var(--color-accent);
}
.games__slider {
  position: relative;
  margin-top: 32px;
  height: 540px;
  overflow: visible;
  transition: opacity 0.25s ease;
}
.games__slider.is-switching {
  opacity: 0;
}
.games__list {
  display: flex;
  height: 100%;
}
.games__card {
  width: 368px;
  height: 540px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: url("/img/games-card-frame.svg") no-repeat center/100% 100%;
  position: relative;
}
.games__card:hover .games__glows::after, .games__card:hover .games__glows::before {
  background-color: var(--color-accent);
}
.games__card:hover .games__glows::after {
  filter: drop-shadow(2px 4px 5.4px var(--color-accent));
}
.games__card:hover .games__glows::before {
  filter: drop-shadow(-2px 4px 5.4px var(--color-accent));
}
.games__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.games__poster {
  flex-shrink: 0;
  margin: 18px 18px 0;
  height: 253px;
  clip-path: polygon(12px 0, 320px 0, 332px 12px, 332px 232px, 312px 253px, 20px 253px, 0 232px, 0 12px);
}
.games__poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.games__glows {
  position: absolute;
  z-index: -1;
  top: 58%;
  height: 60px;
  left: 0;
  right: 0;
}
.games__glows::after, .games__glows::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 60px;
  background-color: #040814;
  transition: filter 0.2s, background-color 0.2s;
}
.games__glows::after {
  right: 8px;
  transform: skewY(-45deg);
  box-shadow: inset -2px -3px 13px var(--color-accent);
  filter: drop-shadow(2px 4px 5.4px transparent);
}
.games__glows::before {
  left: 8px;
  transform: skewY(45deg);
  box-shadow: inset 2px -3px 13px var(--color-accent);
  filter: drop-shadow(-2px 4px 5.4px transparent);
}
.games__body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 0 24px;
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.games__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
  margin-bottom: 8px;
}
.games__modes {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.games__modes i {
  font-style: normal;
  color: var(--color-text-muted);
}
.games__age {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 16px;
  color: var(--color-text);
  padding: 0 5px;
  border: 1px solid currentColor;
  border-radius: 4px;
}
.games__name {
  margin-top: auto;
  max-width: 100%;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  padding: 0 40px;
}
.games__desc {
  margin: 8px 0 16px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-text-muted);
  text-wrap: balance;
  padding: 0 40px;
}
.games__actions {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.games__play {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}
.games__details {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.4s;
}
.games__details::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.games__details:hover {
  color: var(--color-accent);
}
.games__footer {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.games__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.games__nav:hover {
  color: var(--color-text);
}
.games__nav--next svg {
  transform: scaleX(-1);
}
.games__nav {
  width: 48px;
  height: 48px;
}
.games__nav svg {
  width: 34px;
  height: 29px;
}
.games__dots {
  display: none;
  --swiper-pagination-bullet-horizontal-gap: 6px;
  --swiper-pagination-bullet-size: 6px;
}
.games__dots .swiper-pagination-bullet {
  border-radius: 0;
  background: var(--color-text-muted);
  opacity: 1;
}
.games__dots .swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
}
@media (max-width: 991px) {
  .games {
    background-image: none;
    padding-bottom: 64px;
  }
  .games__title {
    font-size: 26px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .games__subtitle {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .games__filters {
    margin-top: 24px;
    margin-inline: -20px;
    padding-inline: 20px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .games__filters::-webkit-scrollbar {
    display: none;
  }
  .games__filters li {
    flex-shrink: 0;
    gap: 16px;
  }
  .games__filters li:not(:first-child)::before {
    font-size: 14px;
  }
  .games__filter {
    font-size: 14px;
  }
  .games__slider {
    margin-top: 24px;
  }
  .games__cta {
    display: none;
  }
  .games__footer {
    position: relative;
    min-height: 32px;
    margin-top: 24px;
  }
  .games__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
  }
  .games__nav svg {
    width: 22px;
    height: 19px;
  }
  .games__nav--prev {
    left: 0;
  }
  .games__nav--next {
    right: 0;
  }
  .games__dots {
    display: block;
    position: absolute;
    bottom: 13px !important;
  }
  .games__slider {
    height: 387px;
  }
  .games__card {
    width: 264px;
    height: 387px;
  }
  .games__poster {
    margin: 13px 13px 0;
    height: 181px;
    clip-path: polygon(9px 0, 229px 0, 238px 9px, 238px 166px, 224px 181px, 14px 181px, 0 166px, 0 9px);
  }
  .games__glows {
    top: 227px;
    height: 30px;
  }
  .games__glows::after, .games__glows::before {
    width: 5px;
    height: 30px;
  }
  .games__glows::after {
    right: 6px;
  }
  .games__glows::before {
    left: 6px;
  }
  .games__body {
    padding: 13px 0 18px;
  }
  .games__meta {
    padding: 0 28px;
  }
  .games__modes {
    font-size: 10px;
    gap: 6px;
  }
  .games__age {
    font-size: 10px;
    line-height: 12px;
    padding: 0 4px;
  }
  .games__name {
    font-size: 18px;
    line-height: 1.1;
    line-height: 20px;
    padding: 0 28px;
  }
  .games__desc {
    margin-top: 6px;
    font-size: 11px;
    padding: 0 28px;
  }
  .games__actions {
    margin-top: auto;
    gap: 12px;
  }
  .games__details {
    font-size: 13px;
  }
}

.games-page {
  position: relative;
  padding-bottom: 120px;
}
.games-page__title {
  margin: 0;
  text-align: center;
  width: 100%;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: clamp(40px, 9vw, 134px);
  line-height: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
html[lang=es] .games-page__title, html[lang=fr] .games-page__title {
  font-size: clamp(40px, 9vw, 113.9px);
}
.games-page__title {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: var(--color-text);
}
.games-page__title-text {
  text-align: center;
}
.games-page__slash {
  line-height: 1;
  color: var(--color-text);
}
.games-page__title-accent {
  color: var(--color-accent);
}
.games-page--vex .games-page__title-accent {
  color: var(--color-gift);
}
.games-page--vex {
  padding-bottom: 0 !important;
}
.games-page__list {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.games-page__name {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: clamp(55px, 5.5vw, 66px);
  line-height: 1.1;
}
.games-page__item:nth-child(even) .game-detail__card {
  grid-template-columns: 1fr 368px;
}
.games-page__item:nth-child(even) .game-detail__info {
  order: 1;
}
.games-page__item:nth-child(even) .game-detail__poster-col {
  order: 2;
}
.games-page__gallery-block {
  margin-top: 64px;
}
.games-page__gallery-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.games-page__gallery-controls {
  display: none;
}
.games-page__thumb {
  margin: 0;
  aspect-ratio: 16/10;
  background-color: var(--color-semi-dark);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}
.games-page__thumb picture {
  display: contents;
}
.games-page__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.games-page__thumb--trailer {
  position: relative;
  cursor: pointer;
}
.games-page__thumb--trailer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 20, 0.35);
  transition: background 0.2s ease;
}
.games-page__thumb--trailer:hover::after {
  background: rgba(4, 8, 20, 0.15);
}
.games-page__thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  color: var(--color-text);
  background: transparent;
  border: 4px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.games-page__thumb-play svg {
  width: 64px;
  height: 64px;
}
.games-page__thumb--trailer:hover .games-page__thumb-play {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translate(-50%, -50%) scale(1.05);
}
@media (max-width: 991px) {
  .games-page__gallery-block {
    margin-top: 24px;
  }
  .games-page__gallery {
    overflow: hidden;
  }
  .games-page__gallery-track {
    display: flex;
    grid-template-columns: none;
    gap: 0;
  }
  .games-page__thumb {
    flex-shrink: 0;
    width: 266px;
    height: auto;
    aspect-ratio: 266/175;
  }
  .games-page__gallery-controls {
    display: block;
    position: relative;
    min-height: 32px;
    margin-top: 24px;
    padding: 0 20px;
  }
  .games-page__gallery-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
  }
  .games-page__gallery-nav:hover {
    color: var(--color-text);
  }
  .games-page__gallery-nav--next svg {
    transform: scaleX(-1);
  }
  .games-page__gallery-nav {
    width: 32px;
    height: 32px;
  }
  .games-page__gallery-nav svg {
    width: 22px;
    height: 19px;
  }
  .games-page__gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .games-page__gallery-nav--prev {
    left: 20px;
  }
  .games-page__gallery-nav--next {
    right: 20px;
  }
  .games-page__gallery-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px !important;
    text-align: center;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-size: 6px;
  }
  .games-page__gallery-dots .swiper-pagination-bullet {
    border-radius: 0;
    background: var(--color-text-muted);
    opacity: 1;
  }
  .games-page__gallery-dots .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
  }
}
@media (max-width: 991px) {
  .games-page {
    padding-bottom: 64px;
  }
  .games-page__title {
    margin: 0 0 24px;
    font-size: 32px !important;
  }
  html[lang=es] .games-page__title, html[lang=fr] .games-page__title {
    font-size: 30px !important;
  }
  .games-page__title {
    line-height: 1.1;
    width: auto;
    gap: 8px;
  }
  .games-page__list {
    gap: 64px;
  }
  .games-page__item:nth-child(even) .game-detail__card {
    grid-template-columns: 1fr;
  }
  .games-page__item:nth-child(even) .game-detail__info,
  .games-page__item:nth-child(even) .game-detail__poster-col {
    order: 0;
  }
  .games-page .game-detail__card {
    gap: 24px;
  }
  .games-page .game-detail__poster-col {
    max-width: 246px;
  }
  .games-page .game-detail__poster {
    max-width: 246px;
  }
  .games-page__name {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .games-page .game-detail__badge {
    font-size: 18px;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .games-page .game-detail__params {
    font-size: 14px;
    margin: 0 0 16px;
  }
  .games-page .game-detail__headline {
    font-size: 18px;
    line-height: 1.1;
    margin: 0;
  }
  .games-page .game-detail__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
    gap: 24px 16px;
  }
  .games-page .game-detail__stat {
    flex: 1 1 calc(50% - 8px);
    max-width: calc(50% - 8px);
    gap: 8px;
  }
  .games-page .game-detail__stat-num {
    font-size: 26px;
    line-height: 1.1;
  }
  .games-page .game-detail__stat-label {
    font-size: 14px;
  }
  .games-page .game-detail__actions {
    margin-top: 24px;
    gap: 24px;
  }
}

.game-resova {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .game-resova {
    padding-bottom: 64px;
  }
}

.games-toggle {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 32px 0 80px;
}
.games-toggle__link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.games-toggle__link:hover {
  color: var(--color-text);
}
.games-toggle__link--arena.is-active {
  color: var(--color-accent);
}
.games-toggle__link--vex.is-active {
  color: var(--color-gift);
}
.games-toggle__main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.games-toggle__sub {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text-muted);
}
.games-toggle__new {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0 12px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-dark);
}
.games-toggle__new::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-text-muted);
  transform: skewX(337deg);
}
.games-toggle__sep {
  color: var(--color-semi-dark);
}
@media (max-width: 991px) {
  .games-toggle {
    font-size: 14px;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 0;
  }
  .games-toggle__link {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
  }
  .games-toggle__new {
    font-size: inherit;
  }
}

.vex-catalog,
.vex-game-modal,
.vex-faq {
  --color-accent: var(--color-gift);
}

.vex-faq .faq__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .vex-faq .faq__title {
    font-size: 20px;
    line-height: 1.1;
  }
}

.vex-new {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0 40px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: 0.57em;
  line-height: 1.28em;
  top: 3px;
  color: var(--color-dark);
  vertical-align: middle;
  margin-right: 16px;
}
.vex-new::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
  transform: skewX(323deg);
}
@media (max-width: 991px) {
  .vex-new {
    font-size: 20px;
    padding: 0 9px;
    line-height: 24px;
    top: 0;
  }
}

.vex-hero {
  padding-top: 24px;
  padding-bottom: 120px;
}
.vex-hero__inner {
  display: grid;
  grid-template-columns: 1fr 737px;
  gap: 24px;
  align-items: center;
}
.vex-hero__content {
  max-width: 519px;
}
.vex-hero__heading {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: 36px;
  margin: 0;
  color: var(--color-gift);
}
.vex-hero__text {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 16px 0 0;
  color: var(--color-text-muted);
}
.vex-hero__features {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.vex-hero__feature {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  position: relative;
  padding-left: 40px;
  line-height: 1.2;
  color: var(--color-text);
}
.vex-hero__feature::before {
  content: "//";
  position: absolute;
  left: 0;
  color: var(--color-gift);
}
.vex-hero__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.vex-hero__media {
  margin: 0;
}
.vex-hero__media picture {
  display: contents;
}
.vex-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .vex-hero {
    padding-bottom: 64px;
  }
  .vex-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .vex-hero__media {
    order: -1;
    margin-bottom: 16px;
    width: 100%;
  }
  .vex-hero__heading {
    font-size: 20px;
    line-height: 1.1;
  }
  .vex-hero__text {
    font-size: 18px;
    margin-top: 8px;
  }
  .vex-hero__features {
    margin-top: 16px;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
  }
  .vex-hero__feature {
    font-size: 14px;
  }
  .vex-hero__actions {
    margin-top: 24px;
    gap: 24px;
    align-items: stretch;
    width: 100%;
  }
}

.vex-why {
  padding-bottom: 120px;
}
.vex-why__box {
  position: relative;
}
.vex-why__bg {
  position: relative;
  z-index: 0;
  height: 833px;
  margin: 0;
  overflow: hidden;
}
.vex-why__bg video {
  position: absolute;
  z-index: 0;
  top: 0;
  left: calc(50% - 960px);
  width: 1920px;
  height: 833px;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.vex-why__bg::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: calc(50% - 960px);
  width: 1920px;
  height: 833px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(4, 8, 20, 0) 30.84%, #040814 100%);
  pointer-events: none;
}
.vex-why__bg::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 455px;
  background: linear-gradient(180deg, rgba(4, 8, 20, 0) 0%, #040814 100%);
  pointer-events: none;
}
.vex-why__head {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  padding-inline: 20px;
  text-align: center;
}
.vex-why__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  white-space: pre-line;
}
.vex-why__subtitle {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 16px 0 0;
  color: var(--color-text-muted);
}
.vex-why__highlights {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container);
  padding-inline: 20px;
  display: flex;
  gap: 24px;
}
.vex-why__highlight {
  flex: 1;
  text-align: center;
}
.vex-why__highlight-title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  white-space: pre-line;
  color: var(--color-gift);
}
.vex-why__highlight-text {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 16px auto 0;
  max-width: 320px;
  color: var(--color-text-muted);
}
@media (max-width: 991px) {
  .vex-why {
    padding-bottom: 32px;
  }
  .vex-why__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .vex-why__bg {
    order: 2;
    width: 360px;
    max-width: 100%;
    height: 360px;
    margin: 8px 0 -24px;
  }
  .vex-why__bg video {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .vex-why__bg::after {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(4, 8, 20, 0) 54.81%, #040814 100%);
  }
  .vex-why__bg::before {
    height: 180px;
  }
  .vex-why__head {
    position: static;
    order: 1;
    width: 100%;
  }
  .vex-why__highlights {
    position: static;
    order: 3;
    left: auto;
    transform: none;
    max-width: none;
    flex-direction: column;
    gap: 16px;
  }
  .vex-why__title {
    font-size: 20px;
    line-height: 1.1;
  }
  .vex-why__subtitle {
    font-size: 14px;
    margin-top: 8px;
  }
  .vex-why__highlight-title {
    font-size: 18px;
    line-height: 1.1;
  }
  .vex-why__highlight-text {
    font-size: 18px;
    margin-top: 8px;
  }
}

.vex-compare {
  padding-bottom: 120px;
  text-align: center;
}
.vex-compare__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 24px;
  margin: 0;
}
.vex-compare__vs {
  width: 72px;
  height: 103px;
  display: block;
}
.vex-compare__subtitle {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 16px auto 0;
  max-width: 720px;
  color: var(--color-text-muted);
  text-wrap: balance;
}
.vex-compare__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 516px);
  justify-content: center;
  gap: 40px;
  align-items: start;
}
.vex-compare__card {
  position: relative;
  z-index: 1;
  padding: 44px 32px 36px;
  text-align: left;
}
.vex-compare__card::before, .vex-compare__card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 63px;
  background: url("/img/how-to-play-border.svg") no-repeat center/100% 100%;
  pointer-events: none;
}
.vex-compare__card::before {
  top: 0;
}
.vex-compare__card::after {
  bottom: 0;
  transform: scaleY(-1);
}
.vex-compare__card--arena {
  --col-color: var(--color-accent);
}
.vex-compare__card--vex {
  --col-color: var(--color-gift);
}
.vex-compare__card-title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 0 0 32px;
  color: var(--col-color);
}
.vex-compare__badge {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0 12px;
  margin-right: 12px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-dark);
  vertical-align: middle;
}
.vex-compare__badge::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: skewX(337deg);
}
.vex-compare__badge--new::before {
  background: var(--color-gift);
}
.vex-compare__badge--big::before {
  background: var(--color-accent);
}
.vex-compare__frame {
  display: none;
}
.vex-compare__rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.vex-compare__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vex-compare__row-label {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--col-color);
}
.vex-compare__row-value {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0;
  color: var(--color-text);
}
.vex-compare__cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.vex-compare__footer {
  display: none;
}
@media (max-width: 991px) {
  .vex-compare {
    padding-bottom: 64px;
  }
  .vex-compare .container {
    max-width: none;
  }
  .vex-compare__title {
    font-size: 20px;
    line-height: 1.1;
    line-height: 1.1;
    flex-direction: column;
    gap: 12px;
  }
  .vex-compare__vs {
    height: 51px;
    width: auto;
  }
  .vex-compare__slider {
    overflow: visible;
  }
  .vex-compare__grid {
    margin-top: 32px;
    display: flex;
    justify-content: flex-start;
    gap: 0;
  }
  .vex-compare__card {
    width: 300px;
    flex-shrink: 0;
    padding: 24px 16px 32px;
  }
  .vex-compare__card::before, .vex-compare__card::after {
    content: none;
  }
  .vex-compare__frame {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 26px;
    pointer-events: none;
  }
  .vex-compare__frame--top {
    top: 0;
  }
  .vex-compare__frame--bottom {
    bottom: 0;
    transform: scaleY(-1);
  }
  .vex-compare__card-title {
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 24px;
  }
  .vex-compare__rows {
    gap: 16px;
  }
  .vex-compare__row {
    gap: 4px;
  }
  .vex-compare__row-label {
    font-size: 18px;
    line-height: 1.1;
  }
  .vex-compare__row-value {
    font-size: 18px;
  }
  .vex-compare__cta {
    margin-top: 24px;
  }
  .vex-compare__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
  }
  .vex-compare__nav {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
  }
  .vex-compare__nav:hover {
    color: var(--color-text);
  }
  .vex-compare__nav--next svg {
    transform: scaleX(-1);
  }
  .vex-compare__nav {
    width: 32px;
    height: 32px;
  }
  .vex-compare__nav svg {
    width: 22px;
    height: 19px;
  }
  .vex-compare__dots {
    flex: 1;
    text-align: center;
    line-height: 0;
    --swiper-pagination-bullet-horizontal-gap: 6px;
  }
  .vex-compare__dots .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 0;
    background: var(--color-text-muted);
    opacity: 1;
  }
  .vex-compare__dots .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background: var(--color-gift);
  }
}

.vex-how {
  position: relative;
  padding: 0 0 120px;
}
.vex-how__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 0 0 64px;
}
.vex-how__inner {
  display: grid;
  grid-template-columns: 1fr 57%;
  gap: var(--gap);
  align-items: center;
}
.vex-how__main {
  min-width: 0;
}
.vex-how__content {
  position: relative;
  z-index: 3;
  padding: 44px 32px 36px;
}
.vex-how__content::before, .vex-how__content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 63px;
  background: url("/img/how-to-play-border.svg") no-repeat center/100% 100%;
  pointer-events: none;
}
.vex-how__content::before {
  top: 0;
}
.vex-how__content::after {
  bottom: 0;
  transform: scaleY(-1);
}
.vex-how__frame {
  display: none;
}
.vex-how__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.vex-how__step {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vex-how__step-number {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-gift);
}
.vex-how__step-num {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 30px;
}
.vex-how__step-text {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0;
}
.vex-how__cta {
  margin-top: 32px;
  align-self: flex-start;
}
.vex-how__media {
  position: relative;
  margin: 0;
}
.vex-how__media picture {
  display: contents;
}
.vex-how__media img {
  display: block;
  width: 100%;
}
@media (max-width: 1270px) {
  .vex-how__inner {
    grid-template-columns: 1fr 51%;
  }
}
@media (max-width: 991px) {
  .vex-how {
    padding: 0 0 64px;
  }
  .vex-how__title {
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 24px;
    text-align: center;
  }
  .vex-how__inner {
    position: relative;
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
    justify-content: center;
    padding-top: 363px;
    margin-top: 16px;
  }
  .vex-how__main {
    display: flex;
    flex-direction: column;
  }
  .vex-how__title {
    order: -1;
  }
  .vex-how__media {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
  }
  .vex-how__content {
    padding: 24px 16px 32px;
  }
  .vex-how__content::before, .vex-how__content::after {
    content: none;
  }
  .vex-how__frame {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 26px;
    pointer-events: none;
  }
  .vex-how__frame--top {
    top: 0;
  }
  .vex-how__frame--bottom {
    bottom: 0;
    transform: scaleY(-1);
  }
  .vex-how__steps {
    gap: 16px;
  }
  .vex-how__step {
    gap: 4px;
  }
  .vex-how__step-number {
    font-size: 14px;
  }
  .vex-how__step-num {
    font-size: 18px;
    line-height: 1.1;
  }
  .vex-how__step-text {
    font-size: 18px;
  }
}

.vex-events {
  text-align: center;
  padding-bottom: 120px;
}
.vex-events__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  text-wrap: balance;
}
.vex-events__subtitle {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-text-muted);
  text-wrap: balance;
}
.vex-events__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 40px;
}
.vex-events__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  padding: 40px;
  text-align: left;
}
.vex-events__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: polygon(24px 0, calc(100% - 92px) 0, calc(100% - 68px) 24px, calc(100% - 16px) 24px, 100% 40px, 100% calc(100% - 40px), calc(100% - 16px) calc(100% - 24px), calc(100% - 68px) calc(100% - 24px), calc(100% - 92px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
}
.vex-events__media {
  position: absolute;
  inset: 0;
  margin: 0;
  clip-path: polygon(24px 0, calc(100% - 92px) 0, calc(100% - 68px) 24px, calc(100% - 16px) 24px, 100% 40px, 100% calc(100% - 40px), calc(100% - 16px) calc(100% - 24px), calc(100% - 68px) calc(100% - 24px), calc(100% - 92px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
  z-index: 0;
}
.vex-events__media picture {
  display: contents;
}
.vex-events__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vex-events__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 20, 0) 28.36%, rgba(4, 8, 20, 0.95) 60.34%);
  clip-path: polygon(24px 0, calc(100% - 92px) 0, calc(100% - 68px) 24px, calc(100% - 16px) 24px, 100% 40px, 100% calc(100% - 40px), calc(100% - 16px) calc(100% - 24px), calc(100% - 68px) calc(100% - 24px), calc(100% - 92px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
  z-index: 1;
  pointer-events: none;
}
.vex-events__frame {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.vex-events__frame::before, .vex-events__frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background-image: url("/img/events-card-frame.svg");
  background-repeat: no-repeat;
  background-size: 628px 453px;
}
.vex-events__frame::before {
  top: 0;
}
.vex-events__frame::after {
  bottom: 0;
}
.vex-events__frame--left {
  left: 0;
}
.vex-events__frame--left::before {
  background-position: left top;
}
.vex-events__frame--left::after {
  background-position: left bottom;
}
.vex-events__frame--right {
  right: 0;
}
.vex-events__frame--right::before {
  background-position: right top;
}
.vex-events__frame--right::after {
  background-position: right bottom;
}
.vex-events__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}
.vex-events__card-title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-gift);
}
.vex-events__card-text {
  margin: 16px 0 0;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-text);
}
.vex-events__book {
  margin-top: 24px;
  pointer-events: auto;
}
@media (min-width: 1279px) {
  .vex-events__grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .vex-events__card {
    grid-column: span 2;
  }
  .vex-events__card--wide {
    grid-column: span 3;
  }
}
.vex-events__contact {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.vex-events__contact .button {
  width: 304px;
  max-width: 100%;
}
.vex-events__footer {
  display: none;
}
@media (max-width: 991px) {
  .vex-events {
    padding-bottom: 64px;
  }
  .vex-events .container {
    max-width: none;
  }
  .vex-events__title {
    font-size: 20px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .vex-events__subtitle {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .vex-events__slider {
    margin-top: 40px;
    overflow: visible;
  }
  .vex-events__grid {
    display: flex;
    margin-top: 0;
    gap: 0;
  }
  .vex-events__card, .vex-events__card--wide {
    width: 264px;
    flex-shrink: 0;
    min-height: 0;
    height: auto;
    padding: 0;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }
  .vex-events__media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 266/166;
    padding: 4px;
    background: #3C4454;
    clip-path: polygon(13px 0, calc(100% - 13px) 0, 100% 13px, 100% calc(100% - 13px), calc(100% - 13px) 100%, 13px 100%, 0 calc(100% - 13px), 0 13px);
  }
  .vex-events__media img {
    clip-path: polygon(11px 0, calc(100% - 11px) 0, 100% 11px, 100% calc(100% - 11px), calc(100% - 11px) 100%, 11px 100%, 0 calc(100% - 11px), 0 11px);
  }
  .vex-events__frame, .vex-events__card::after {
    display: none;
  }
  .vex-events__content {
    flex: 1;
    align-items: center;
    margin-top: 16px;
  }
  .vex-events__card-title {
    text-align: center;
    font-size: 18px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .vex-events__card-text {
    text-align: center;
    margin-top: 8px;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.4;
  }
  .vex-events__book {
    margin-top: auto;
  }
  .vex-events__contact {
    margin-top: 24px;
  }
  .vex-events__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
  }
  .vex-events__nav {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
  }
  .vex-events__nav:hover {
    color: var(--color-text);
  }
  .vex-events__nav--next svg {
    transform: scaleX(-1);
  }
  .vex-events__nav {
    width: 32px;
    height: 32px;
  }
  .vex-events__nav svg {
    width: 22px;
    height: 19px;
  }
  .vex-events__dots {
    flex: 1;
    text-align: center;
    line-height: 0;
    --swiper-pagination-bullet-horizontal-gap: 6px;
  }
  .vex-events__dots .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 0;
    background: var(--color-text-muted);
    opacity: 1;
  }
  .vex-events__dots .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background: var(--color-gift);
  }
}

.vex-plan {
  text-align: center;
  padding-bottom: 120px;
  background-image: url("/img/vex/pricing-bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 1920px auto;
}
.vex-plan__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  text-wrap: balance;
}
.vex-plan__subtitle {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-text-muted);
  white-space: pre-line;
}
.vex-plan__grid {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: var(--gap);
}
.vex-plan__all {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .vex-plan {
    padding-bottom: 64px;
    background-image: none;
  }
  .vex-plan__title {
    font-size: 20px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .vex-plan__subtitle {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .vex-plan__grid {
    margin-top: 32px;
    gap: 16px;
  }
}

.vex-plan-card {
  --plan-color: var(--color-gift);
  position: relative;
  flex: 0 0 auto;
  width: 410px;
  max-width: 100%;
  min-height: 485px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 32px 40px;
  line-height: 1.1;
}
.vex-plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #282e3d;
  background-image: linear-gradient(180deg, #282e3d 0%, rgba(40, 46, 61, 0) 93.4%), url("/img/pricing-card-bg.svg");
  background-repeat: no-repeat, repeat;
  clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 40px), calc(100% - 16px) calc(100% - 24px), calc(100% - 68px) calc(100% - 24px), calc(100% - 92px) 100%, 92px 100%, 68px calc(100% - 24px), 16px calc(100% - 24px), 0 calc(100% - 40px), 0 24px);
  z-index: 0;
}
.vex-plan-card__frame {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.vex-plan-card__frame::before, .vex-plan-card__frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background-image: url("/img/pricing-card-frame.svg");
  background-repeat: no-repeat;
  background-size: 411px 485px;
}
.vex-plan-card__frame::before {
  top: 0;
}
.vex-plan-card__frame::after {
  bottom: 0;
}
.vex-plan-card__frame--left {
  left: 0;
}
.vex-plan-card__frame--left::before {
  background-position: left top;
}
.vex-plan-card__frame--left::after {
  background-position: left bottom;
}
.vex-plan-card__frame--right {
  right: 0;
}
.vex-plan-card__frame--right::before {
  background-position: right top;
}
.vex-plan-card__frame--right::after {
  background-position: right bottom;
}
.vex-plan-card__frame-line {
  display: none;
}
.vex-plan-card__title, .vex-plan-card__duration, .vex-plan-card__from, .vex-plan-card__price, .vex-plan-card__per, .vex-plan-card__players, .vex-plan-card__cta {
  position: relative;
  z-index: 1;
}
.vex-plan-card__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--color-text);
}
.vex-plan-card__duration {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--plan-color);
}
.vex-plan-card__from {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text);
}
.vex-plan-card__price {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: 64px;
  line-height: 1;
  color: var(--plan-color);
}
.vex-plan-card__per {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: 24px;
  color: var(--color-text);
}
.vex-plan-card__players {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text);
}
.vex-plan-card__cta {
  margin-top: 24px;
}
@media (max-width: 991px) {
  .vex-plan-card {
    width: 264px;
    min-height: 0;
    padding: 24px 16px 32px;
  }
  .vex-plan-card::before {
    display: none;
  }
  .vex-plan-card__frame {
    display: none;
  }
  .vex-plan-card__frame-line {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 26px;
    z-index: 3;
    pointer-events: none;
  }
  .vex-plan-card__frame-line--top {
    top: 0;
  }
  .vex-plan-card__frame-line--bottom {
    bottom: 0;
    transform: scaleY(-1);
  }
  .vex-plan-card__title {
    font-size: 20px;
    line-height: 1.1;
    font-size: 28px;
  }
  .vex-plan-card__duration {
    font-size: 18px;
    line-height: 1.1;
  }
  .vex-plan-card__from {
    font-size: 14px;
  }
  .vex-plan-card__price {
    font-size: 32px !important;
  }
  html[lang=es] .vex-plan-card__price, html[lang=fr] .vex-plan-card__price {
    font-size: 30px !important;
  }
  .vex-plan-card__per, .vex-plan-card__players {
    font-size: 14px;
  }
  .vex-plan-card__cta {
    margin-top: 24px;
  }
}

.vex-leaderboard {
  position: relative;
  padding: 0 0 120px;
}
.vex-leaderboard__head {
  text-align: center;
}
.vex-leaderboard__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  text-wrap: balance;
}
.vex-leaderboard__subtitle {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 16px auto 0;
  max-width: 720px;
  color: var(--color-text-muted);
}
.vex-leaderboard__frame {
  position: relative;
  margin-top: 40px;
  background: var(--color-semi-dark);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}
.vex-leaderboard__frame::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: 0;
  background: var(--color-dark);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}
.vex-leaderboard__iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 800px;
  border: 0;
}
@media (max-width: 991px) {
  .vex-leaderboard {
    padding: 0 0 64px;
  }
  .vex-leaderboard__title {
    font-size: 20px;
    line-height: 1.1;
  }
  .vex-leaderboard__subtitle {
    margin-top: 8px;
    font-size: 14px;
  }
  .vex-leaderboard__frame {
    margin-top: 24px;
  }
}

.game-card {
  width: 368px;
  height: 540px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: url("/img/games-card-frame.svg") no-repeat center/100% 100%;
  position: relative;
}
.game-card:hover .game-card__glows::after, .game-card:hover .game-card__glows::before {
  background-color: var(--color-accent);
}
.game-card:hover .game-card__glows::after {
  filter: drop-shadow(2px 4px 5.4px var(--color-accent));
}
.game-card:hover .game-card__glows::before {
  filter: drop-shadow(-2px 4px 5.4px var(--color-accent));
}
.game-card__outline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  color: var(--color-accent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.game-card.swiper-slide-active .game-card__outline {
  opacity: 1;
}
.game-card__poster {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  padding: 0;
  margin: 18px 18px 0;
  flex-shrink: 0;
  height: 253px;
  cursor: pointer;
  background: none;
  clip-path: polygon(12px 0, 320px 0, 332px 12px, 332px 232px, 312px 253px, 20px 253px, 0 232px, 0 12px);
}
.game-card__poster picture {
  display: contents;
}
.game-card__poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.game-card__glows {
  position: absolute;
  z-index: -1;
  top: 58%;
  height: 60px;
  left: 0;
  right: 0;
}
.game-card__glows::after, .game-card__glows::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 60px;
  background-color: #040814;
  transition: filter 0.2s, background-color 0.2s;
}
.game-card__glows::after {
  right: 8px;
  transform: skewY(-45deg);
  box-shadow: inset -2px -3px 13px var(--color-accent);
  filter: drop-shadow(2px 4px 5.4px transparent);
}
.game-card__glows::before {
  left: 8px;
  transform: skewY(45deg);
  box-shadow: inset 2px -3px 13px var(--color-accent);
  filter: drop-shadow(-2px 4px 5.4px transparent);
}
.game-card__body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 0 24px;
}
.game-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
}
.game-card__modes {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.game-card__modes i {
  font-style: normal;
  color: var(--color-text-muted);
}
.game-card__age {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 16px;
  color: var(--color-text);
  padding: 0 5px;
  border: 1px solid currentColor;
  border-radius: 4px;
}
.game-card__name {
  margin-top: 8px;
  max-width: 100%;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 52px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 40px;
}
.game-card__desc {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-text-muted);
  text-wrap: balance;
  padding: 0 40px;
  max-height: 40px;
  overflow: hidden;
}
.game-card__actions {
  margin-top: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.game-card__details {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.4s;
}
.game-card__details:hover {
  color: var(--color-accent);
}
@media (max-width: 991px) {
  .game-card {
    width: 264px;
    height: 387px;
  }
  .game-card__poster {
    margin: 13px 13px 0;
    height: 181px;
    clip-path: polygon(9px 0, 229px 0, 238px 9px, 238px 166px, 224px 181px, 14px 181px, 0 166px, 0 9px);
  }
  .game-card__glows {
    top: 227px;
    height: 30px;
  }
  .game-card__glows::after, .game-card__glows::before {
    width: 5px;
    height: 30px;
  }
  .game-card__glows::after {
    right: 6px;
  }
  .game-card__glows::before {
    left: 6px;
  }
  .game-card__body {
    padding: 13px 0 18px;
  }
  .game-card__meta {
    padding: 0 28px;
  }
  .game-card__modes {
    font-size: 10px;
    gap: 6px;
  }
  .game-card__age {
    font-size: 10px;
    line-height: 12px;
    padding: 0 4px;
  }
  .game-card__name {
    margin-top: 6px;
    font-size: 18px;
    line-height: 1.1;
    line-height: 20px;
    padding: 0 28px;
  }
  .game-card__desc {
    margin-top: 6px;
    font-size: 11px;
    padding: 0 28px;
    max-height: 26px;
  }
  .game-card__actions {
    margin-top: 12px;
    gap: 12px;
  }
  .game-card__details {
    font-size: 13px;
  }
}

.vex-catalog {
  text-align: center;
  overflow-x: clip;
  padding-bottom: 120px;
  background-image: url("/img/vex/catalog-bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 1920px auto;
}
.vex-catalog__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  white-space: pre-line;
}
.vex-catalog__subtitle {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-text-muted);
  white-space: pre-line;
}
.vex-catalog__filters {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 32px;
}
.vex-catalog__filters li {
  display: flex;
  align-items: center;
  gap: 32px;
}
.vex-catalog__filters li:not(:first-child)::before {
  content: "//";
  color: var(--color-semi-dark);
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.vex-catalog__filter {
  padding: 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.vex-catalog__filter:hover {
  color: var(--color-text);
}
.vex-catalog__filter--active {
  color: var(--color-accent);
}
.vex-catalog__slider {
  position: relative;
  margin-top: 32px;
  height: 540px;
  overflow: visible;
  transition: opacity 0.25s ease;
}
.vex-catalog__slider.is-switching {
  opacity: 0;
}
.vex-catalog__list {
  display: flex;
  height: 100%;
}
.vex-catalog__gallery {
  margin-top: 40px;
  overflow: visible;
}
.vex-catalog__gallery-list {
  display: flex;
}
.vex-catalog__thumb {
  flex-shrink: 0;
  width: 302px;
  aspect-ratio: 302/200;
  background-color: var(--color-semi-dark);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}
.vex-catalog__thumb picture {
  display: contents;
}
.vex-catalog__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vex-catalog__gallery-controls {
  display: none;
}
.vex-catalog__footer {
  display: none;
}
.vex-catalog__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.vex-catalog__nav:hover {
  color: var(--color-text);
}
.vex-catalog__nav--next svg {
  transform: scaleX(-1);
}
@media (max-width: 991px) {
  .vex-catalog {
    background-image: none;
    padding-bottom: 64px;
  }
  .vex-catalog__title {
    font-size: 20px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .vex-catalog__subtitle {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .vex-catalog__filters {
    margin-top: 24px;
    margin-inline: -20px;
    padding-inline: 20px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .vex-catalog__filters::-webkit-scrollbar {
    display: none;
  }
  .vex-catalog__filters li {
    flex-shrink: 0;
    gap: 16px;
  }
  .vex-catalog__filters li:not(:first-child)::before {
    font-size: 14px;
  }
  .vex-catalog__filter {
    font-size: 14px;
  }
  .vex-catalog__slider {
    margin-top: 24px;
    height: 387px;
  }
  .vex-catalog__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
  }
  .vex-catalog__nav {
    width: 32px;
    height: 32px;
  }
  .vex-catalog__nav svg {
    width: 22px;
    height: 19px;
  }
  .vex-catalog__gallery {
    margin-top: 24px;
  }
  .vex-catalog__thumb {
    width: 266px;
    aspect-ratio: 266/175;
  }
  .vex-catalog__gallery-controls {
    display: block;
    position: relative;
    min-height: 32px;
    margin-top: 24px;
    padding: 0 20px;
  }
  .vex-catalog__gallery-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
  }
  .vex-catalog__gallery-arrow:hover {
    color: var(--color-text);
  }
  .vex-catalog__gallery-arrow--next svg {
    transform: scaleX(-1);
  }
  .vex-catalog__gallery-arrow {
    width: 32px;
    height: 32px;
  }
  .vex-catalog__gallery-arrow svg {
    width: 22px;
    height: 19px;
  }
  .vex-catalog__gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .vex-catalog__gallery-arrow--prev {
    left: 20px;
  }
  .vex-catalog__gallery-arrow--next {
    right: 20px;
  }
  .vex-catalog__gallery-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px !important;
    text-align: center;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-size: 6px;
  }
  .vex-catalog__gallery-dots .swiper-pagination-bullet {
    border-radius: 0;
    background: var(--color-text-muted);
    opacity: 1;
  }
  .vex-catalog__gallery-dots .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
  }
}

.vex-game-modal .modal__dialog {
  max-width: 1040px;
  padding: 99px 32px 64px;
  overflow: hidden;
}
.vex-game-modal .modal__dialog::before {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: -1;
  background: #040814;
  clip-path: polygon(21px 0, calc(100% - 21px) 0, 100% 21px, 100% calc(100% - 21px), calc(100% - 21px) 100%, 21px 100%, 0 calc(100% - 21px), 0 21px);
}

@media (max-width: 991px) {
  .modal.vex-game-modal {
    padding: 0;
  }
  .vex-game-modal .modal__dialog {
    max-width: none;
    min-height: 100vh;
    margin: 0;
    padding: 85px 20px 64px;
    background: #040814;
    clip-path: none;
  }
  .vex-game-modal .modal__dialog::before {
    content: none;
  }
}
.vex-modal {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.vex-modal__card {
  --game-color: var(--color-gift);
  padding-left: 75px;
  display: grid;
  grid-template-columns: 368px 1fr;
  gap: 48px;
  align-items: center;
}
.vex-modal__poster-col {
  position: relative;
  isolation: isolate;
}
.vex-modal__poster-glow {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 58%;
  height: 60px;
  pointer-events: none;
  will-change: opacity;
  animation: game-glow-pulse 3.2s ease-in-out infinite;
}
.vex-modal__poster-glow::before, .vex-modal__poster-glow::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 60px;
  background-color: var(--game-color);
}
.vex-modal__poster-glow::after {
  right: 8px;
  transform: skewY(-45deg);
  box-shadow: inset -2px -3px 13px var(--game-color);
  filter: drop-shadow(2px 4px 5.4px var(--game-color));
}
.vex-modal__poster-glow::before {
  left: 8px;
  transform: skewY(45deg);
  box-shadow: inset 2px -3px 13px var(--game-color);
  filter: drop-shadow(-2px 4px 5.4px var(--game-color));
}
.vex-modal__poster-backglow {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 519px;
  height: 673px;
  pointer-events: none;
  will-change: opacity;
  filter: blur(13px);
  animation: game-glow-pulse 3.2s ease-in-out infinite;
}
.vex-modal__poster-backglow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--game-color);
  -webkit-mask: url("/img/single-game-glow-mask.svg") no-repeat center/100% 100%;
  mask: url("/img/single-game-glow-mask.svg") no-repeat center/100% 100%;
}
.vex-modal__poster {
  position: relative;
  width: 100%;
  aspect-ratio: 368/540;
  --poster-clip: polygon(
      24px 0,
      calc(100% - 24px) 0,
      100% 24px,
      100% 56.48%,
      calc(100% - 16px) 59.44%,
      calc(100% - 16px) 71.3%,
      100% 74.26%,
      100% calc(100% - 24px),
      calc(100% - 24px) 100%,
      24px 100%,
      0 calc(100% - 24px),
      0 74.26%,
      16px 71.3%,
      16px 59.44%,
      0 56.48%,
      0 24px
  );
}
.vex-modal__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("/img/game-poster-frame.svg") no-repeat center/100% 100%;
  pointer-events: none;
}
.vex-modal__poster-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: var(--poster-clip);
  background-color: var(--game-color);
}
.vex-modal__poster-placeholder picture {
  display: contents;
}
.vex-modal__poster-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vex-modal__info {
  position: relative;
  z-index: 1;
}
.vex-modal__genre {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-event);
}
.vex-modal__name {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  text-wrap: balance;
}
.vex-modal__params {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 0 0 32px;
  color: var(--color-text-muted);
}
.vex-modal__param-sep {
  color: var(--color-semi-dark);
  margin: 0 6px;
}
.vex-modal__desc {
  margin: 0 0 32px;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  font-size: 18px;
  color: var(--color-text);
  text-wrap: balance;
}
.vex-modal__desc p {
  margin: 0 0 12px;
}
.vex-modal__desc p:last-child {
  margin-bottom: 0;
}
.vex-modal__trailer {
  position: relative;
  height: 536px;
  overflow: hidden;
}
.vex-modal__trailer iframe,
.vex-modal__trailer video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.vex-modal__trailer--yt {
  height: auto;
  aspect-ratio: 16/9;
}
.vex-modal__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(4, 8, 20, 0) 51.8%, #040814 100%);
}
.vex-modal__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  color: var(--color-text);
  background: transparent;
  border: 4px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.vex-modal__play:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translate(-50%, -50%) scale(1.05);
}
.vex-modal__play-ico {
  display: inline-flex;
}
.vex-modal__play-ico svg {
  width: 76px;
  height: 76px;
}
.vex-modal__play-ico--pause {
  display: none;
}
.vex-modal__trailer.is-playing .vex-modal__play {
  background: transparent;
  border-color: transparent;
}
.vex-modal__trailer.is-playing .vex-modal__play-ico--play {
  display: none;
}
.vex-modal__trailer.is-playing:hover .vex-modal__play {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.vex-modal__trailer.is-playing:hover .vex-modal__play-ico--pause {
  display: inline-flex;
}
.vex-modal__mute {
  position: absolute;
  top: 50%;
  left: calc(50% + 78px);
  z-index: 3;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--color-text);
  background: transparent;
  border: 4px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.vex-modal__mute:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translate(-50%, -50%) scale(1.05);
}
.vex-modal__mute svg {
  width: 28px;
  height: 28px;
}
.vex-modal__mute-ico {
  display: inline-flex;
}
.vex-modal__mute-ico--sound {
  display: none;
}
.vex-modal__mute.is-unmuted .vex-modal__mute-ico--muted {
  display: none;
}
.vex-modal__mute.is-unmuted .vex-modal__mute-ico--sound {
  display: inline-flex;
}
.vex-modal__trailer.is-playing .vex-modal__mute {
  opacity: 0;
}
.vex-modal__trailer.is-playing:hover .vex-modal__mute {
  opacity: 1;
}
.vex-modal__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, 302px);
  justify-content: center;
  gap: 24px;
}
.vex-modal__thumb {
  display: block;
  width: 302px;
  height: 200px;
  max-width: 100%;
  overflow: hidden;
  cursor: pointer;
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
}
.vex-modal__thumb picture {
  display: contents;
}
.vex-modal__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vex-modal__cta {
  display: flex;
  justify-content: center;
}
.vex-modal__gallery-controls {
  display: none;
}
@media (max-width: 991px) {
  .vex-modal {
    gap: 32px;
  }
  .vex-modal__card {
    padding-left: 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .vex-modal__poster-col {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  .vex-modal__poster-backglow {
    width: 350px;
    height: 450px;
  }
  .vex-modal__poster-glow {
    top: 190px;
  }
  .vex-modal__poster-glow::before {
    left: 6px;
  }
  .vex-modal__poster-glow::after {
    right: 6px;
  }
  .vex-modal__info {
    text-align: center;
  }
  .vex-modal__name {
    font-size: 20px;
    line-height: 1.1;
  }
  .vex-modal__desc {
    font-size: 18px;
    margin-bottom: 0;
  }
  .vex-modal__trailer {
    height: auto;
    aspect-ratio: 16/9;
  }
  .vex-modal__play {
    width: 56px;
    height: 56px;
  }
  .vex-modal__play svg {
    width: 56px;
    height: 56px;
  }
  .vex-modal__mute {
    width: 44px;
    height: 44px;
    left: calc(50% + 60px);
  }
  .vex-modal__mute svg {
    width: 22px;
    height: 22px;
  }
  .vex-modal__gallery-box {
    overflow: visible;
  }
  .vex-modal__gallery {
    display: flex;
    justify-content: flex-start;
    gap: 0;
  }
  .vex-modal__thumb {
    width: 266px;
    height: 175px;
    max-width: none;
    flex-shrink: 0;
  }
  .vex-modal__gallery-controls {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .vex-modal__gallery-arrow {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
  }
  .vex-modal__gallery-arrow:hover {
    color: var(--color-text);
  }
  .vex-modal__gallery-arrow--next svg {
    transform: scaleX(-1);
  }
  .vex-modal__gallery-arrow {
    width: 32px;
    height: 32px;
  }
  .vex-modal__gallery-arrow svg {
    width: 22px;
    height: 19px;
  }
  .vex-modal__gallery-dots {
    flex: 1;
    text-align: center;
    line-height: 0;
    --swiper-pagination-bullet-horizontal-gap: 6px;
  }
  .vex-modal__gallery-dots .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 0;
    background: var(--color-text-muted);
    opacity: 1;
  }
  .vex-modal__gallery-dots .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
  }
}

.events {
  text-align: center;
  padding-bottom: 120px;
}
.events__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  text-wrap: balance;
}
.events__subtitle {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-text-muted);
  text-wrap: balance;
}
.events__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 40px;
}
.events__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  padding: 40px;
  text-align: left;
}
.events__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: polygon(24px 0, calc(100% - 92px) 0, calc(100% - 68px) 24px, calc(100% - 16px) 24px, 100% 40px, 100% calc(100% - 40px), calc(100% - 16px) calc(100% - 24px), calc(100% - 68px) calc(100% - 24px), calc(100% - 92px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
}
.events__media {
  position: absolute;
  inset: 0;
  margin: 0;
  clip-path: polygon(24px 0, calc(100% - 92px) 0, calc(100% - 68px) 24px, calc(100% - 16px) 24px, 100% 40px, 100% calc(100% - 40px), calc(100% - 16px) calc(100% - 24px), calc(100% - 68px) calc(100% - 24px), calc(100% - 92px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
  z-index: 0;
}
.events__media picture {
  display: contents;
}
.events__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.events__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 20, 0) 28.36%, rgba(4, 8, 20, 0.95) 60.34%);
  clip-path: polygon(24px 0, calc(100% - 92px) 0, calc(100% - 68px) 24px, calc(100% - 16px) 24px, 100% 40px, 100% calc(100% - 40px), calc(100% - 16px) calc(100% - 24px), calc(100% - 68px) calc(100% - 24px), calc(100% - 92px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
  z-index: 1;
  pointer-events: none;
}
.events__frame {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.events__frame::before, .events__frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background-image: url("/img/events-card-frame.svg");
  background-repeat: no-repeat;
  background-size: 628px 453px;
}
.events__frame::before {
  top: 0;
}
.events__frame::after {
  bottom: 0;
}
.events__frame--left {
  left: 0;
}
.events__frame--left::before {
  background-position: left top;
}
.events__frame--left::after {
  background-position: left bottom;
}
.events__frame--right {
  right: 0;
}
.events__frame--right::before {
  background-position: right top;
}
.events__frame--right::after {
  background-position: right bottom;
}
.events__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}
.events__card-title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-event);
}
.events__card-text {
  margin: 16px 0 0;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-text);
}
.events__book {
  margin-top: 24px;
  pointer-events: auto;
}
@media (min-width: 1279px) {
  .events__grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .events__card {
    grid-column: span 2;
  }
  .events__card--wide {
    grid-column: span 3;
  }
  .events__card:last-child {
    grid-column: 1/-1;
    height: 282px;
    min-height: 0;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 39px;
  }
  .events__card:last-child .events__media, .events__card:last-child::after {
    clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 24px), calc(100% - 24px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
  }
  .events__card:last-child::after {
    background: radial-gradient(50% 98.23% at 50% 50%, #040814 39.18%, rgba(4, 8, 20, 0) 83.78%);
    opacity: 0.9;
  }
  .events__card:last-child .events__frame::before, .events__card:last-child .events__frame::after {
    background-image: url("/img/events-banner-frame.svg");
    background-size: 1280px 282px;
  }
  .events__card:last-child .events__content {
    align-items: center;
    max-width: 560px;
  }
}
.events__contact {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.events__contact .button {
  width: 304px;
  max-width: 100%;
}
.events__footer {
  display: none;
}
@media (max-width: 991px) {
  .events {
    padding-bottom: 64px;
  }
  .events .container {
    max-width: none;
  }
  .events__title {
    font-size: 26px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .events__subtitle {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .events__slider {
    margin-top: 40px;
    overflow: visible;
  }
  .events__grid {
    display: flex;
    margin-top: 0;
    gap: 0;
  }
  .events__card, .events__card--wide {
    width: 264px;
    flex-shrink: 0;
    min-height: 0;
    height: auto;
    padding: 0;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }
  .events__media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 266/166;
    padding: 4px;
    background: #3C4454;
    clip-path: polygon(13px 0, calc(100% - 13px) 0, 100% 13px, 100% calc(100% - 13px), calc(100% - 13px) 100%, 13px 100%, 0 calc(100% - 13px), 0 13px);
  }
  .events__media img {
    clip-path: polygon(11px 0, calc(100% - 11px) 0, 100% 11px, 100% calc(100% - 11px), calc(100% - 11px) 100%, 11px 100%, 0 calc(100% - 11px), 0 11px);
  }
  .events__frame, .events__card::after {
    display: none;
  }
  .events__content {
    flex: 1;
    align-items: center;
    margin-top: 16px;
  }
  .events__card-title {
    text-align: center;
    font-size: 18px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .events__card-text {
    text-align: center;
    margin-top: 8px;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.4;
  }
  .events__book {
    margin-top: auto;
  }
  .events__contact {
    margin-top: 24px;
  }
  .events__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
  }
  .events__nav {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
  }
  .events__nav:hover {
    color: var(--color-text);
  }
  .events__nav--next svg {
    transform: scaleX(-1);
  }
  .events__nav {
    width: 32px;
    height: 32px;
  }
  .events__nav svg {
    width: 22px;
    height: 19px;
  }
  .events__dots {
    flex: 1;
    text-align: center;
    line-height: 0;
    --swiper-pagination-bullet-horizontal-gap: 6px;
  }
  .events__dots .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 0;
    background: var(--color-text-muted);
    opacity: 1;
  }
  .events__dots .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background: var(--color-event);
  }
}

.events-page {
  position: relative;
  overflow-x: clip;
  padding-bottom: 120px;
}
.events-page__gallery-block {
  margin-top: 64px;
}
.events-page__gallery-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.events-page__gallery-controls {
  display: none;
}
.events-page__thumb {
  margin: 0;
  aspect-ratio: 16/10;
  background-color: var(--color-semi-dark);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}
.events-page__thumb picture {
  display: contents;
}
.events-page__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.events-page__thumb--trailer {
  position: relative;
  cursor: pointer;
}
.events-page__thumb--trailer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 20, 0.35);
  transition: background 0.2s ease;
}
.events-page__thumb--trailer:hover::after {
  background: rgba(4, 8, 20, 0.15);
}
.events-page__thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  color: var(--color-text);
  background: transparent;
  border: 4px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.events-page__thumb-play svg {
  width: 64px;
  height: 64px;
}
.events-page__thumb--trailer:hover .events-page__thumb-play {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translate(-50%, -50%) scale(1.05);
}
@media (max-width: 991px) {
  .events-page__gallery-block {
    margin-top: 24px;
  }
  .events-page__gallery {
    overflow: hidden;
  }
  .events-page__gallery-track {
    display: flex;
    grid-template-columns: none;
    gap: 0;
  }
  .events-page__thumb {
    flex-shrink: 0;
    width: 266px;
    height: auto;
    aspect-ratio: 266/175;
  }
  .events-page__gallery-controls {
    display: block;
    position: relative;
    min-height: 32px;
    margin-top: 24px;
    padding: 0 20px;
  }
  .events-page__gallery-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
  }
  .events-page__gallery-nav:hover {
    color: var(--color-text);
  }
  .events-page__gallery-nav--next svg {
    transform: scaleX(-1);
  }
  .events-page__gallery-nav {
    width: 32px;
    height: 32px;
  }
  .events-page__gallery-nav svg {
    width: 22px;
    height: 19px;
  }
  .events-page__gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .events-page__gallery-nav--prev {
    left: 20px;
  }
  .events-page__gallery-nav--next {
    right: 20px;
  }
  .events-page__gallery-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px !important;
    text-align: center;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-size: 6px;
  }
  .events-page__gallery-dots .swiper-pagination-bullet {
    border-radius: 0;
    background: var(--color-text-muted);
    opacity: 1;
  }
  .events-page__gallery-dots .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
  }
}
.events-page__title {
  margin: 0;
  text-align: center;
  width: 100%;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: clamp(40px, 9vw, 134px);
  line-height: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
html[lang=es] .events-page__title, html[lang=fr] .events-page__title {
  font-size: clamp(40px, 9vw, 113.9px);
}
.events-page__title {
  line-height: var(--caption-leading);
  color: var(--color-text);
}
.events-page__toc {
  margin: 24px 0 0;
}
.events-page__group {
  margin-top: 120px;
}
.events-page__group-title {
  margin: 0 0 64px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
}
.events-page__group-accent {
  color: var(--ev-group-accent);
}
.events-page__list {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.events-page__item {
  scroll-margin-top: 140px;
}
.events-page__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 109px;
       column-gap: 109px;
  align-items: center;
}
.events-page__item--reverse .events-page__card {
  grid-template-columns: 1fr 1fr;
}
.events-page__item--reverse .events-page__card .events-page__media-col {
  order: 2;
}
.events-page__item--reverse .events-page__card .events-page__info {
  order: 1;
}
.events-page__media-col {
  position: relative;
  isolation: isolate;
}
.events-page__backglow {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 783px;
  height: 812px;
  pointer-events: none;
  will-change: opacity;
  filter: blur(16px);
}
.events-page__backglow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--ev-accent);
  -webkit-mask: url("/img/events-glow-mask.svg") no-repeat center/783px 812px;
  mask: url("/img/events-glow-mask.svg") no-repeat center/783px 812px;
}
.events-page__media {
  position: relative;
  margin: 0;
  height: 453px;
  clip-path: polygon(24px 0, calc(100% - 92px) 0, calc(100% - 68px) 24px, calc(100% - 16px) 24px, 100% 40px, 100% calc(100% - 40px), calc(100% - 16px) calc(100% - 24px), calc(100% - 68px) calc(100% - 24px), calc(100% - 92px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
  z-index: 0;
}
.events-page__media picture {
  display: contents;
}
.events-page__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--media-pos, center top);
     object-position: var(--media-pos, center top);
}
.events-page__media--center {
  --media-pos: center center;
}
.events-page__frame {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.events-page__frame::before, .events-page__frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background-image: url("/img/events-card-frame.svg");
  background-repeat: no-repeat;
  background-size: 628px 453px;
}
.events-page__frame::before {
  top: 0;
}
.events-page__frame::after {
  bottom: 0;
}
.events-page__frame--left {
  left: 0;
}
.events-page__frame--left::before {
  background-position: left top;
}
.events-page__frame--left::after {
  background-position: left bottom;
}
.events-page__frame--right {
  right: 0;
}
.events-page__frame--right::before {
  background-position: right top;
}
.events-page__frame--right::after {
  background-position: right bottom;
}
.events-page__info {
  position: relative;
  z-index: 1;
}
.events-page__name {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  text-wrap: balance;
}
.events-page__desc {
  margin: 0 0 24px;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-text-muted);
  text-wrap: balance;
}
.events-page__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.events-page__feature {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  position: relative;
  padding-left: 1.5em;
  color: var(--color-text);
  text-align: left;
}
.events-page__feature::before {
  content: "//";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: inherit;
  color: var(--ev-accent);
}
.events-page__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.events-page__details, .events-page__plan {
  max-width: 100%;
}
.events-page__plan {
  --btn-color: var(--ev-accent);
}
@media (max-width: 991px) {
  .events-page {
    padding-bottom: 64px;
  }
  .events-page__title {
    margin: 0 0 24px;
    font-size: 32px !important;
  }
  html[lang=es] .events-page__title, html[lang=fr] .events-page__title {
    font-size: 30px !important;
  }
  .events-page__title {
    line-height: 1.1;
    width: auto;
  }
  .events-page__group {
    margin-top: 64px;
  }
  .events-page__group-title {
    margin-bottom: 40px;
    font-size: 26px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .events-page__list {
    gap: 64px;
  }
  .events-page__item {
    scroll-margin-top: 104px;
  }
  .events-page__card, .events-page__item--reverse .events-page__card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .events-page__item--reverse .events-page__card .events-page__media-col,
  .events-page__item--reverse .events-page__card .events-page__info {
    order: 0;
  }
  .events-page__info {
    text-align: center;
  }
  .events-page__name {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .events-page__desc {
    margin-bottom: 16px;
    font-size: 18px;
  }
  .events-page__features {
    align-items: flex-start;
  }
  .events-page__feature {
    font-size: 18px;
  }
  .events-page__feature::before {
    font-size: 14px;
  }
  .events-page__actions {
    flex-direction: column;
    align-items: center;
  }
  .events-page__backglow {
    width: 360px;
    height: 438px;
  }
  .events-page__backglow::before {
    -webkit-mask: url("/img/events-glow-mask-mob.svg") no-repeat center/360px 438px;
    mask: url("/img/events-glow-mask-mob.svg") no-repeat center/360px 438px;
  }
  .events-page__frame {
    display: none;
  }
  .events-page__media {
    height: 230px;
    padding: 4px;
    background: var(--color-semi-dark);
    clip-path: polygon(13px 0, calc(100% - 13px) 0, 100% 13px, 100% calc(100% - 13px), calc(100% - 13px) 100%, 13px 100%, 0 calc(100% - 13px), 0 13px);
  }
  .events-page__media img {
    clip-path: polygon(11px 0, calc(100% - 11px) 0, 100% 11px, 100% calc(100% - 11px), calc(100% - 11px) 100%, 11px 100%, 0 calc(100% - 11px), 0 11px);
  }
  .events-page__gallery-block {
    margin-left: -20px;
    margin-right: -20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .events-page__backglow {
    animation: none;
  }
}
.events-logos {
  margin-top: 56px;
  text-align: center;
}
.events-logos__title {
  margin: 0 0 28px;
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.events-logos__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.events-logos__track {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: events-logos-scroll 36s linear infinite;
}
.events-logos:hover .events-logos__track {
  animation-play-state: paused;
}
.events-logos__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin-right: 72px;
}
.events-logos__img {
  max-height: 100%;
  max-width: 150px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.events-logos__item:hover .events-logos__img {
  opacity: 1;
}
@media (max-width: 991px) {
  .events-logos {
    margin-top: 40px;
  }
  .events-logos__title {
    margin-bottom: 20px;
  }
  .events-logos__track {
    animation-duration: 26s;
  }
  .events-logos__item {
    height: 28px;
    margin-right: 44px;
  }
  .events-logos__img {
    max-width: 110px;
  }
}

@keyframes events-logos-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .events-logos__track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  .events-logos__item[aria-hidden=true] {
    display: none;
  }
}
@keyframes evt-sticker-float {
  0%, 100% {
    transform: translateY(0) rotate(var(--sticker-rot, 0deg));
  }
  50% {
    transform: translateY(-14px) rotate(var(--sticker-rot, 0deg));
  }
}
.evt-sticker {
  position: absolute;
  z-index: 2;
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  animation: evt-sticker-float 6s ease-in-out infinite;
  animation-delay: var(--sticker-delay, 0s);
  will-change: transform;
  --evt-sticker-gutter: max(24px, calc((100% - var(--container)) / 2));
}
.evt-sticker--left {
  left: calc(var(--evt-sticker-gutter) + var(--sticker-shift, 0px));
}
.evt-sticker--right {
  right: calc(var(--evt-sticker-gutter) + var(--sticker-shift, 0px));
}
@media (max-width: 991px) {
  .evt-sticker {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .evt-sticker {
    animation: none;
  }
}
.evt-bullet {
  flex: 0 0 auto;
  margin-top: 0.35em;
  line-height: 0;
  color: var(--evt-color);
}
.evt-bullet svg {
  display: block;
  width: 11px;
  height: 11px;
}

.evt-hero {
  position: relative;
  overflow-x: clip;
}
.evt-hero__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: clamp(40px, 9vw, 67px);
  line-height: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
html[lang=es] .evt-hero__title, html[lang=fr] .evt-hero__title {
  font-size: clamp(40px, 9vw, 56.95px);
}
.evt-hero__title {
  margin: 20px 0 500px;
  text-align: center;
  width: 100%;
}
.evt-hero__title-text {
  color: var(--evt-color);
}
.evt-hero__video {
  position: absolute;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0b1020;
  border-radius: 4px;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  margin-inline: auto;
  z-index: -1;
}
.evt-hero__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.evt-hero__video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(4, 8, 20, 0) 32.05%, #040814 100%);
}
.evt-hero__video::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 690px;
  max-height: 100%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 8, 20, 0) 22.9%, #040814 58.45%);
}
.evt-hero__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 80px;
       column-gap: 80px;
  align-items: center;
}
.evt-hero__media-col {
  position: relative;
  isolation: isolate;
  max-width: 630px;
  margin-inline: auto;
  width: 100%;
}
.evt-hero__backglow {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 783px;
  height: 812px;
  pointer-events: none;
  filter: blur(16px);
}
.evt-hero__backglow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--evt-color);
  -webkit-mask: url("/img/events-glow-mask.svg") no-repeat center/783px 812px;
  mask: url("/img/events-glow-mask.svg") no-repeat center/783px 812px;
}
.evt-hero__media {
  position: relative;
  display: block;
  margin: 0;
  height: 453px;
  clip-path: polygon(24px 0, calc(100% - 92px) 0, calc(100% - 68px) 24px, calc(100% - 16px) 24px, 100% 40px, 100% calc(100% - 40px), calc(100% - 16px) calc(100% - 24px), calc(100% - 68px) calc(100% - 24px), calc(100% - 92px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
  z-index: 0;
}
.evt-hero__media picture {
  display: contents;
}
.evt-hero__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--media-pos, center top);
     object-position: var(--media-pos, center top);
}
.evt-hero__media--center {
  --media-pos: center center;
}
.evt-hero__frame {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.evt-hero__frame::before, .evt-hero__frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background-image: url("/img/events-card-frame.svg");
  background-repeat: no-repeat;
  background-size: 628px 453px;
}
.evt-hero__frame::before {
  top: 0;
}
.evt-hero__frame::after {
  bottom: 0;
}
.evt-hero__frame--left {
  left: 0;
}
.evt-hero__frame--left::before {
  background-position: left top;
}
.evt-hero__frame--left::after {
  background-position: left bottom;
}
.evt-hero__frame--right {
  right: 0;
}
.evt-hero__frame--right::before {
  background-position: right top;
}
.evt-hero__frame--right::after {
  background-position: right bottom;
}
.evt-hero__info {
  position: relative;
  z-index: 1;
}
.evt-hero__desc {
  margin: 0 0 24px;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-text-muted);
  text-wrap: balance;
}
.evt-hero__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.evt-hero__feature {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  position: relative;
  padding-left: 1.5em;
  color: var(--color-text);
  text-align: left;
}
.evt-hero__feature::before {
  content: "//";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: inherit;
  color: var(--evt-color);
}
.evt-hero__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.evt-hero__details, .evt-hero__plan {
  max-width: 100%;
}
.evt-hero__plan {
  --btn-color: var(--evt-color);
}
@media (max-width: 991px) {
  .evt-hero {
    padding-bottom: 0;
  }
  .evt-hero__title {
    margin: 24px 0 350px;
    font-size: 32px !important;
  }
  html[lang=es] .evt-hero__title, html[lang=fr] .evt-hero__title {
    font-size: 30px !important;
  }
  .evt-hero__title {
    line-height: 1.1;
  }
  .evt-hero__video {
    width: 360px;
    height: 360px;
    top: 100px;
  }
  .evt-hero__video::after {
    top: 0;
    left: calc(50% - 180px);
    right: auto;
    bottom: auto;
    width: 360px;
    height: 360px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(4, 8, 20, 0) 54.81%, #040814 100%);
  }
  .evt-hero__video::before {
    top: auto;
    left: 0;
    right: auto;
    bottom: 0;
    width: 360px;
    height: 180px;
    background: linear-gradient(180deg, rgba(4, 8, 20, 0) 0%, #040814 100%);
    transform: scaleX(-1);
  }
  .evt-hero__card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .evt-hero__frame {
    display: none;
  }
  .evt-hero__media {
    height: 230px;
    padding: 4px;
    background: var(--color-semi-dark);
    clip-path: polygon(13px 0, calc(100% - 13px) 0, 100% 13px, 100% calc(100% - 13px), calc(100% - 13px) 100%, 13px 100%, 0 calc(100% - 13px), 0 13px);
  }
  .evt-hero__media img {
    clip-path: polygon(11px 0, calc(100% - 11px) 0, 100% 11px, 100% calc(100% - 11px), calc(100% - 11px) 100%, 11px 100%, 0 calc(100% - 11px), 0 11px);
  }
  .evt-hero__info {
    text-align: center;
  }
  .evt-hero__desc {
    margin-bottom: 16px;
    font-size: 18px;
  }
  .evt-hero__features {
    align-items: flex-start;
  }
  .evt-hero__feature {
    font-size: 18px;
  }
  .evt-hero__feature::before {
    font-size: 14px;
  }
  .evt-hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .evt-hero__backglow {
    width: 360px;
    height: 438px;
  }
  .evt-hero__backglow::before {
    -webkit-mask: url("/img/events-glow-mask-mob.svg") no-repeat center/360px 438px;
    mask: url("/img/events-glow-mask-mob.svg") no-repeat center/360px 438px;
  }
}

.evt-tags {
  position: relative;
  padding: 64px 0;
}
.evt-tags__head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.evt-tags__line {
  flex: 1;
  height: 1px;
  background: var(--color-semi-dark);
}
.evt-tags__rule {
  display: block;
  height: 1px;
  background: var(--color-semi-dark);
}
.evt-tags__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  white-space: nowrap;
}
.evt-tags__marquee {
  overflow: hidden;
  margin-bottom: 32px;
}
.evt-tags__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: evt-tags-scroll 32s linear infinite;
}
.evt-tags__group {
  flex-shrink: 0;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.evt-tags__item {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  white-space: nowrap;
  color: var(--evt-color, var(--color-text));
}
.evt-tags__item::after {
  content: "/";
  color: var(--color-text-muted);
}
@media (max-width: 991px) {
  .evt-tags {
    padding: 32px 0 64px;
  }
  .evt-tags__head {
    gap: 16px;
    margin-bottom: 16px;
  }
  .evt-tags__title {
    font-size: 18px;
    line-height: 1.1;
  }
  .evt-tags__marquee {
    margin-bottom: 16px;
  }
  .evt-tags__item {
    font-size: 18px;
    line-height: 1.1;
    gap: 20px;
    padding-right: 20px;
  }
}

@keyframes evt-tags-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .evt-tags__track {
    animation: none;
  }
}
.evt-highlights {
  position: relative;
  overflow-x: clip;
  padding-bottom: 120px;
}
.evt-highlights__head {
  text-align: center;
  margin-bottom: 48px;
}
.evt-highlights__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.evt-highlights__title-accent {
  color: var(--evt-color);
}
.evt-highlights__subtitle {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 16px auto 0;
  max-width: 720px;
  color: var(--color-text-muted);
}
.evt-highlights__row {
  position: relative;
}
.evt-highlights__row + .evt-highlights__row {
  margin-top: 40px;
}
.evt-highlights__slider {
  overflow: hidden;
}
.evt-highlights__track {
  display: flex;
  align-items: stretch;
}
.evt-highlights__thumb {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  display: block;
  background-color: var(--color-semi-dark);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}
.evt-highlights__thumb picture {
  display: contents;
}
.evt-highlights__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.evt-highlights__thumb--video {
  width: 368px;
  aspect-ratio: 368/540;
  background-color: var(--color-semi-dark);
  transition: filter 0.25s ease, background-color 0.2s ease;
  clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 24px), calc(100% - 24px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
}
.evt-highlights__thumb--video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #040814;
  clip-path: polygon(26px 6px, calc(100% - 26px) 6px, calc(100% - 6px) 26px, calc(100% - 6px) calc(100% - 26px), calc(100% - 26px) calc(100% - 6px), 26px calc(100% - 6px), 6px calc(100% - 26px), 6px 26px);
}
.evt-highlights__thumb--video img {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: polygon(29px 12px, calc(100% - 29px) 12px, calc(100% - 12px) 29px, calc(100% - 12px) calc(100% - 29px), calc(100% - 29px) calc(100% - 12px), 29px calc(100% - 12px), 12px calc(100% - 29px), 12px 29px);
}
.evt-highlights__thumb--video:hover {
  background-color: var(--evt-color);
  filter: drop-shadow(0 0 40px var(--evt-color));
}
.evt-highlights__thumb--photo {
  width: 302px;
  aspect-ratio: 302/200;
}
.evt-highlights__thumb--video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(4, 8, 20, 0.35);
  clip-path: polygon(29px 12px, calc(100% - 29px) 12px, calc(100% - 12px) 29px, calc(100% - 12px) calc(100% - 29px), calc(100% - 29px) calc(100% - 12px), 29px calc(100% - 12px), 12px calc(100% - 29px), 12px 29px);
  transition: background 0.2s ease;
}
.evt-highlights__thumb--video:hover::after {
  background: rgba(4, 8, 20, 0.15);
}
.evt-highlights__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  color: var(--color-text);
  border: 4px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.evt-highlights__play svg {
  width: 64px;
  height: 64px;
}
.evt-highlights__thumb--video:hover .evt-highlights__play {
  background: var(--evt-color);
  border-color: var(--evt-color);
  transform: translate(-50%, -50%) scale(1.05);
}
.evt-highlights__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.evt-highlights__nav:hover {
  color: var(--color-text);
}
.evt-highlights__nav--next svg {
  transform: scaleX(-1);
}
.evt-highlights__nav {
  width: 48px;
  height: 48px;
}
.evt-highlights__nav svg {
  width: 34px;
  height: 29px;
}
.evt-highlights__nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.evt-highlights__nav--prev {
  left: 16px;
}
.evt-highlights__nav--next {
  right: 16px;
}
.evt-highlights__controls {
  display: contents;
}
.evt-highlights__dots {
  display: none;
}
@media (max-width: 991px) {
  .evt-highlights {
    padding-bottom: 64px;
  }
  .evt-highlights__head {
    margin-bottom: 24px;
  }
  .evt-highlights__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .evt-highlights__subtitle {
    font-size: 18px;
  }
  .evt-highlights__thumb--video {
    width: 246px;
  }
  .evt-highlights__thumb--photo {
    width: 266px;
    aspect-ratio: 266/175;
  }
  .evt-highlights__play {
    width: 48px;
    height: 48px;
  }
  .evt-highlights__play svg {
    width: 48px;
    height: 48px;
  }
  .evt-highlights__nav {
    display: inline-flex;
    width: 32px;
    height: 32px;
  }
  .evt-highlights__nav svg {
    width: 22px;
    height: 19px;
  }
  .evt-highlights__row--videos .evt-highlights__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 24px 0;
  }
  .evt-highlights__row--videos .evt-highlights__nav {
    position: static;
    transform: none;
  }
  .evt-highlights__row--photos .evt-highlights__controls {
    display: block;
    position: relative;
    min-height: 32px;
    margin-top: 24px;
    padding: 0 20px;
  }
  .evt-highlights__row--photos .evt-highlights__nav--prev {
    left: 20px;
  }
  .evt-highlights__row--photos .evt-highlights__nav--next {
    right: 20px;
  }
  .evt-highlights__dots {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: -4px;
    width: auto;
    text-align: center;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-size: 6px;
  }
  .evt-highlights__dots .swiper-pagination-bullet {
    border-radius: 0;
    background: var(--color-text-muted);
    opacity: 1;
  }
  .evt-highlights__dots .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background: var(--evt-color);
  }
}

.evt-included {
  position: relative;
  padding-bottom: 120px;
  scroll-margin-top: 140px;
}
.evt-included__head {
  text-align: left;
  margin-bottom: 48px;
}
.evt-included__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  --btn-color: var(--evt-color);
}
.evt-included__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.evt-included__title-accent {
  color: var(--evt-color);
}
.evt-included__subtitle {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 16px 0 0;
  max-width: 720px;
  color: var(--color-text-muted);
}
.evt-included__entry + .evt-included__entry {
  margin-top: 40px;
}
.evt-included__entry.is-open .evt-included__chevron {
  transform: rotate(0deg);
}
.evt-included__entry.is-open .evt-included__name {
  color: var(--evt-color);
}
.evt-included__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-text);
}
.evt-included__toggle:hover .evt-included__name {
  color: var(--evt-color);
}
.evt-included__name {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  text-align: left;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.evt-included__line {
  flex: 1 1 auto;
  height: 2px;
  background: var(--color-semi-dark);
}
.evt-included__chevron {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.evt-included__chevron svg {
  display: block;
  width: 100%;
  height: 100%;
}
.evt-included__chevron path {
  fill: var(--color-semi-dark);
}
.evt-included__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.evt-included__text {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  font-size: 20px;
  margin: 0;
  padding: 8px 0 0;
  max-width: 920px;
  color: var(--color-text);
}
.evt-included__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
}
.evt-included__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-text);
}
@media (max-width: 991px) {
  .evt-included {
    padding-bottom: 64px;
    scroll-margin-top: 104px;
  }
  .evt-included__head {
    margin-bottom: 16px;
  }
  .evt-included__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .evt-included__subtitle {
    font-size: 18px;
  }
  .evt-included__entry + .evt-included__entry {
    margin-top: 16px;
  }
  .evt-included__toggle {
    gap: 16px;
  }
  .evt-included__name {
    font-size: 18px;
    line-height: 1.1;
  }
  .evt-included__text {
    font-size: 18px;
    padding-top: 16px;
  }
  .evt-included__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .evt-included__item {
    font-size: 18px;
  }
}

.evt-schedule {
  position: relative;
  height: calc(var(--screens, 5) * 100vh);
  --evt-color: var(--color-event);
  --dot: 16px;
}
.evt-schedule__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1700px) {
  .evt-schedule {
    height: calc(var(--screens, 5) * 100vh / 0.85);
  }
  .evt-schedule__pin {
    height: 117.6470588235vh;
  }
}
.evt-schedule__head {
  text-align: center;
  margin-bottom: 34px;
}
.evt-schedule__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: clamp(40px, 5vw, 66px);
  white-space: nowrap;
  margin: 0 0 16px;
}
.evt-schedule__title-accent {
  color: var(--evt-color);
}
.evt-schedule__subtitle {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-text-muted);
  text-wrap: balance;
}
.evt-schedule__timeline {
  margin-bottom: 24px;
}
.evt-schedule__track {
  position: relative;
  padding: 130px 0 43px;
}
.evt-schedule__line, .evt-schedule__rail, .evt-schedule__play, .evt-schedule__fill {
  position: absolute;
  top: 135px;
  left: 0;
  height: 6px;
  pointer-events: none;
}
.evt-schedule__line {
  width: 150vw;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-semi-dark);
}
.evt-schedule__rail {
  width: calc(var(--track-frac, 1) * 100%);
  background: var(--color-text);
}
.evt-schedule__play {
  left: calc(var(--game-from, 0) * 100%);
  width: calc((clamp(var(--game-from, 0), var(--fill-frac, 0), var(--game-to, 0)) - var(--game-from, 0)) * 100%);
  opacity: clamp(0, (var(--fill-frac, 0) - var(--game-from, 0)) * 1000, 1);
  background: var(--evt-color);
  box-shadow: 0 0 8px 1px var(--evt-color), 0 0 18px 4px var(--evt-color);
  transition: width 0.35s ease, opacity 0.35s ease;
  z-index: 1;
}
.evt-schedule__fill {
  width: calc(var(--fill-frac, 0) * 100%);
  background: var(--evt-color);
  box-shadow: 0 0 12px var(--evt-color);
  transition: width 0.35s ease;
  z-index: 1;
}
.evt-schedule__points {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.evt-schedule__point {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.evt-schedule__num {
  position: absolute;
  bottom: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  letter-spacing: 0;
  font-size: clamp(36px, 4vw, 66px);
  line-height: 1;
  color: var(--color-text);
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.3s ease;
}
.evt-schedule__num-unit {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin-top: 0;
  color: #3C4454;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.evt-schedule__dot {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  width: var(--dot);
  height: var(--dot);
  background: none;
  flex: none;
}
.evt-schedule__dot-ico {
  --dot-color: var(--color-text);
  position: absolute;
  inset: 0;
  clip-path: polygon(25% 0, 75% 0, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0 75%, 0 25%);
  background: var(--dot-color);
  transition: inset 0.3s ease, background 0.3s ease;
}
.evt-schedule__dot-ico::before {
  content: "";
  position: absolute;
  inset: 2px;
  clip-path: polygon(25% 0, 75% 0, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0 75%, 0 25%);
  background: #040814;
  box-shadow: inset 0 0 6px var(--dot-color);
  transition: box-shadow 0.3s ease;
}
.evt-schedule button.evt-schedule__dot {
  cursor: pointer;
}
.evt-schedule__point--add .evt-schedule__dot-ico {
  --dot-color: var(--color-text-muted);
}
.evt-schedule__point:not(.is-active) button.evt-schedule__dot:hover .evt-schedule__dot-ico {
  --dot-color: var(--evt-color);
}
.evt-schedule__under {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-text-muted);
}
.evt-schedule__point--add .evt-schedule__under {
  color: #3C4454;
}
.evt-schedule__point.is-done .evt-schedule__dot-ico, .evt-schedule__point.is-next .evt-schedule__dot-ico {
  --dot-color: var(--evt-color);
}
.evt-schedule__point.is-active .evt-schedule__dot-ico {
  --dot-color: var(--evt-color);
  inset: -8px;
}
.evt-schedule__point.is-active .evt-schedule__dot-ico::before {
  box-shadow: inset 0 0 10px var(--dot-color);
}
.evt-schedule__point.is-active .evt-schedule__num {
  color: var(--evt-color);
}
.evt-schedule__point.is-active .evt-schedule__num-unit {
  color: var(--color-text);
  opacity: 1;
}
.evt-schedule__point.is-next .evt-schedule__dot {
  animation: evt-schedule-pulse 1.1s ease-in-out infinite;
}
.evt-schedule__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  height: 180px;
}
.evt-schedule__cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  --btn-color: var(--evt-color);
}
.evt-schedule__caption-body {
  flex: 0 1 760px;
  text-align: center;
}
.evt-schedule__caption-title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: 24px;
  margin: 0 0 16px;
  color: var(--evt-color);
}
.evt-schedule__caption-desc {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0;
  color: var(--color-text-muted);
  text-wrap: balance;
}
.evt-schedule__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.evt-schedule__nav:hover {
  color: var(--color-text);
}
.evt-schedule__nav--next svg {
  transform: scaleX(-1);
}
.evt-schedule__nav {
  width: 48px;
  height: 48px;
}
.evt-schedule__nav svg {
  width: 34px;
  height: 29px;
}
.evt-schedule__nav {
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .evt-schedule {
    height: auto;
    padding-bottom: 64px;
  }
  .evt-schedule__pin {
    position: static;
    height: auto;
    overflow: visible;
  }
  .evt-schedule__head {
    margin-bottom: 24px;
  }
  .evt-schedule__timeline {
    margin-bottom: 0;
    margin-left: -20px;
    margin-right: -20px;
  }
  .evt-schedule__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .evt-schedule__subtitle {
    font-size: 18px;
  }
  .evt-schedule__track {
    padding: 74px 0;
    overflow: hidden;
    touch-action: pan-y;
  }
  .evt-schedule__line, .evt-schedule__rail, .evt-schedule__play, .evt-schedule__fill {
    display: none;
  }
  .evt-schedule__points {
    justify-content: flex-start;
    width: -moz-max-content;
    width: max-content;
    gap: 96px;
    transition: transform 0.35s ease;
    will-change: transform;
  }
  .evt-schedule__points::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 8px;
    right: 8px;
    height: 2px;
    transform: translateY(-50%);
    background: var(--color-semi-dark);
  }
  .evt-schedule__num {
    font-size: 28px;
  }
  .evt-schedule__num-unit {
    font-size: 14px;
    margin-top: 6px;
  }
  .evt-schedule__under {
    font-size: 14px;
    top: calc(100% + 12px);
  }
  .evt-schedule__caption {
    flex-wrap: wrap;
    row-gap: 24px;
    -moz-column-gap: 0;
         column-gap: 0;
    height: auto;
  }
  .evt-schedule__caption-body {
    order: -1;
    flex: 0 0 100%;
  }
  .evt-schedule__caption-title {
    font-size: 20px;
    line-height: 1.1;
    font-size: 18px;
    margin-bottom: 8px;
  }
  .evt-schedule__caption-desc {
    font-size: 18px;
  }
  .evt-schedule__nav {
    width: 32px;
    height: 32px;
  }
  .evt-schedule__nav svg {
    width: 22px;
    height: 19px;
  }
}

@keyframes evt-schedule-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}
.evt-pricing {
  position: relative;
  padding-bottom: 120px;
  text-align: center;
  overflow-x: clip;
  scroll-margin-top: 140px;
}
.evt-pricing__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
}
.evt-pricing__subtitle {
  margin: 16px auto 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--color-text-muted);
}
@media (max-width: 991px) {
  .evt-pricing {
    padding-bottom: 64px;
    scroll-margin-top: 104px;
  }
  .evt-pricing__title {
    font-size: 26px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .evt-pricing__subtitle {
    margin-top: 8px;
    font-size: 14px;
  }
}

.evt-plan-slider {
  margin-top: 48px;
  overflow: visible;
}
.evt-plan-slider__track {
  display: flex;
  align-items: stretch;
}
.evt-plan-slider__footer {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.evt-plan-slider__dots {
  display: none;
  flex: 1;
  text-align: center;
  line-height: 0;
  --swiper-pagination-bullet-horizontal-gap: 6px;
}
.evt-plan-slider__dots .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: var(--color-text-muted);
  opacity: 1;
  transition: background 0.2s ease;
}
.evt-plan-slider__dots .swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
  background: var(--evt-color);
}
.evt-plan-slider__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.evt-plan-slider__nav:hover {
  color: var(--color-text);
}
.evt-plan-slider__nav--next svg {
  transform: scaleX(-1);
}
.evt-plan-slider__nav {
  width: 48px;
  height: 48px;
}
.evt-plan-slider__nav svg {
  width: 34px;
  height: 29px;
}
@media (max-width: 991px) {
  .evt-plan-slider {
    margin-top: 16px;
  }
  .evt-plan-slider__footer {
    gap: 16px;
  }
  .evt-plan-slider__dots {
    display: block;
  }
  .evt-plan-slider__nav {
    width: 32px;
    height: 32px;
  }
  .evt-plan-slider__nav svg {
    width: 22px;
    height: 19px;
  }
}

.evt-plan {
  position: relative;
  flex: 0 0 auto;
  width: 410px;
  max-width: 100%;
  min-height: 485px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 32px 40px;
  line-height: 1.1;
}
.evt-plan::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #282e3d;
  background-image: linear-gradient(180deg, #282e3d 0%, rgba(40, 46, 61, 0) 93.4%), url("/img/pricing-card-bg.svg");
  background-repeat: no-repeat, repeat;
  clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 40px), calc(100% - 16px) calc(100% - 24px), calc(100% - 68px) calc(100% - 24px), calc(100% - 92px) 100%, 92px 100%, 68px calc(100% - 24px), 16px calc(100% - 24px), 0 calc(100% - 40px), 0 24px);
  z-index: 0;
}
.evt-plan__frame {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.evt-plan__frame::before, .evt-plan__frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background-image: url("/img/pricing-card-frame.svg");
  background-repeat: no-repeat;
  background-size: 411px 485px;
}
.evt-plan__frame::before {
  top: 0;
}
.evt-plan__frame::after {
  bottom: 0;
}
.evt-plan__frame--left {
  left: 0;
}
.evt-plan__frame--left::before {
  background-position: left top;
}
.evt-plan__frame--left::after {
  background-position: left bottom;
}
.evt-plan__frame--right {
  right: 0;
}
.evt-plan__frame--right::before {
  background-position: right top;
}
.evt-plan__frame--right::after {
  background-position: right bottom;
}
.evt-plan__frame-line {
  display: none;
}
.evt-plan__tag, .evt-plan__title, .evt-plan__meta, .evt-plan__price, .evt-plan__per, .evt-plan__addons, .evt-plan__cta {
  position: relative;
  z-index: 1;
}
.evt-plan__tag {
  height: 20px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 20px;
  color: var(--evt-color);
  position: absolute;
  top: 42px;
}
.evt-plan__title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  height: 70px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1.1;
  color: var(--color-text);
  text-align: center;
  text-wrap: balance;
  white-space: pre-line;
}
.evt-plan__accent {
  color: var(--evt-color);
}
.evt-plan__meta {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--color-text);
}
.evt-plan__price {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--evt-color);
}
.evt-plan__per {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--evt-color);
}
.evt-plan__addons {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-text-muted);
}
.evt-plan__sep {
  margin: 0 8px;
  color: inherit;
}
.evt-plan__cta {
  margin-top: auto;
  --btn-color: var(--evt-color);
}
@media (max-width: 991px) {
  .evt-plan {
    width: 264px;
    min-height: 0;
    padding: 24px 16px 32px;
  }
  .evt-plan::before {
    display: none;
  }
  .evt-plan__frame {
    display: none;
  }
  .evt-plan__frame-line {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 26px;
    z-index: 3;
    pointer-events: none;
  }
  .evt-plan__frame-line--top {
    top: 0;
  }
  .evt-plan__frame-line--bottom {
    bottom: 0;
    transform: scaleY(-1);
  }
  .evt-plan__tag {
    top: 24px;
  }
  .evt-plan__title {
    font-size: 26px;
    line-height: 1.1;
    height: 48px;
    font-size: 20px;
  }
  .evt-plan__meta {
    margin-top: 16px;
    font-size: 14px;
  }
  .evt-plan__price {
    margin-top: 16px;
    font-size: 32px !important;
  }
  html[lang=es] .evt-plan__price, html[lang=fr] .evt-plan__price {
    font-size: 30px !important;
  }
  .evt-plan__per {
    margin-top: 4px;
    font-size: 14px;
  }
  .evt-plan__addons {
    margin-top: 16px;
  }
  .evt-plan__cta {
    margin-top: 32px;
  }
}

.evt-info {
  position: relative;
  padding-bottom: 120px;
}
.evt-info__head {
  text-align: center;
}
.evt-info__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  text-wrap: balance;
}
.evt-info__subtitle {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 16px auto 0;
  max-width: 720px;
  color: var(--color-text-muted);
}
.evt-info__inner {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 57%;
  gap: var(--gap);
  align-items: end;
}
.evt-info__content {
  position: relative;
  z-index: 3;
  padding: 44px 32px 36px;
}
.evt-info__content::before, .evt-info__content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 63px;
  background: url("/img/how-to-play-border.svg") no-repeat center/100% 100%;
  pointer-events: none;
}
.evt-info__content::before {
  top: 0;
}
.evt-info__content::after {
  bottom: 0;
  transform: scaleY(-1);
}
.evt-info__frame {
  display: none;
}
.evt-info__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
.evt-info__step {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.evt-info__step-number {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--evt-color);
}
.evt-info__step-num {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 30px;
}
.evt-info__step-text {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0;
}
.evt-info__media {
  position: relative;
  margin: 0;
}
.evt-info__media picture {
  display: contents;
}
.evt-info__media img {
  display: block;
  width: 100%;
}
@media (max-width: 1270px) {
  .evt-info__inner {
    grid-template-columns: 1fr 51%;
  }
}
@media (max-width: 991px) {
  .evt-info {
    padding-bottom: 64px;
  }
  .evt-info__head {
    margin-bottom: 0;
  }
  .evt-info__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .evt-info__subtitle {
    margin-top: 8px;
    font-size: 14px;
  }
  .evt-info__inner {
    position: relative;
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
    justify-content: center;
    padding-top: 273px;
    margin-top: 16px;
  }
  .evt-info__media {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
  }
  .evt-info__content {
    padding: 24px 16px 32px;
  }
  .evt-info__content::before, .evt-info__content::after {
    content: none;
  }
  .evt-info__frame {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 26px;
    pointer-events: none;
  }
  .evt-info__frame--top {
    top: 0;
  }
  .evt-info__frame--bottom {
    bottom: 0;
    transform: scaleY(-1);
  }
  .evt-info__steps {
    gap: 16px;
  }
  .evt-info__step {
    gap: 4px;
  }
  .evt-info__step-number {
    font-size: 14px;
  }
  .evt-info__step-num {
    font-size: 18px;
    line-height: 1.1;
  }
  .evt-info__step-text {
    font-size: 18px;
  }
}

.evt-reviews {
  position: relative;
  padding-bottom: 120px;
}
.evt-reviews__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 0 0 48px;
  text-align: center;
  text-wrap: balance;
}
.evt-reviews__title-accent {
  color: var(--evt-color);
}
.evt-reviews__inner {
  position: relative;
}
.evt-reviews__slider {
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}
.evt-reviews__list {
  display: flex;
  align-items: flex-start;
}
.evt-reviews__slide {
  flex-shrink: 0;
  text-align: center;
}
.evt-reviews__avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border: 2px solid var(--color-semi-dark);
  border-radius: 50%;
  overflow: hidden;
}
.evt-reviews__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.evt-reviews__avatar--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--avatar-bg, var(--color-semi-dark));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
}
.evt-reviews__star--off {
  opacity: 0.28;
}
.evt-reviews__stars {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.evt-reviews__stars .evt-reviews__star {
  width: 31px;
  height: auto;
}
.evt-reviews__quote {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 24px 0 0;
  color: var(--color-text);
  text-wrap: balance;
}
.evt-reviews__author {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  display: block;
  margin-top: 16px;
  font-style: normal;
  color: var(--color-text-muted);
}
.evt-reviews__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.evt-reviews__nav:hover {
  color: var(--color-text);
}
.evt-reviews__nav--next svg {
  transform: scaleX(-1);
}
.evt-reviews__nav {
  width: 48px;
  height: 48px;
}
.evt-reviews__nav svg {
  width: 34px;
  height: 29px;
}
.evt-reviews__nav {
  position: absolute;
  top: 120px;
}
.evt-reviews__nav--prev {
  left: 0;
}
.evt-reviews__nav--next {
  right: 0;
}
@media (max-width: 991px) {
  .evt-reviews {
    padding-bottom: 64px;
  }
  .evt-reviews__title {
    font-size: 26px;
    line-height: 1.1;
    margin-bottom: 24px;
  }
  .evt-reviews__quote {
    font-size: 20px;
    line-height: 1.1;
  }
  .evt-reviews__inner {
    padding-bottom: 56px;
  }
  .evt-reviews__nav {
    top: auto;
    bottom: 0;
    width: 32px;
    height: 32px;
  }
  .evt-reviews__nav svg {
    width: 22px;
    height: 19px;
  }
  .evt-reviews__nav--prev {
    left: auto;
    right: calc(50% + 20px);
  }
  .evt-reviews__nav--next {
    left: calc(50% + 20px);
    right: auto;
  }
}

.evt-request {
  position: relative;
}
.evt-request__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 0 0 48px;
  text-align: center;
  text-wrap: balance;
}
.evt-request__title--sm {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.evt-request__title-accent {
  color: var(--form-accent);
}
.evt-request__panel {
  position: relative;
  padding: 24px;
  background: #3C4454;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}
.evt-request__panel-title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}
.evt-request__form {
  margin-top: 24px;
}
@media (max-width: 991px) {
  .evt-request__title {
    font-size: 26px;
    line-height: 1.1;
    margin-bottom: 24px;
  }
  .evt-request__title--sm {
    font-size: 20px;
    line-height: 1.1;
  }
  .evt-request__panel {
    padding: 16px;
  }
  .evt-request__panel-title {
    font-size: 20px;
    line-height: 1.1;
  }
  .evt-request__form {
    margin-top: 16px;
  }
}

.gift-cards {
  padding-bottom: 120px;
}
.gift-cards__inner {
  display: grid;
  grid-template-columns: 1fr clamp(415px, 40vw, 516px);
  gap: var(--gap);
  align-items: center;
}
.gift-cards__media {
  position: relative;
  margin: 0;
  min-height: 698px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gift-cards__media::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  width: 780px;
  height: 780px;
  transform: translate(-50%, -50%);
  background: radial-gradient(50% 50% at 50% 50%, var(--color-gift) 38%, rgba(46, 139, 255, 0) 88%);
  pointer-events: none;
}
.gift-cards__media::after {
  content: "";
  position: absolute;
  z-index: 4;
  width: 737px;
  height: 232px;
  left: calc(50% - 368.5px);
  bottom: 0;
  background: linear-gradient(180deg, rgba(4, 8, 20, 0) 0%, #040814 100%);
  pointer-events: none;
}
.gift-cards picture {
  display: contents;
}
.gift-cards__phone {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.gift-cards__card {
  position: absolute;
  z-index: 3;
  height: auto;
  pointer-events: none;
  will-change: transform;
}
.gift-cards__card--1 {
  top: 23%;
  right: 67%;
  width: 255px;
}
.gift-cards__card--2 {
  top: 35%;
  left: 69%;
  width: 143px;
}
.gift-cards__card--3 {
  top: 4%;
  left: 81%;
  width: 124px;
}
.gift-cards__card--4 {
  bottom: 4%;
  right: 58%;
  width: 161px;
}
.gift-cards__card--5 {
  bottom: 12%;
  left: 75%;
  width: 145px;
}
.gift-cards__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 64px;
  white-space: pre-line;
}
.gift-cards__box {
  position: relative;
  padding: 44px 32px 34px;
}
.gift-cards__box::before, .gift-cards__box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 63px;
  background: url("/img/how-to-play-border.svg") no-repeat center/100% 100%;
  pointer-events: none;
}
.gift-cards__box::before {
  top: 0;
}
.gift-cards__box::after {
  bottom: 0;
  transform: scaleY(-1);
}
.gift-cards__frame-line {
  display: none;
}
.gift-cards__subtitle {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-gift);
}
.gift-cards__text {
  margin: 16px 0 0;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-text);
}
.gift-cards__from {
  display: block;
  margin-top: 32px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text);
}
.gift-cards__price-row {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.gift-cards__price {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-gift);
}
.gift-cards__unit {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text);
}
.gift-cards__buy {
  margin-top: 16px;
  display: inline-block;
}
@media (max-width: 991px) {
  .gift-cards {
    padding-bottom: 64px;
  }
  .gift-cards__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .gift-cards__content {
    display: contents;
  }
  .gift-cards__title {
    order: -2;
    font-size: 26px;
    line-height: 1.1;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .gift-cards__media {
    order: -1;
    min-height: 0;
    width: 100%;
  }
  .gift-cards__media::before {
    width: 340px;
    height: 340px;
  }
  .gift-cards__media::after {
    width: 320px;
    height: 100.73px;
    left: calc(50% - 160px);
  }
  .gift-cards__phone {
    max-width: 240px;
  }
  .gift-cards__card--1 {
    width: 150px;
  }
  .gift-cards__card--2 {
    width: 84px;
  }
  .gift-cards__card--3 {
    width: 74px;
  }
  .gift-cards__card--4 {
    width: 96px;
  }
  .gift-cards__card--5 {
    width: 86px;
  }
  .gift-cards__box {
    padding: 24px 8px 32px;
  }
  .gift-cards__box::before, .gift-cards__box::after {
    content: none;
  }
  .gift-cards__frame-line {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 26px;
    z-index: 3;
    pointer-events: none;
  }
  .gift-cards__frame-line--top {
    top: 0;
  }
  .gift-cards__frame-line--bottom {
    bottom: 0;
    transform: scaleY(-1);
  }
  .gift-cards__subtitle {
    font-size: 18px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .gift-cards__text {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.4;
  }
  .gift-cards__from {
    margin-top: 16px;
    font-size: 20px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .gift-cards__price-row {
    margin-top: 8px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .gift-cards__price {
    font-size: 32px !important;
  }
  html[lang=es] .gift-cards__price, html[lang=fr] .gift-cards__price {
    font-size: 30px !important;
  }
  .gift-cards__buy {
    margin-top: 24px;
  }
}

.pricing {
  text-align: center;
  padding-bottom: 120px;
  background-image: url("/img/pricing-bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
}
.pricing__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
}
.pricing__subtitle {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-text-muted);
}
.pricing__cards {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 991px) {
  .is-home .pricing__cards {
    margin-top: 16px;
  }
}
.pricing__card--arena {
  --plan-color: var(--color-accent);
}
.pricing__card--parties {
  --plan-color: var(--color-event);
}
.pricing__card--gift {
  --plan-color: var(--color-gift);
}
.pricing__card {
  position: relative;
  flex: 0 1 410px;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 485px;
  padding: 32px 32px 64px;
  line-height: 1.1;
}
.pricing__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #282E3D;
  background-image: linear-gradient(180deg, #282E3D 0%, rgba(40, 46, 61, 0) 93.4%), url("/img/pricing-card-bg.svg");
  background-repeat: no-repeat, repeat;
  clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 40px), calc(100% - 16px) calc(100% - 24px), calc(100% - 68px) calc(100% - 24px), calc(100% - 92px) 100%, 92px 100%, 68px calc(100% - 24px), 16px calc(100% - 24px), 0 calc(100% - 40px), 0 24px);
  z-index: 0;
}
.pricing__frame {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.pricing__frame::before, .pricing__frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background-image: url("/img/pricing-card-frame.svg");
  background-repeat: no-repeat;
  background-size: 411px 485px;
}
.pricing__frame::before {
  top: 0;
}
.pricing__frame::after {
  bottom: 0;
}
.pricing__frame--left {
  left: 0;
}
.pricing__frame--left::before {
  background-position: left top;
}
.pricing__frame--left::after {
  background-position: left bottom;
}
.pricing__frame--right {
  right: 0;
}
.pricing__frame--right::before {
  background-position: right top;
}
.pricing__frame--right::after {
  background-position: right bottom;
}
.pricing__frame-line {
  display: none;
}
.pricing__plan, .pricing__duration, .pricing__from, .pricing__price, .pricing__unit, .pricing__cta {
  position: relative;
  z-index: 1;
}
.pricing__plan {
  font-size: clamp(30px, 2.7vw, 36px);
  line-height: 1.1;
  color: var(--color-text);
  text-wrap: balance;
  white-space: pre-line;
}
.pricing__duration {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--plan-color);
}
.pricing__from {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text);
}
.pricing__price {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--plan-color);
}
.pricing__unit {
  margin-top: 8px;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.1;
  color: var(--color-text);
  text-wrap: balance;
}
.pricing__unit b {
  font-weight: inherit;
  display: block;
  margin-top: 8px;
  font-size: 0.6em;
}
.pricing__cta {
  margin-top: auto;
}
.pricing__note {
  margin: 40px 0 0;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-text);
}
.pricing__calculator {
  margin-top: 24px;
  display: inline-block;
  width: 304px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .pricing {
    padding-bottom: 64px;
    background-image: none;
  }
  .pricing__title {
    font-size: 26px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .pricing__subtitle {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .pricing__cards {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .pricing__card {
    flex: none;
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 24px 8px 32px;
  }
  .pricing__card::before {
    display: none;
  }
  .pricing__frame {
    display: none;
  }
  .pricing__frame-line {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 26px;
    z-index: 3;
    pointer-events: none;
  }
  .pricing__frame-line--top {
    top: 0;
  }
  .pricing__frame-line--bottom {
    bottom: 0;
    transform: scaleY(-1);
  }
  .pricing__plan {
    font-size: 26px;
    line-height: 1.1;
  }
  .pricing__duration {
    margin-top: 16px;
    font-size: 22px;
  }
  .pricing__from {
    margin-top: 16px;
    font-size: 18px;
  }
  .pricing__price {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 32px !important;
  }
  html[lang=es] .pricing__price, html[lang=fr] .pricing__price {
    font-size: 30px !important;
  }
  .pricing__unit {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.1;
  }
  .pricing__cta {
    margin-top: 24px;
  }
  .pricing__note {
    margin-top: 24px;
    font-size: 18px;
  }
  .pricing__calculator {
    margin-top: 24px;
  }
}

.pricing-faq-anchor {
  scroll-margin-top: 140px;
}

.pricing-page {
  text-align: center;
}
.pricing-page .breadcrumbs {
  text-align: left;
}
.pricing-page__toc {
  margin: 120px 0;
}
@media (max-width: 991px) {
  .pricing-page__toc {
    margin: 64px 0;
  }
}
.pricing-page__bg {
  background-image: url("/img/pricing-bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
}
.pricing-page__title {
  margin: 0;
  text-align: center;
  width: 100%;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: clamp(40px, 9vw, 134px);
  line-height: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
html[lang=es] .pricing-page__title, html[lang=fr] .pricing-page__title {
  font-size: clamp(40px, 9vw, 113.9px);
}
.pricing-page__title {
  line-height: var(--caption-leading);
  color: var(--color-text);
}
.pricing-page__subtitle {
  margin: 16px auto 0;
  max-width: 720px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-text-muted);
}
.pricing-page .pricing__cards {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .pricing-page__bg {
    background-image: none;
  }
  .pricing-page__subtitle {
    margin-top: 8px;
  }
  .pricing-page .pricing__cards {
    margin-top: 16px;
  }
}

.plan-section {
  padding-bottom: 120px;
  text-align: center;
  overflow-x: clip;
  scroll-margin-top: 140px;
}
.plan-section--events {
  --accent: var(--color-event);
}
.plan-section--gift {
  --accent: var(--color-gift);
}
.plan-section__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
}
.plan-section__subtitle {
  margin: 16px auto 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--color-text-muted);
}
.plan-section__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}
.plan-section__info {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}

.plan-slider {
  margin-top: 48px;
  overflow: visible;
}
.plan-slider__track {
  display: flex;
  align-items: stretch;
}
.plan-slider__footer {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.plan-slider__dots {
  display: none;
  flex: 1;
  text-align: center;
  line-height: 0;
  --swiper-pagination-bullet-horizontal-gap: 6px;
}
.plan-slider__dots .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: var(--color-text-muted);
  opacity: 1;
  transition: background 0.2s ease;
}
.plan-slider__dots .swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
  background: var(--accent);
}
.plan-slider__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.plan-slider__nav:hover {
  color: var(--color-text);
}
.plan-slider__nav--next svg {
  transform: scaleX(-1);
}
.plan-slider__nav {
  width: 48px;
  height: 48px;
}
.plan-slider__nav svg {
  width: 34px;
  height: 29px;
}
@media (max-width: 991px) {
  .plan-slider__nav {
    width: 32px;
    height: 32px;
  }
  .plan-slider__nav svg {
    width: 22px;
    height: 19px;
  }
}

.plan-slide {
  --plan-color: var(--color-event);
  position: relative;
  flex: 0 0 auto;
  width: 410px;
  max-width: 100%;
  min-height: 485px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 32px 40px;
  line-height: 1.1;
}
.plan-slide--gift {
  --plan-color: var(--color-gift);
}
.plan-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #282e3d;
  background-image: linear-gradient(180deg, #282e3d 0%, rgba(40, 46, 61, 0) 93.4%), url("/img/pricing-card-bg.svg");
  background-repeat: no-repeat, repeat;
  clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 40px), calc(100% - 16px) calc(100% - 24px), calc(100% - 68px) calc(100% - 24px), calc(100% - 92px) 100%, 92px 100%, 68px calc(100% - 24px), 16px calc(100% - 24px), 0 calc(100% - 40px), 0 24px);
  z-index: 0;
}
.plan-slide__frame {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.plan-slide__frame::before, .plan-slide__frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background-image: url("/img/pricing-card-frame.svg");
  background-repeat: no-repeat;
  background-size: 411px 485px;
}
.plan-slide__frame::before {
  top: 0;
}
.plan-slide__frame::after {
  bottom: 0;
}
.plan-slide__frame--left {
  left: 0;
}
.plan-slide__frame--left::before {
  background-position: left top;
}
.plan-slide__frame--left::after {
  background-position: left bottom;
}
.plan-slide__frame--right {
  right: 0;
}
.plan-slide__frame--right::before {
  background-position: right top;
}
.plan-slide__frame--right::after {
  background-position: right bottom;
}
.plan-slide__frame-line {
  display: none;
}
.plan-slide__tag, .plan-slide__title, .plan-slide__meta, .plan-slide__price, .plan-slide__per, .plan-slide__addons, .plan-slide__desc, .plan-slide__cta {
  position: relative;
  z-index: 1;
}
.plan-slide__tag {
  height: 20px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 20px;
  color: var(--plan-color);
  position: absolute;
  top: 42px;
}
.plan-slide__title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  height: 70px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1.1;
  color: var(--color-text);
  text-align: center;
  text-wrap: balance;
  white-space: pre-line;
}
.plan-slide__accent {
  color: var(--plan-color);
}
.plan-slide__meta {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--color-text);
}
.plan-slide__price {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--plan-color);
}
.plan-slide--gift .plan-slide__price {
  margin-top: 76px;
}
.plan-slide__price-blank {
  letter-spacing: 0.06em;
}
.plan-slide__per {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--plan-color);
}
.plan-slide__addons {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-text-muted);
}
.plan-slide__desc {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin-top: 16px;
  color: var(--color-text-muted);
}
.plan-slide__sep {
  margin: 0 8px;
  color: inherit;
}
.plan-slide__cta {
  margin-top: auto;
}
@media (max-width: 991px) {
  .plan-slide {
    width: 264px;
    min-height: 0;
    padding: 24px 16px 32px;
  }
  .plan-slide::before {
    display: none;
  }
  .plan-slide__frame {
    display: none;
  }
  .plan-slide__frame-line {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 26px;
    z-index: 3;
    pointer-events: none;
  }
  .plan-slide__frame-line--top {
    top: 0;
  }
  .plan-slide__frame-line--bottom {
    bottom: 0;
    transform: scaleY(-1);
  }
  .plan-slide__tag {
    top: 24px;
  }
  .plan-slide__title {
    font-size: 26px;
    line-height: 1.1;
    height: 48px;
    font-size: 20px;
  }
  .plan-slide__meta {
    margin-top: 16px;
    font-size: 14px;
  }
  .plan-slide__price {
    margin-top: 16px;
    font-size: 32px !important;
  }
  html[lang=es] .plan-slide__price, html[lang=fr] .plan-slide__price {
    font-size: 30px !important;
  }
  .plan-slide--gift .plan-slide__price {
    margin-top: 36px;
  }
  .plan-slide__per {
    margin-top: 4px;
    font-size: 14px;
  }
  .plan-slide__addons {
    margin-top: 16px;
  }
  .plan-slide__desc {
    font-size: 18px;
  }
  .plan-slide__cta {
    margin-top: 32px;
  }
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 24px 24px 24px 48px;
  background: #171C29;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}
.plan-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--accent);
}
.plan-card__star {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--accent);
}
.plan-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
}
.plan-card__accent {
  color: var(--accent);
}
.plan-card__tag {
  margin-left: 10px;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--accent);
  vertical-align: baseline;
}
.plan-card__meta {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--color-text);
}
.plan-card__sep {
  margin: 0 16px;
  color: var(--color-text-muted);
}
.plan-card__addons {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-text-muted);
}
.plan-card__addons .plan-card__sep {
  color: var(--color-dark);
}
.plan-card__desc {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 16px 0 0;
  color: var(--color-text-muted);
}
.plan-card__cta {
  align-self: flex-start;
  margin-top: 32px;
  margin-bottom: 8px;
}
.plan-card__price-box {
  position: absolute;
  right: 24px;
  bottom: 24px;
  text-align: right;
}
.plan-card__price {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1;
  color: var(--accent);
}
.plan-card__price-blank {
  letter-spacing: 0.06em;
}
.plan-card__per {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text);
}
.plan-card__per-value {
  margin-right: 8px;
  color: var(--accent);
}
@media (max-width: 991px) {
  .plan-card {
    min-height: 0;
    padding: 16px 16px 16px 32px;
  }
  .plan-card::before {
    left: 16px;
    top: 16px;
    bottom: 16px;
  }
  .plan-card__title {
    font-size: 18px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .plan-card__desc {
    font-size: 18px;
    margin-top: 8px;
  }
  .plan-card__price-box {
    position: static;
    text-align: left;
    margin-top: 20px;
    order: 1;
  }
  .plan-card__price {
    font-size: 44px;
  }
  .plan-card__cta {
    order: 2;
    margin-top: 24px;
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .plan-section {
    padding-bottom: 64px;
    scroll-margin-top: 104px;
  }
  .plan-section__title {
    font-size: 26px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .plan-section__subtitle {
    margin-top: 8px;
    font-size: 14px;
  }
  .plan-section__grid {
    margin-top: 32px;
    grid-template-columns: 1fr;
  }
  .plan-section__info {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .plan-slider {
    margin-top: 16px;
  }
  .plan-slider__footer {
    gap: 16px;
  }
  .plan-slider__dots {
    display: block;
  }
  .plan-card--info .plan-card__cta {
    align-self: stretch;
  }
}
@property --calc-color {
  syntax: "<color>";
  inherits: true;
  initial-value: #FF334C;
}
.calc {
  --calc-color: var(--color-accent);
  --calc-track: #3C4454;
  --calc-thumb: url("/img/calc-thumb-arena.svg");
  transition: --calc-color 0.35s ease;
  padding: 0 0 120px;
  text-align: center;
  scroll-margin-top: 140px;
}
.calc__wordmark {
  margin: 0 0 40px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-text);
}
.calc__modes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.calc__mode {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.calc__mode.is-active {
  color: var(--calc-color);
}
.calc__new {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0 12px;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-dark);
}
.calc__new::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-text-muted);
  transform: skewX(337deg);
}
.calc__modes-sep {
  color: var(--color-semi-dark);
}
.calc__panel {
  position: relative;
  z-index: 0;
  padding: 32px;
  background: var(--calc-track);
  clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 24px), calc(100% - 24px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
}
.calc__panel::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  background: var(--color-bg);
  clip-path: polygon(21px 0, calc(100% - 21px) 0, 100% 21px, 100% calc(100% - 21px), calc(100% - 21px) 100%, 21px 100%, 0 calc(100% - 21px), 0 21px);
}
.calc__frame-line {
  display: none;
}
.calc__head {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.calc__count {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 0;
  color: var(--color-text);
}
.calc__count-label {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-semi-dark);
}
.calc__slider {
  position: relative;
  --calc-pct: 50%;
  height: 6px;
  margin-top: 25px;
}
.calc__slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 6px;
  width: var(--calc-pct);
  background: var(--calc-color);
  box-shadow: 0 0 12px 2px var(--calc-color);
  pointer-events: none;
}
.calc__range {
  display: block;
  position: relative;
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 6px;
  margin: 0;
  outline: none;
  cursor: pointer;
  background: var(--calc-track);
}
.calc__range::-webkit-slider-runnable-track {
  height: 6px;
  background: transparent;
}
.calc__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 32px;
  height: 32px;
  margin-top: -13px;
  border: 0;
  background: var(--calc-thumb) center/contain no-repeat;
  cursor: pointer;
}
.calc__range::-moz-range-thumb {
  width: 32px;
  height: 32px;
  border: 0;
  background: var(--calc-thumb) center/contain no-repeat;
  cursor: pointer;
}
.calc__range::-moz-range-track {
  height: 6px;
  background: transparent;
}
.calc__scale {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  margin: 8px 0 24px;
  color: var(--color-text-muted);
}
.calc__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.calc__option {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 24px 48px;
  text-align: left;
  background: #1A2030;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}
.calc__option::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 16px;
  width: 3px;
  background: var(--calc-color);
}
.calc__option-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.calc__option-time {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: auto;
}
.calc__best {
  color: var(--calc-color);
  font-size: 16px;
}
.calc__select {
  --btn-color: var(--calc-color);
  margin-top: 32px;
  margin-bottom: 8px;
}
.calc__option-cost {
  text-align: right;
  flex-shrink: 0;
}
.calc__option-price {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--calc-color);
}
.calc__option-per {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text);
}
.calc__option-total {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text);
}
.calc__total-val {
  color: var(--calc-color);
}
@media (max-width: 991px) {
  .calc {
    padding-bottom: 64px;
  }
  .calc__wordmark {
    margin-bottom: 24px;
    font-size: 26px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .calc__modes {
    font-size: 14px;
    gap: 10px;
    margin-bottom: 24px;
  }
  .calc__panel {
    padding: 24px 16px;
    background: none;
    clip-path: none;
  }
  .calc__panel::before {
    display: none;
  }
  .calc__frame-line {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 26px;
    z-index: 3;
    pointer-events: none;
  }
  .calc__frame-line--top {
    top: 0;
  }
  .calc__frame-line--bottom {
    bottom: 0;
    transform: scaleY(-1);
  }
  .calc__head {
    margin-bottom: 16px;
    font-size: 14px;
  }
  .calc__count {
    font-size: 32px !important;
  }
  html[lang=es] .calc__count, html[lang=fr] .calc__count {
    font-size: 30px !important;
  }
  .calc__count-label {
    font-size: 14px;
  }
  .calc__slider {
    margin-top: 30px;
  }
  .calc__scale {
    margin: 9px 0 16px;
    font-size: 18px;
    line-height: 1.1;
  }
  .calc__options {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .calc__option {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
    gap: 8px;
  }
  .calc__option::before {
    display: none;
  }
  .calc__option-main {
    display: contents;
  }
  .calc__option-time {
    order: 1;
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .calc__option-cost {
    order: 2;
    text-align: center;
  }
  .calc__option-price {
    font-size: 32px !important;
  }
  html[lang=es] .calc__option-price, html[lang=fr] .calc__option-price {
    font-size: 30px !important;
  }
  .calc__option-per {
    margin-top: 0;
    font-size: 14px;
  }
  .calc__option-total {
    margin-top: 8px;
    font-size: 14px;
  }
  .calc__select {
    order: 3;
    align-self: stretch;
    margin: 8px 0 0;
  }
}

.reviews {
  text-align: center;
  padding-bottom: 120px;
}
.reviews__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
}
.reviews__subtitle {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-text-muted);
  text-wrap: balance;
}
.reviews__ratings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;
  margin-top: 28px;
}
@media (max-width: 991px) {
  .reviews__ratings {
    gap: 12px;
    margin-top: 22px;
  }
}
.reviews__featured {
  position: relative;
  margin-top: 40px;
}
.reviews__featured-slider {
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}
.reviews__featured-list {
  display: flex;
  align-items: flex-start;
}
.reviews__featured-slide {
  flex-shrink: 0;
  text-align: center;
}
.reviews__featured-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border: 2px solid var(--color-semi-dark);
  border-radius: 50%;
  overflow: hidden;
}
.reviews__featured-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews__featured-avatar--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--avatar-bg, var(--color-semi-dark));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
}
.reviews__star--off {
  opacity: 0.28;
}
.reviews__featured-stars {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.reviews__featured-stars .reviews__star {
  width: 31px;
  height: auto;
}
.reviews__featured-quote {
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-text);
  text-wrap: balance;
}
.reviews__featured-author {
  display: block;
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-style: normal;
  color: var(--color-text-muted);
}
.reviews__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.reviews__nav:hover {
  color: var(--color-text);
}
.reviews__nav--next svg {
  transform: scaleX(-1);
}
.reviews__nav {
  width: 48px;
  height: 48px;
}
.reviews__nav svg {
  width: 34px;
  height: 29px;
}
.reviews__nav {
  position: absolute;
  top: 120px;
}
.reviews__nav--prev {
  left: 0;
}
.reviews__nav--next {
  right: 0;
}
.reviews__grid-wrap {
  position: relative;
  margin-top: 64px;
}
.reviews__grid-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 370px;
  background: linear-gradient(180deg, rgba(4, 8, 20, 0) 0%, #040814 100%);
  pointer-events: none;
}
.reviews__grid {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 16px;
       column-gap: 16px;
  text-align: left;
}
.reviews__card {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 16px;
  padding: 22px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
}
.reviews__head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviews__avatar {
  width: 60px;
  height: 60px;
  margin: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.reviews__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews__avatar--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--avatar-bg, var(--color-semi-dark));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
}
.reviews__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}
.reviews__source {
  margin-left: auto;
  align-self: flex-start;
  line-height: 0;
}
.reviews__stars {
  margin-top: 16px;
  display: flex;
  gap: 6px;
}
.reviews__stars .reviews__star {
  width: 31px;
  height: auto;
}
.reviews__text {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 16px 0 0;
  line-height: 1.5;
  color: var(--color-text);
}
.reviews__note {
  margin: 40px 0 0;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-text);
}
.reviews__cta {
  margin-top: 24px;
  display: inline-block;
}
.reviews__grid-nav {
  display: none;
}
@media (max-width: 991px) {
  .reviews {
    padding-bottom: 64px;
  }
  .reviews__title {
    font-size: 26px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .reviews__subtitle {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.1;
    line-height: 1.1;
  }
  .reviews__nav {
    display: none;
  }
  .reviews__grid-wrap {
    margin-top: 24px;
  }
  .reviews__grid-wrap::after {
    display: none;
  }
  .reviews__grid {
    -moz-columns: auto;
         columns: auto;
    display: flex;
    gap: 0;
  }
  .reviews__pair {
    flex-shrink: 0;
    width: 264px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .reviews__card {
    width: 100%;
    margin-bottom: 0;
  }
  .reviews__grid-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }
  .reviews__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .reviews__dots .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 0;
    background: var(--color-text-muted);
    opacity: 1;
  }
  .reviews__dots .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
  }
  .reviews__gnav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
  }
  .reviews__gnav:hover {
    color: var(--color-text);
  }
  .reviews__gnav--next svg {
    transform: scaleX(-1);
  }
  .reviews__gnav {
    width: 32px;
    height: 32px;
  }
  .reviews__gnav svg {
    width: 22px;
    height: 19px;
  }
  .reviews__note {
    margin-top: 24px;
  }
  .reviews__cta .button__text-content {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    line-height: 1.1;
  }
  .reviews__cta .button__text-content small {
    font-size: 0.72em;
    font-weight: inherit;
    letter-spacing: inherit;
  }
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.rating-badge__logo {
  flex: none;
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.rating-badge__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.rating-badge__stars {
  display: inline-flex;
  gap: 3px;
}
.rating-badge__star {
  width: 20px;
  height: 20px;
}
.rating-badge__star--off {
  opacity: 0.28;
}
.rating-badge__count {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  font-size: 40px;
  line-height: 1;
  color: var(--color-text);
}
.rating-badge__meta {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1.2;
  color: var(--color-text-muted);
}
@media (max-width: 991px) {
  .rating-badge {
    gap: 12px;
    width: 100%;
  }
  .rating-badge__logo {
    width: 72px;
    height: 72px;
  }
  .rating-badge__star {
    width: 17px;
    height: 17px;
  }
  .rating-badge__count {
    font-size: 32px;
  }
  .rating-badge__meta {
    font-size: 12px;
  }
}

.faq {
  text-align: center;
  background-image: url("/img/faq-bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
}
.faq__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.faq__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 24px;
       column-gap: 24px;
  text-align: left;
  align-items: start;
}
.faq__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq__item {
  background: #282E3D;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}
.faq__question-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.faq__question {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 24px;
  padding: 16px 24px;
  text-align: left;
  line-height: 23px;
  color: var(--color-text-muted);
  transition: color 0.2s, padding 0.2s;
}
.faq__question:hover .faq__question-text {
  color: var(--color-text);
}
.faq__question-text {
  transition: color 0.2s;
}
.faq__toggle {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: var(--faq-accent, var(--color-accent));
  -webkit-mask: url("/img/faq-plus.svg") no-repeat center/contain;
  mask: url("/img/faq-plus.svg") no-repeat center/contain;
}
.faq__answer {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 24px;
  color: var(--color-text);
  overflow-wrap: anywhere;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.faq__answer p {
  margin: 0 0 16px;
}
.faq__answer p:last-child {
  margin-bottom: 0;
}
.faq__item--open .faq__answer {
  max-height: 600px;
  opacity: 1;
  padding: 0 24px 24px;
}
.faq__item--open .faq__question {
  color: var(--color-accent);
  padding: 24px;
}
.faq__item--open .faq__toggle {
  -webkit-mask-image: url("/img/faq-minus.svg");
  mask-image: url("/img/faq-minus.svg");
}
.faq__hl {
  color: var(--color-bg);
  background: var(--color-event);
  border-radius: 2px;
  padding: 0 0.1em;
}
.faq__actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.faq__view, .faq__contact {
  width: 304px;
  max-width: 100%;
}
.faq__contact {
  --btn-color: var(--faq-accent, var(--color-accent));
}
@media (max-width: 991px) {
  .faq {
    background-image: none;
  }
  .faq__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .faq__columns {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
  .faq__column {
    gap: 8px;
  }
  .faq__question {
    font-size: 14px;
    line-height: 1.2;
  }
  .faq__answer {
    font-size: 18px;
  }
  .faq__actions {
    flex-direction: column;
    align-items: center;
    margin-top: 16px;
    gap: 16px;
  }
}

.faq-page {
  padding-bottom: 120px;
}
.faq-page__toc {
  margin: 120px 0;
}
@media (max-width: 991px) {
  .faq-page__toc {
    margin: 64px 0;
  }
}
.faq-page__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: clamp(40px, 9vw, 134px);
  line-height: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
html[lang=es] .faq-page__title, html[lang=fr] .faq-page__title {
  font-size: clamp(40px, 9vw, 113.9px);
}
.faq-page__title {
  margin: 0;
  text-align: center;
  width: 100%;
  line-height: var(--caption-leading);
  color: var(--color-text);
}
.faq-page__subtitle {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 16px auto 40px;
  max-width: 720px;
  text-align: center;
  line-height: 1.1;
  color: var(--color-text-muted);
}
.faq-page__search {
  position: relative;
  margin-bottom: 120px;
  background: #282E3D;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}
.faq-page__search-icon {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  pointer-events: none;
}
.faq-page__search-input {
  width: 100%;
  padding: 17px 24px 17px 60px;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  font-size: 18px;
  line-height: 1.2;
  color: var(--color-text);
}
.faq-page__search-input::-moz-placeholder {
  color: var(--color-text-muted);
  opacity: 1;
}
.faq-page__search-input::placeholder {
  color: var(--color-text-muted);
  opacity: 1;
}
.faq-page__search-input:focus {
  outline: none;
}
.faq-page__search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.faq-page__category {
  scroll-margin-top: 140px;
}
.faq-page__category--hidden,
.faq-page .faq__item--hidden {
  display: none;
}
.faq-page__category--top .faq-page__heading--top,
.faq-page__category--top .faq-page__count {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: clamp(40px, 9vw, 90.048px);
  line-height: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
html[lang=es] .faq-page__category--top .faq-page__heading--top, html[lang=fr] .faq-page__category--top .faq-page__heading--top,
html[lang=es] .faq-page__category--top .faq-page__count,
html[lang=fr] .faq-page__category--top .faq-page__count {
  font-size: clamp(40px, 9vw, 76.5408px);
}
.faq-page__empty {
  margin: 0;
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-text-muted);
}
.faq-page__category + .faq-page__category {
  margin-top: 96px;
}
.faq-page__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.faq-page__heading {
  margin: 0;
  font-size: 54px;
  line-height: 1.1;
}
.faq-page__num {
  color: var(--cat-color);
}
.faq-page__count {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  font-size: 54px;
  line-height: 1.1;
  color: var(--color-semi-dark);
}
.faq-page__desc {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 16px 0 40px;
  color: var(--color-text-muted);
}
.faq-page__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-page .faq__item--open .faq__question {
  color: var(--cat-color);
}
.faq-page .faq__answer a {
  color: var(--cat-color);
  text-decoration: underline;
}
.faq-page .faq__toggle {
  --faq-accent: var(--cat-color);
}
@media (max-width: 991px) {
  .faq-page {
    padding-bottom: 64px;
  }
  .faq-page__title {
    margin: 24px 0 8px;
    font-size: 32px !important;
  }
  html[lang=es] .faq-page__title, html[lang=fr] .faq-page__title {
    font-size: 30px !important;
  }
  .faq-page__title {
    line-height: 1.1;
  }
  .faq-page__subtitle {
    margin: 0 auto 24px;
    font-size: 18px;
    line-height: 1.4;
  }
  .faq-page__search {
    margin-bottom: 64px;
  }
  .faq-page__search-icon {
    left: 16px;
  }
  .faq-page__search-input {
    padding: 16px 16px 16px 48px;
    font-size: 14px;
  }
  .faq-page__empty {
    font-size: 14px;
  }
  .faq-page__category {
    scroll-margin-top: 104px;
  }
  .faq-page__category + .faq-page__category {
    margin-top: 64px;
  }
  .faq-page__heading {
    font-size: 26px;
    line-height: 1.1;
  }
  .faq-page__count {
    font-size: 26px;
    line-height: 1.1;
  }
  .faq-page__category--top .faq-page__heading--top,
  .faq-page__category--top .faq-page__count {
    font-size: 40px;
  }
  .faq-page__desc {
    font-size: 18px;
    margin: 8px 0 16px;
  }
  .faq-page__list {
    gap: 8px;
  }
}

.toc {
  text-align: center;
}
.toc__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 0 0 32px;
  text-wrap: balance;
}
.toc__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 0;
}
.toc__link {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.toc__link::before, .toc__link::after {
  content: "/";
  color: var(--color-semi-dark);
}
.toc__link::before {
  margin-right: 16px;
}
.toc__link::after {
  margin-left: 16px;
}
.toc__link:hover, .toc__link:focus-visible {
  color: var(--cat-color);
}
@media (max-width: 991px) {
  .toc {
    position: relative;
  }
  .toc__title {
    font-size: 20px;
    line-height: 1.1;
    margin: 0 0 16px;
  }
  .toc__list {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 5;
    margin-top: 8px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    background: #282E3D;
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }
  .toc__link {
    padding: 12px 16px;
    font-size: 16px;
    text-align: left;
  }
  .toc__link::before, .toc__link::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .toc.is-open .toc__list {
    max-height: 600px;
    opacity: 1;
    padding: 8px 0;
  }
}

.scroll-toc {
  display: none;
}
@media (max-width: 991px) {
  .scroll-toc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px;
    background: #282E3D;
    border: 0;
    text-align: left;
    font-family: var(--font-display);
    font-weight: var(--heading-weight);
    font-size: 18px;
    line-height: normal;
    letter-spacing: var(--heading-tracking);
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--color-text-muted);
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  }
}
.scroll-toc__chevron {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.3s ease;
}
.toc.is-open .scroll-toc__chevron {
  transform: translateY(2px) rotate(225deg);
}

.faq-ask {
  text-align: center;
}
.faq-ask__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: clamp(40px, 9vw, 95.944px);
  line-height: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
html[lang=es] .faq-ask__title, html[lang=fr] .faq-ask__title {
  font-size: clamp(40px, 9vw, 81.5524px);
}
.faq-ask__title {
  margin: 0;
  line-height: var(--caption-leading);
}
.faq-ask__subtitle {
  margin: 16px 0 40px;
  font-family: var(--caption);
  font-weight: var(--caption-weight);
  letter-spacing: var(--caption-tracking);
  text-transform: uppercase;
  font-size: 20px;
  color: var(--color-text-muted);
}
.faq-ask__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 991px) {
  .faq-ask__title {
    font-size: 32px !important;
  }
  html[lang=es] .faq-ask__title, html[lang=fr] .faq-ask__title {
    font-size: 30px !important;
  }
  .faq-ask__title {
    line-height: 1.1;
  }
  .faq-ask__subtitle {
    margin-bottom: 24px;
    font-size: 16px;
  }
  .faq-ask__contacts {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.ask-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-text);
}
.ask-tile__icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
}
.ask-tile__icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.ask-tile__icon--fallback {
  position: relative;
}
.ask-tile__icon--fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.ask-tile__icon--fallback::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--color-bg);
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
}
.ask-tile__icon--fallback svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
}
.ask-tile__text {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.ask-tile__label {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.ask-tile__value {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text);
  transition: color 0.2s;
}
.ask-tile:hover .ask-tile__value {
  color: var(--color-accent);
}
@media (max-width: 991px) {
  .ask-tile__label {
    font-size: 14px;
  }
  .ask-tile__value {
    font-size: 18px;
    line-height: 1.1;
  }
}

.game-detail {
  position: relative;
}
.game-detail__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: clamp(40px, 9vw, 134px);
  line-height: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
html[lang=es] .game-detail__title, html[lang=fr] .game-detail__title {
  font-size: clamp(40px, 9vw, 113.9px);
}
.game-detail__title {
  margin: 0 0 420px;
  text-align: center;
  width: 100%;
  line-height: var(--caption-leading);
}
.game-detail__slash {
  line-height: 1;
  color: var(--color-text);
}
.game-detail__title-text {
  color: var(--game-color);
}
.game-detail--narrow-title .game-detail__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: clamp(40px, 9vw, 95.944px);
  line-height: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
html[lang=es] .game-detail--narrow-title .game-detail__title, html[lang=fr] .game-detail--narrow-title .game-detail__title {
  font-size: clamp(40px, 9vw, 81.5524px);
}
@media (max-width: 991px) {
  .game-detail--narrow-title .game-detail__title {
    font-size: clamp(23px, 7vw, 36px);
  }
}
.game-detail__video {
  position: absolute;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0b1020;
  border-radius: 4px;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  margin-inline: auto;
  z-index: -1;
}
.game-detail__video-bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
.game-detail__video-bg--video {
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.game-detail__video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(4, 8, 20, 0) 32.05%, #040814 100%);
}
.game-detail__video::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 690px;
  max-height: 100%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 8, 20, 0) 22.9%, #040814 58.45%);
}
.game-detail__card {
  padding-left: 70px;
  display: grid;
  grid-template-columns: 368px 1fr;
  gap: 100px;
  align-items: center;
}
.game-detail__poster-col {
  position: relative;
  isolation: isolate;
}
.game-detail__poster-glow {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 58%;
  height: 60px;
  pointer-events: none;
  will-change: opacity;
  animation: game-glow-pulse 3.2s ease-in-out infinite;
}
.game-detail__poster-glow::before, .game-detail__poster-glow::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 60px;
  background-color: var(--game-color);
}
.game-detail__poster-glow::after {
  right: 8px;
  transform: skewY(-45deg);
  box-shadow: inset -2px -3px 13px var(--game-color);
  filter: drop-shadow(2px 4px 5.4px var(--game-color));
}
.game-detail__poster-glow::before {
  left: 8px;
  transform: skewY(45deg);
  box-shadow: inset 2px -3px 13px var(--game-color);
  filter: drop-shadow(-2px 4px 5.4px var(--game-color));
}
.game-detail__poster-backglow {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 519px;
  height: 648px;
  pointer-events: none;
  will-change: opacity;
  filter: blur(13px);
  animation: game-glow-pulse 3.2s ease-in-out infinite;
}
.game-detail__poster-backglow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--game-color);
  -webkit-mask: url("/img/single-game-glow-mask.svg") no-repeat center/100% 100%;
  mask: url("/img/single-game-glow-mask.svg") no-repeat center/100% 100%;
}
.game-detail__poster {
  position: relative;
  width: 100%;
  aspect-ratio: 368/540;
  --poster-clip: polygon(
      24px 0,
      calc(100% - 24px) 0,
      100% 24px,
      100% 56.48%,
      calc(100% - 16px) 59.44%,
      calc(100% - 16px) 71.3%,
      100% 74.26%,
      100% calc(100% - 24px),
      calc(100% - 24px) 100%,
      24px 100%,
      0 calc(100% - 24px),
      0 74.26%,
      16px 71.3%,
      16px 59.44%,
      0 56.48%,
      0 24px
  );
}
.game-detail__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("/img/game-poster-frame.svg") no-repeat center/100% 100%;
  pointer-events: none;
}
.game-detail__poster-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: var(--poster-clip);
  background-color: var(--game-color);
}
.game-detail__poster-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.game-detail__info {
  position: relative;
  z-index: 1;
}
.game-detail__badge {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
  color: var(--color-event);
}
.game-detail__params {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 0 0 40px;
  color: var(--color-text-muted);
}
.game-detail__param-sep {
  color: var(--color-semi-dark);
  margin: 0 6px;
}
.game-detail__headline {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 0 0 16px;
  text-wrap: balance;
}
.game-detail__lead {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0;
  color: var(--color-text-muted);
  text-wrap: balance;
}
.game-detail__stats {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 32px 48px;
}
.game-detail__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: clamp(55px, 5.5vw, 66px);
}
.game-detail__stat-num {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: inherit;
  color: var(--game-color);
}
.game-detail__stat-label {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  font-size: 0.25em;
  color: var(--color-text-muted);
  text-align: center;
  white-space: pre-line;
}
.game-detail__actions {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.game-detail__trailer, .game-detail__book {
  width: 280px;
  max-width: 100%;
}
.game-detail__book {
  --btn-color: var(--game-color);
}
@media (max-width: 991px) {
  .game-detail {
    padding: 0;
  }
  .game-detail__title {
    margin: 24px 0 376px;
    gap: 16px;
    font-size: clamp(30px, 9vw, 36px);
  }
  .game-detail__card {
    margin-top: 40px;
    padding-left: 0;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .game-detail__poster-col {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  .game-detail__poster {
    max-width: 246px;
    margin: 0 auto;
  }
  .game-detail__poster-backglow {
    width: 400px;
    height: 439px;
  }
  .game-detail__poster-glow {
    top: 212px;
  }
  .game-detail__poster-glow::before, .game-detail__poster-glow::after {
    height: 30px;
  }
  .game-detail__poster-glow::before {
    left: 6px;
  }
  .game-detail__poster-glow::after {
    right: 6px;
  }
  .game-detail__video {
    width: 360px;
    height: 360px;
    top: 100px;
  }
  .game-detail__video::after {
    top: 0;
    left: calc(50% - 180px);
    right: auto;
    bottom: auto;
    width: 360px;
    height: 360px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(4, 8, 20, 0) 54.81%, #040814 100%);
  }
  .game-detail__video::before {
    top: auto;
    left: 0;
    right: auto;
    bottom: 0;
    width: 360px;
    height: 180px;
    background: linear-gradient(180deg, rgba(4, 8, 20, 0) 0%, #040814 100%);
    transform: scaleX(-1);
  }
  .game-detail__info {
    text-align: center;
  }
  .game-detail__headline {
    font-size: 26px;
    line-height: 1.1;
  }
  .game-detail__lead {
    font-size: 18px;
  }
  .game-detail__params {
    font-size: 14px;
  }
  .game-detail__stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 32px;
  }
  .game-detail__stat {
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
  .game-detail__stat-num {
    font-size: 44px;
  }
  .game-detail__actions {
    margin-top: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .game-detail__trailer, .game-detail__book {
    width: 100%;
  }
}

@keyframes game-glow-pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .game-detail__poster-glow {
    animation: none;
  }
}
.perfect-for {
  position: relative;
  padding: 64px 0;
}
.perfect-for__head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.perfect-for__line {
  flex: 1;
  height: 1px;
  background: var(--color-semi-dark);
}
.perfect-for__rule {
  display: block;
  height: 1px;
  background: var(--color-semi-dark);
}
.perfect-for__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  white-space: nowrap;
}
.perfect-for__marquee {
  overflow: hidden;
  margin-bottom: 32px;
}
.perfect-for__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: perfect-for-scroll 32s linear infinite;
}
.perfect-for__group {
  flex-shrink: 0;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.perfect-for__item {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  white-space: nowrap;
}
.perfect-for__item::after {
  content: "/";
  color: var(--color-text-muted);
}
.perfect-for__item {
  color: var(--item-color, var(--color-text));
}
@media (max-width: 991px) {
  .perfect-for {
    padding: 32px 0 64px;
  }
  .perfect-for__head {
    gap: 16px;
    margin-bottom: 16px;
  }
  .perfect-for__title {
    font-size: 18px;
    line-height: 1.1;
  }
  .perfect-for__marquee {
    margin-bottom: 16px;
  }
  .perfect-for__item {
    font-size: 18px;
    line-height: 1.1;
    gap: 20px;
    padding-right: 20px;
  }
}

@keyframes perfect-for-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .perfect-for__track {
    animation: none;
  }
}
.maps {
  position: relative;
  padding: 0 0 120px;
}
.maps__head {
  text-align: center;
}
.maps__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.maps__title-accent {
  color: var(--game-color);
}
.maps--stacked-title .maps__title-accent {
  display: block;
}
.maps__subtitle {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 16px auto 0;
  max-width: 720px;
  color: var(--color-text-muted);
}
.maps__filters {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 32px;
}
.maps__filters li {
  display: flex;
  align-items: center;
  gap: 32px;
}
.maps__filters li:not(:first-child)::before {
  content: "//";
  color: var(--color-semi-dark);
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.maps__filter {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.maps__filter:hover {
  color: var(--color-text);
}
.maps__filter--active {
  color: var(--game-color);
}
.maps__top {
  margin-top: 40px;
  overflow: visible;
  transition: opacity 0.25s ease;
}
.maps__top.is-switching {
  opacity: 0;
}
.maps__list {
  display: flex;
}
.maps__card {
  position: relative;
  width: 320px;
  aspect-ratio: 368/540;
  flex-shrink: 0;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.25s, filter 0.25s;
}
.maps__card:hover {
  opacity: 1;
}
.maps__card--active {
  opacity: 1;
  filter: drop-shadow(0 0 40px var(--game-color));
}
.maps__card--active .maps__card-frame::before {
  background-color: var(--game-color);
}
.maps__card-frame {
  position: absolute;
  inset: 0;
}
.maps__card-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--color-semi-dark);
  clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 24px), calc(100% - 24px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
}
.maps__card-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #040814;
  clip-path: polygon(26px 6px, calc(100% - 26px) 6px, calc(100% - 6px) 26px, calc(100% - 6px) calc(100% - 26px), calc(100% - 26px) calc(100% - 6px), 26px calc(100% - 6px), 6px calc(100% - 26px), 6px 26px);
}
.maps__card-img {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: var(--color-semi-dark);
  clip-path: polygon(29px 12px, calc(100% - 29px) 12px, calc(100% - 12px) 29px, calc(100% - 12px) calc(100% - 29px), calc(100% - 29px) calc(100% - 12px), 29px calc(100% - 12px), 12px calc(100% - 29px), 12px 29px);
}
.maps__card-img picture {
  display: contents;
}
.maps__card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.maps__gallery {
  margin-top: 40px;
  overflow: visible;
  transition: opacity 0.25s ease;
}
.maps__gallery.is-switching {
  opacity: 0;
}
.maps__gallery-list {
  display: flex;
}
.maps__thumb {
  flex-shrink: 0;
  width: 302px;
  aspect-ratio: 302/200;
  background-color: var(--color-semi-dark);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}
.maps__thumb picture {
  display: contents;
}
.maps__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.maps__nav, .maps__gallery-controls {
  display: none;
}
@media (max-width: 991px) {
  .maps {
    padding: 0 0 64px;
  }
  .maps__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .maps__subtitle {
    font-size: 18px;
    margin-top: 8px;
  }
  .maps__top {
    margin-top: 24px;
  }
  .maps__filters {
    margin: 24px 0 0;
    margin-inline: -20px;
    padding-inline: 20px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .maps__filters::-webkit-scrollbar {
    display: none;
  }
  .maps__filters li {
    flex-shrink: 0;
    gap: 16px;
  }
  .maps__filters li:not(:first-child)::before {
    font-size: 14px;
  }
  .maps__filter {
    font-size: 14px;
  }
  .maps__card {
    width: 246px;
  }
  .maps__gallery {
    margin-top: 0;
  }
  .maps__nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 24px 0;
  }
  .maps__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
  }
  .maps__arrow:hover {
    color: var(--color-text);
  }
  .maps__arrow--next svg {
    transform: scaleX(-1);
  }
  .maps__arrow {
    width: 32px;
    height: 32px;
  }
  .maps__arrow svg {
    width: 22px;
    height: 19px;
  }
  .maps__thumb {
    width: 266px;
    aspect-ratio: 266/175;
  }
  .maps__gallery-controls {
    display: block;
    position: relative;
    min-height: 32px;
    margin-top: 24px;
    padding: 0 20px;
  }
  .maps__gallery-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
  }
  .maps__gallery-arrow:hover {
    color: var(--color-text);
  }
  .maps__gallery-arrow--next svg {
    transform: scaleX(-1);
  }
  .maps__gallery-arrow {
    width: 32px;
    height: 32px;
  }
  .maps__gallery-arrow svg {
    width: 22px;
    height: 19px;
  }
  .maps__gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .maps__gallery-arrow--prev {
    left: 20px;
  }
  .maps__gallery-arrow--next {
    right: 20px;
  }
  .maps__gallery-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px !important;
    text-align: center;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-size: 6px;
  }
  .maps__gallery-dots .swiper-pagination-bullet {
    border-radius: 0;
    background: var(--color-text-muted);
    opacity: 1;
  }
  .maps__gallery-dots .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background: var(--game-color);
  }
}

.maps--static .maps__top,
.maps--static .maps__gallery {
  display: none;
}
.maps--static .maps__columns {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.maps--static .maps__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.maps--static .maps__column:nth-child(2) {
  --game-color: #FF7A3D;
}
.maps--static .maps__card {
  width: 100%;
  height: 540px;
  aspect-ratio: auto;
  opacity: 0.5;
  cursor: default;
  transition: opacity 0.25s, filter 0.25s;
}
.maps--static .maps__card-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  cursor: pointer;
}
.maps--static .maps__column:hover .maps__card {
  opacity: 1;
  filter: drop-shadow(0 0 40px var(--game-color));
}
.maps--static .maps__column:hover .maps__card .maps__card-frame::before {
  background-color: var(--game-color);
}
.maps--static .maps__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 4px solid rgba(255, 255, 255, 0.7);
  color: var(--color-text);
  pointer-events: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.maps--static .maps__play svg {
  width: 100%;
  height: 100%;
}
.maps--static .maps__column:hover .maps__play {
  background: var(--game-color);
  border-color: var(--game-color);
  transform: translate(-50%, -50%) scale(1.05);
}
.maps--static .maps__column-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.maps--static .maps__column-thumbs .maps__thumb {
  width: auto;
  aspect-ratio: 302/200;
}
@media (max-width: 991px) {
  .maps--static .maps__columns {
    display: none;
  }
  .maps--static .maps__top,
  .maps--static .maps__gallery {
    display: block;
  }
  .maps--static .maps__card {
    width: 264px;
    height: 227px;
    aspect-ratio: auto;
    opacity: 1;
  }
}

.play-modes {
  position: relative;
  padding: 0 0 120px;
}
.play-modes__head {
  text-align: left;
}
.play-modes__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.play-modes__subtitle {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 16px 0 0;
  max-width: 720px;
  color: var(--color-text-muted);
}
.play-modes__featured {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.play-modes__mode-label {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.play-modes__mode--featured .play-modes__mode-head {
  margin-bottom: 24px;
}
.play-modes__mode--featured .play-modes__mode-title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.play-modes__accordion {
  margin-top: 40px;
}
.play-modes__group + .play-modes__group {
  margin-top: 40px;
}
.play-modes__group.is-open .play-modes__chevron {
  transform: rotate(0deg);
}
.play-modes__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--group-color);
}
.play-modes__group-label {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  text-align: left;
  color: var(--group-color);
}
.play-modes__line {
  flex: 1 1 auto;
  height: 2px;
  background: var(--color-semi-dark);
}
.play-modes__note {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  flex: 0 0 auto;
  line-height: 1.1;
  color: var(--color-text-muted);
}
.play-modes__chevron {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: var(--group-color);
  transform: rotate(180deg);
}
.play-modes__chevron svg {
  display: block;
  width: 100%;
  height: 100%;
}
.play-modes__chevron path {
  fill: var(--color-semi-dark);
}
.play-modes__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.play-modes__modes {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.play-modes__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 991px) {
  .play-modes__list {
    margin-top: 16px;
    gap: 16px;
  }
}
.play-modes__mode {
  position: relative;
  display: flex;
  padding: 24px;
  background: #282E3D;
  clip-path: polygon(16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px), 0 16px);
}
.play-modes__mode-bar {
  flex: 0 0 2px;
  align-self: stretch;
  margin-right: 24px;
  background: var(--group-color);
}
.play-modes__mode-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.play-modes__mode-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}
.play-modes__mode-title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.play-modes__mode-tag {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin-left: auto;
  flex: 0 0 auto;
  color: var(--group-color);
}
.play-modes__mode-desc {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin-top: auto;
  margin-bottom: 0;
  line-height: 1.35;
  color: var(--color-text);
}
.play-modes__mode-features {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  line-height: 1.1;
}
.play-modes__mode-feature {
  color: var(--color-text-muted);
}
.play-modes__mode-sep {
  color: var(--color-dark);
}
@media (max-width: 991px) {
  .play-modes {
    padding-bottom: 64px;
  }
  .play-modes__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .play-modes__group + .play-modes__group {
    margin-top: 16px;
  }
  .play-modes__subtitle {
    font-size: 18px;
  }
  .play-modes__featured {
    margin-top: 16px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .play-modes__mode--featured .play-modes__mode-head {
    margin-bottom: 8px;
  }
  .play-modes__mode--featured .play-modes__mode-label {
    font-family: var(--font-display);
    font-weight: var(--heading-weight);
    font-size: 14px;
    line-height: normal;
    letter-spacing: var(--heading-tracking);
    text-transform: uppercase;
  }
  .play-modes__mode--featured .play-modes__mode-title {
    font-size: 18px;
    line-height: 1.1;
  }
  .play-modes__accordion {
    margin-top: 16px;
  }
  .play-modes__toggle {
    gap: 16px;
  }
  .play-modes__group-label {
    font-size: 18px;
    line-height: 1.1;
    flex-basis: auto;
  }
  .play-modes__note {
    display: none;
  }
  .play-modes__modes {
    gap: 16px;
  }
  .play-modes__mode {
    padding: 16px;
  }
  .play-modes__mode-bar {
    margin-right: 16px;
  }
  .play-modes__mode-title {
    font-size: 18px;
    line-height: 1.1;
  }
  .play-modes__mode-tag {
    font-size: 14px;
  }
  .play-modes__mode-desc {
    font-size: 18px;
    line-height: 1.4;
  }
  .play-modes__mode-features {
    margin-top: 8px;
  }
  .play-modes__mode-feature {
    font-size: 12px;
  }
}

.weapons {
  position: relative;
  padding: 0 0 120px;
}
.weapons__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 894px;
  z-index: 0;
  pointer-events: none;
  background-image: var(--weapons-bg, -webkit-image-set(url("/img/weapons-bg.jpg") 1x, url("/img/weapons-bg@2x.jpg") 2x));
  background-image: var(--weapons-bg, image-set(url("/img/weapons-bg.jpg") 1x, url("/img/weapons-bg@2x.jpg") 2x));
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1920px 894px;
}
.weapons > .container {
  position: relative;
  z-index: 1;
}
.weapons__head {
  text-align: center;
}
.weapons__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.weapons__title-accent {
  color: var(--weapons-title, var(--game-color));
}
.weapons__subtitle {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 16px auto 0;
  max-width: 720px;
  color: var(--color-text-muted);
}
.weapons__frame {
  position: relative;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  background: #4D5466;
  clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 24px), calc(100% - 24px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
}
.weapons__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #040814;
  clip-path: polygon(26px 6px, calc(100% - 26px) 6px, calc(100% - 6px) 26px, calc(100% - 6px) calc(100% - 26px), calc(100% - 26px) calc(100% - 6px), 26px calc(100% - 6px), 6px calc(100% - 26px), 6px 26px);
}
.weapons__main {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.weapons__list {
  display: flex;
}
.weapons__slide {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 487px;
  align-items: center;
  gap: 24px;
  padding: 40px;
  box-sizing: border-box;
}
.weapons__media {
  position: relative;
  aspect-ratio: 16/11;
}
.weapons__sheet {
  position: absolute;
  inset: 0;
}
.weapons__sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--weapons-fx, var(--game-color)) 1px, transparent 1px), linear-gradient(90deg, var(--weapons-fx, var(--game-color)) 1px, transparent 1px);
  background-size: 87px 77px, 87px 77px;
  background-position: center;
  opacity: 0.14;
}
.weapons__sheet::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 55%, transparent 40%, #040814 100%);
}
.weapons__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--weapons-fx, var(--game-color)) 0%, transparent 60%);
  opacity: 0.45;
}
.weapons__img {
  position: absolute;
  inset: 0;
}
.weapons__img picture {
  display: contents;
}
.weapons__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.weapons__info {
  width: 487px;
  display: flex;
  flex-direction: column;
}
.weapons__nav {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 487px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.weapons__arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.weapons__arrow:hover {
  color: var(--color-text);
}
.weapons__arrow--next svg {
  transform: scaleX(-1);
}
.weapons__arrow {
  width: 48px;
  height: 48px;
}
.weapons__arrow svg {
  width: 34px;
  height: 29px;
}
.weapons__arrow:disabled {
  opacity: 0.3;
  cursor: default;
  color: var(--color-text-muted);
}
.weapons__counter {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text);
}
.weapons__counter-current {
  color: var(--color-text);
}
.weapons__counter-sep {
  margin: 0 16px;
  color: var(--color-text-muted);
}
.weapons__name {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--weapons-accent, var(--color-event));
}
.weapons__desc {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin-top: 16px;
  max-width: 460px;
  color: var(--color-text);
}
.weapons__damage-block {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 487px;
  z-index: 2;
}
.weapons__damage-label {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  display: block;
  padding-top: 32px;
  margin-bottom: 24px;
  border-top: 1px solid rgba(141, 153, 174, 0.4);
  color: var(--color-text-muted);
}
.weapons__damage {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.weapons__damage-cell {
  position: relative;
  width: 32px;
  height: 32px;
  background: var(--weapons-damage, var(--game-color));
  clip-path: polygon(4px 0, calc(100% - 4px) 0, 100% 4px, 100% calc(100% - 4px), calc(100% - 4px) 100%, 4px 100%, 0 calc(100% - 4px), 0 4px);
}
.weapons__damage-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #040814;
  clip-path: polygon(5px 2px, calc(100% - 5px) 2px, calc(100% - 2px) 5px, calc(100% - 2px) calc(100% - 5px), calc(100% - 5px) calc(100% - 2px), 5px calc(100% - 2px), 2px calc(100% - 5px), 2px 5px);
}
.weapons__damage-cell.is-on::before {
  display: none;
}
.weapons__thumbs {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.weapons__thumbs-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.weapons__thumbs-arrow:hover {
  color: var(--color-text);
}
.weapons__thumbs-arrow--next svg {
  transform: scaleX(-1);
}
.weapons__thumbs-arrow {
  width: 48px;
  height: 48px;
}
.weapons__thumbs-arrow svg {
  width: 34px;
  height: 29px;
}
.weapons__thumbs-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  color: var(--color-text-muted);
}
.weapons__thumbs-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.weapons__thumbs-list {
  display: flex;
}
.weapons__thumb {
  position: relative;
  flex-shrink: 0;
  height: 140px;
  aspect-ratio: 16/10;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.weapons__thumb:hover {
  opacity: 0.8;
}
.weapons__thumb picture {
  display: contents;
}
.weapons__thumb img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.weapons__thumb--active {
  opacity: 1;
  filter: drop-shadow(0 0 10px var(--weapons-thumb, var(--color-event)));
}
.weapons__frame-line {
  display: none;
}
.weapons__bottom-nav {
  display: none;
}
@media (max-width: 991px) {
  .weapons {
    padding: 0 0 64px;
  }
  .weapons__bg {
    display: none;
  }
  .weapons__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .weapons__subtitle {
    font-size: 18px;
    margin-top: 8px;
  }
  .weapons__frame {
    margin-top: 24px;
    padding: 24px 0 32px;
    background: none;
    clip-path: none;
  }
  .weapons__frame::before {
    content: none;
  }
  .weapons__frame-line {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 26px;
    z-index: 3;
    pointer-events: none;
  }
  .weapons__frame-line--top {
    top: 0;
  }
  .weapons__frame-line--bottom {
    bottom: 0;
    transform: scaleY(-1);
  }
  .weapons__media {
    height: 213px;
    margin: 0 auto;
  }
  .weapons__nav {
    position: absolute;
    top: 253px;
    left: 0;
    right: 0;
    order: 0;
    width: auto;
    margin: 0;
    justify-content: center;
  }
  .weapons__nav .weapons__arrow {
    display: none;
  }
  .weapons__thumbs-arrow {
    display: none;
  }
  .weapons__arrow {
    width: 32px;
    height: 32px;
  }
  .weapons__arrow svg {
    width: 22px;
    height: 19px;
  }
  .weapons__bottom-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 24px;
  }
  .weapons__slide {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    gap: 0;
    padding: 0;
    text-align: center;
  }
  .weapons__damage-block {
    position: static;
    width: auto;
  }
  .weapons__info {
    width: auto;
    height: auto;
    margin-top: 52px;
    padding-top: 0;
  }
  .weapons__desc {
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
    height: 75px;
    overflow: hidden;
    max-width: none;
  }
  .weapons__damage {
    justify-content: center;
    gap: 4px;
  }
  .weapons__name {
    font-size: 20px;
    line-height: 1.1;
  }
  .weapons__damage-label {
    font-size: 14px;
    margin-top: 16px;
    padding-top: 16px;
    margin-bottom: 8px;
    border-top-width: 2px;
  }
  .weapons__damage-cell {
    width: 24px;
    height: 24px;
  }
  .weapons__thumb {
    height: 63px;
  }
}

.weapons--kernel {
  --weapons-fx: #3C4454;
  --weapons-accent: #FF334C;
  --weapons-thumb: #FF334C;
}

.weapons--starbase {
  --weapons-fx: #00AAFF;
  --weapons-damage: #00AAFF;
  --weapons-title: #00AAFF;
  --weapons-thumb: #00AAFF;
  --weapons-accent: #FF7B33;
}

.characters {
  position: relative;
  padding: 0 0 120px;
}
.characters__head {
  text-align: center;
}
.characters__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.characters__title-accent {
  color: var(--game-color);
}
.characters__subtitle {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 16px auto 0;
  max-width: 720px;
  color: var(--color-text-muted);
}
.characters__slider {
  margin-top: 48px;
  overflow: visible;
}
.characters__list {
  display: flex;
}
.characters__card {
  position: relative;
  flex-shrink: 0;
  width: 411px;
  aspect-ratio: 411/540;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  cursor: pointer;
}
.characters__frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  color: var(--frame-color, var(--color-semi-dark));
}
.characters__frame-line {
  display: none;
}
.characters__dots {
  display: none;
}
.characters__counter, .characters__art, .characters__meta {
  position: relative;
  z-index: 1;
}
.characters__counter {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.characters__counter-num {
  color: var(--char-color);
}
.characters__counter-total {
  color: var(--color-text-muted);
}
.characters__art {
  position: relative;
  width: 100%;
  height: 412px;
  margin: 0 auto 0;
}
.characters__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--char-color) 0%, transparent 60%);
}
.characters__img {
  position: absolute;
  inset: 0;
}
.characters__img picture {
  display: contents;
}
.characters__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.characters__meta {
  margin-top: auto;
  padding: 0 46px 36px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.characters__name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.characters__name {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--char-color);
}
.characters__slash {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-semi-dark);
}
.characters__class {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  display: block;
  margin-top: 8px;
  color: var(--color-text-muted);
}
.characters__footer {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.characters__cta {
  --btn-color: var(--game-color);
}
.characters__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.characters__nav:hover {
  color: var(--color-text);
}
.characters__nav--next svg {
  transform: scaleX(-1);
}
.characters__nav {
  width: 48px;
  height: 48px;
}
.characters__nav svg {
  width: 34px;
  height: 29px;
}
@media (max-width: 991px) {
  .characters {
    padding: 0 0 64px;
  }
  .characters__slider {
    margin-top: 24px;
  }
  .characters__footer {
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px 24px;
  }
  .characters__nav {
    width: 32px;
    height: 32px;
  }
  .characters__nav svg {
    width: 22px;
    height: 19px;
  }
  .characters__nav--prev {
    order: 1;
  }
  .characters__dots {
    order: 2;
    display: block;
    position: absolute;
    bottom: auto !important;
    top: 9px !important;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-size: 6px;
  }
  .characters__dots .swiper-pagination-bullet {
    border-radius: 0;
    background: var(--color-text-muted);
    opacity: 1;
  }
  .characters__dots .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background: var(--game-color);
  }
  .characters__nav--next {
    order: 3;
  }
  .characters__cta {
    order: 4;
    flex: 0 0 100%;
  }
  .characters__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .characters__subtitle {
    font-size: 18px;
    margin-top: 8px;
  }
  .characters__card {
    width: 264px;
    min-height: 400px;
  }
  .characters__frame {
    display: none;
  }
  .characters__frame-line {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 26px;
    z-index: 0;
    pointer-events: none;
  }
  .characters__frame-line--top {
    top: 0;
  }
  .characters__frame-line--bottom {
    bottom: 0;
    transform: scaleY(-1);
  }
  .characters__counter {
    font-size: 14px;
    padding: 24px 16px 0;
  }
  .characters__meta {
    padding: 0 16px 24px;
  }
  .characters__name {
    font-size: 18px;
    line-height: 1.1;
  }
  .characters__slash {
    font-size: 18px;
    line-height: 1.1;
  }
  .characters__class {
    margin-top: 8px;
    font-size: 12px;
  }
}

.characters__list--static {
  position: relative;
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.characters__list--static .characters__card {
  cursor: default;
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  max-width: 411px;
}

.characters__card--flat .characters__art {
  height: 76.3%;
  margin: auto;
}

.characters__vs {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 315px;
  height: auto;
  pointer-events: none;
}

.characters__slider--teams .characters__list--static {
  margin-top: 0;
}

.characters__footer--teams {
  margin-top: 48px;
  justify-content: center;
}
.characters__footer--teams .characters__nav,
.characters__footer--teams .characters__dots {
  display: none;
}

@media (max-width: 991px) {
  .characters__list--static {
    margin-top: 0;
    justify-content: flex-start;
    gap: 0;
  }
  .characters__list--static .characters__card {
    flex: 0 0 auto;
    width: 264px;
    max-width: none;
  }
  .characters__list--static .characters__frame {
    display: block;
  }
  .characters__list--static .characters__frame-line {
    display: none;
  }
  .characters__vs {
    display: none;
  }
  .characters__footer--teams {
    justify-content: space-between;
  }
  .characters__footer--teams .characters__nav {
    display: inline-flex;
  }
  .characters__footer--teams .characters__dots {
    display: block;
  }
}
.game-how {
  position: relative;
  padding: 0 0 120px;
}
.game-how__head {
  text-align: center;
}
.game-how__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  text-wrap: balance;
}
.game-how__subtitle {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 16px auto 0;
  max-width: 720px;
  color: var(--color-text-muted);
}
.game-how__inner {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 57%;
  gap: var(--gap);
  align-items: end;
}
.game-how__content {
  position: relative;
  z-index: 3;
  padding: 44px 32px 36px;
}
.game-how__content::before, .game-how__content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 63px;
  background: url("/img/how-to-play-border.svg") no-repeat center/100% 100%;
  pointer-events: none;
}
.game-how__content::before {
  top: 0;
}
.game-how__content::after {
  bottom: 0;
  transform: scaleY(-1);
}
.game-how__frame {
  display: none;
}
.game-how__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.game-how__step {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.game-how__step-number {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--game-color);
}
.game-how__step-num {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 30px;
}
.game-how__step-text {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0;
}
.game-how__media {
  position: relative;
  margin: 0;
}
.game-how__media picture {
  display: contents;
}
.game-how__media img {
  display: block;
  width: 100%;
}
@media (max-width: 1270px) {
  .game-how__inner {
    grid-template-columns: 1fr 51%;
  }
}
@media (max-width: 991px) {
  .game-how {
    padding: 0 0 64px;
  }
  .game-how__head {
    margin-bottom: 0;
  }
  .game-how__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .game-how__subtitle {
    margin-top: 8px;
    font-size: 14px;
  }
  .game-how__inner {
    position: relative;
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
    justify-content: center;
    padding-top: 273px;
    margin-top: 16px;
  }
  .game-how__media {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
  }
  .game-how__content {
    padding: 24px 16px 32px;
  }
  .game-how__content::before, .game-how__content::after {
    content: none;
  }
  .game-how__frame {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 26px;
    pointer-events: none;
  }
  .game-how__frame--top {
    top: 0;
  }
  .game-how__frame--bottom {
    bottom: 0;
    transform: scaleY(-1);
  }
  .game-how__steps {
    gap: 16px;
  }
  .game-how__step {
    gap: 4px;
  }
  .game-how__step-number {
    font-size: 14px;
  }
  .game-how__step-num {
    font-size: 18px;
    line-height: 1.1;
  }
  .game-how__step-text {
    font-size: 18px;
  }
}

.game-how__title-accent {
  color: var(--game-color);
}

.game-how--coop .game-how__inner {
  grid-template-columns: 57% 1fr;
}
@media (max-width: 1270px) {
  .game-how--coop .game-how__inner {
    grid-template-columns: 51% 1fr;
  }
}
@media (max-width: 991px) {
  .game-how--coop .game-how__inner {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
  .game-how--coop .game-how__media {
    position: static;
    left: auto;
    transform: none;
    width: auto;
    max-width: 320px;
    margin: 0 auto;
  }
}

.game-leaderboard {
  position: relative;
  padding: 0 0 120px;
}
.game-leaderboard__head {
  text-align: center;
}
.game-leaderboard__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  text-wrap: balance;
}
.game-leaderboard__subtitle {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 16px auto 0;
  max-width: 720px;
  color: var(--color-text-muted);
}
.game-leaderboard__frame {
  position: relative;
  margin-top: 40px;
  background: var(--color-semi-dark);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}
.game-leaderboard__frame::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: 0;
  background: var(--color-dark);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}
.game-leaderboard__iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 800px;
  border: 0;
}
@media (max-width: 991px) {
  .game-leaderboard {
    padding: 0 0 64px;
  }
  .game-leaderboard__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .game-leaderboard__subtitle {
    margin-top: 8px;
    font-size: 14px;
  }
  .game-leaderboard__frame {
    margin-top: 24px;
  }
  .game-leaderboard__iframe {
    height: 560px;
  }
}

.teams {
  position: relative;
  padding: 0 0 40px;
  text-align: center;
}
.teams__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  text-wrap: balance;
}
.teams__accent {
  color: var(--game-color);
}
@media (max-width: 991px) {
  .teams {
    padding: 0 0 16px;
  }
  .teams__title {
    font-size: 26px;
    line-height: 1.1;
  }
}

.featured-feedbacks {
  padding: 0 0 120px;
}
.featured-feedbacks__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 0 0 24px;
  text-align: center;
}
.featured-feedbacks__subtitle {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: -8px auto 32px;
  max-width: 720px;
  text-align: center;
  color: var(--color-text-muted);
  text-wrap: balance;
}
.featured-feedbacks--vex .featured-feedbacks__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
}
.featured-feedbacks--vex .featured-feedbacks__subtitle {
  margin: 16px auto 32px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
}
@media (max-width: 991px) {
  .featured-feedbacks--vex .featured-feedbacks__subtitle {
    font-size: 18px;
    line-height: 1.1;
    margin-top: 8px;
  }
}
@media (max-width: 991px) {
  .featured-feedbacks--vex .featured-feedbacks__title {
    font-size: 20px;
    line-height: 1.1;
  }
}
.featured-feedbacks__inner {
  position: relative;
}
.featured-feedbacks__slider {
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}
.featured-feedbacks__list {
  display: flex;
  align-items: flex-start;
}
.featured-feedbacks__slide {
  flex-shrink: 0;
  text-align: center;
}
.featured-feedbacks__avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border: 2px solid var(--color-semi-dark);
  border-radius: 50%;
  overflow: hidden;
}
.featured-feedbacks__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.featured-feedbacks__avatar--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--avatar-bg, var(--color-semi-dark));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
}
.featured-feedbacks__star--off {
  opacity: 0.28;
}
.featured-feedbacks__stars {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.featured-feedbacks__stars .featured-feedbacks__star {
  width: 31px;
  height: auto;
}
.featured-feedbacks__quote {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 24px 0 0;
  color: var(--color-text);
  text-wrap: balance;
}
.featured-feedbacks__author {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  display: block;
  margin-top: 16px;
  font-style: normal;
  color: var(--color-text-muted);
}
.featured-feedbacks__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.featured-feedbacks__nav:hover {
  color: var(--color-text);
}
.featured-feedbacks__nav--next svg {
  transform: scaleX(-1);
}
.featured-feedbacks__nav {
  width: 48px;
  height: 48px;
}
.featured-feedbacks__nav svg {
  width: 34px;
  height: 29px;
}
.featured-feedbacks__nav {
  position: absolute;
  top: 120px;
}
.featured-feedbacks__nav--prev {
  left: 0;
}
.featured-feedbacks__nav--next {
  right: 0;
}
@media (max-width: 991px) {
  .featured-feedbacks {
    padding: 0 0 64px;
  }
  .featured-feedbacks__title {
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .featured-feedbacks__quote {
    font-size: 20px;
    line-height: 1.1;
  }
  .featured-feedbacks__inner {
    padding-bottom: 56px;
  }
  .featured-feedbacks__nav {
    top: auto;
    bottom: 0;
    width: 32px;
    height: 32px;
  }
  .featured-feedbacks__nav svg {
    width: 22px;
    height: 19px;
  }
  .featured-feedbacks__nav--prev {
    left: auto;
    right: calc(50% + 20px);
  }
  .featured-feedbacks__nav--next {
    left: calc(50% + 20px);
    right: auto;
  }
}

.game-ready {
  position: relative;
  padding: 0 0 120px;
  text-align: center;
}
.game-ready__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.game-ready__intro--split {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  width: 1050px;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .game-ready__intro--split {
    display: inline;
    min-width: 0;
    white-space: normal;
  }
}
.game-ready__name-row {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  font-size: 120px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  line-height: 1;
}
.game-ready--narrow-name .game-ready__name-row {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: clamp(40px, 9vw, 95.944px);
  line-height: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
html[lang=es] .game-ready--narrow-name .game-ready__name-row, html[lang=fr] .game-ready--narrow-name .game-ready__name-row {
  font-size: clamp(40px, 9vw, 81.5524px);
}
@media (max-width: 991px) {
  .game-ready--narrow-name .game-ready__name-row {
    font-size: clamp(23px, 7vw, 36px);
  }
}
.game-ready__name {
  color: var(--game-color);
}
.game-ready__slash {
  line-height: 1;
  color: var(--color-text);
}
.game-ready__subtitle {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 24px auto 0;
  max-width: 640px;
  color: var(--color-text-muted);
}
.game-ready__actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.game-ready__book {
  --btn-color: var(--game-color);
}
@media (max-width: 991px) {
  .game-ready {
    padding: 0 0 64px;
  }
  .game-ready__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .game-ready__name {
    font-size: 32px !important;
  }
  html[lang=es] .game-ready__name, html[lang=fr] .game-ready__name {
    font-size: 30px !important;
  }
  .game-ready__slash {
    font-size: 32px !important;
  }
  html[lang=es] .game-ready__slash, html[lang=fr] .game-ready__slash {
    font-size: 30px !important;
  }
  .game-ready__subtitle {
    font-size: 18px;
    line-height: 1.1;
    margin-top: 8px;
  }
  .game-ready__actions {
    margin-top: 24px;
    gap: 24px;
  }
}

.game-ready .sticker--custom {
  --sticker-shift: 641px;
}

html[lang=pt] .game-ready .sticker--custom {
  --sticker-shift: 756px;
}

html[lang=es] .game-ready .sticker--custom {
  --sticker-shift: 701px;
}

html[lang=fr] .game-ready .sticker--custom {
  --sticker-shift: 461px;
}

@media (min-width: 992px) {
  html[lang=en] .game-ready__intro--split {
    gap: 186px;
  }
  html[lang=fr] .game-ready__intro--split {
    gap: 180px;
  }
  html[lang=pt] .game-ready__intro--split,
  html[lang=es] .game-ready__intro--split {
    gap: 165px;
  }
}
.tournament {
  position: relative;
  padding: 0 0 120px;
  text-align: center;
}
.tournament__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.tournament__title-accent {
  color: var(--game-color);
}
.tournament__card {
  margin-top: 40px;
  padding: 24px;
  background: rgba(40, 46, 61, 0.5);
  clip-path: polygon(16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px), 0 16px);
}
.tournament__card-title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.tournament__text {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin-top: 16px;
  color: var(--color-text-muted);
  white-space: pre-line;
  text-wrap: balance;
}
.tournament__params {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  line-height: 1.1;
  color: var(--color-text-muted);
}
.tournament__param + .tournament__param::before {
  content: "/";
  margin-right: 16px;
  color: #282E3D;
}
.tournament__cta {
  margin-top: 24px;
  --btn-color: var(--game-color);
}
@media (max-width: 991px) {
  .tournament {
    padding-bottom: 64px;
  }
  .tournament__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .tournament__card {
    margin-top: 16px;
    padding: 16px;
  }
  .tournament__card-title {
    font-size: 18px;
    line-height: 1.1;
  }
  .tournament__text {
    font-size: 18px;
    margin-top: 16px;
  }
  .tournament__params {
    font-size: 12px;
  }
}

.reload {
  position: relative;
  padding: 0 0 120px;
  text-align: center;
}
.reload__head {
  max-width: 720px;
  margin: 0 auto;
}
.reload__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  white-space: pre-line;
}
.reload__subtitle {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin-top: 16px;
  color: var(--color-text-muted);
}
.reload__product {
  margin: 10px auto 0;
  max-width: 854px;
}
.reload__product picture {
  display: contents;
}
.reload__product img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .reload {
    padding-bottom: 64px;
  }
  .reload__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .reload__subtitle {
    font-size: 18px;
    line-height: 1.1;
    margin-top: 8px;
    margin-bottom: 16px;
  }
  .reload__product {
    margin-top: 24px;
  }
}

.countdown-band {
  position: relative;
  height: 105px;
  margin: -60px 0 98px;
  overflow: hidden;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.countdown-band img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 105px;
  width: auto;
  max-width: none;
}
@media (max-width: 991px) {
  .countdown-band {
    display: none;
  }
}

@keyframes sticker-float {
  0%, 100% {
    transform: translateY(0) rotate(var(--sticker-rot, 0deg));
  }
  50% {
    transform: translateY(-14px) rotate(var(--sticker-rot, 0deg));
  }
}
.sticker {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  animation: sticker-float 6s ease-in-out infinite;
  animation-delay: var(--sticker-delay, 0s);
  will-change: transform;
}
.sticker--left {
  right: calc(50% + 600px - var(--sticker-shift, 0px));
}
.sticker--right {
  left: calc(50% + 600px - var(--sticker-shift, 0px));
}
.sticker--center {
  left: 50%;
  transform: translateX(-50%) rotate(var(--sticker-rot, 0deg));
}
.sticker--static {
  animation: none;
  transform: none;
}
.sticker--static.sticker--center {
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .sticker {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticker {
    animation: none;
    transform: rotate(var(--sticker-rot, 0deg));
  }
}
.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form__row--wrap {
  display: flex;
  flex-wrap: wrap;
}
.form__field-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.form__field-wrap--1-4 {
  flex: 0 1 calc(25% - 18px);
}
.form__field-wrap--1-2 {
  flex: 1 1 calc(50% - 12px);
}
.form__error {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-accent);
}
.form__error:empty {
  display: none;
}
.form__picker--inline {
  gap: 12px;
}
.form__picker--inline .form__picker-input {
  width: auto;
  flex: 1;
  text-align: right;
}
.form .is-hidden {
  display: none;
}
.form--b2c .form__field-wrap--name {
  order: 1;
}
.form--b2c .form__field-wrap--phone {
  order: 2;
}
.form--b2c .form__field-wrap--email {
  order: 3;
}
.form--b2b .form__field-wrap--company {
  order: 1;
}
.form--b2b .form__field-wrap--name {
  order: 2;
}
.form--b2b .form__field-wrap--role {
  order: 3;
}
.form--b2b .form__field-wrap--email {
  order: 4;
}
.form--b2b .form__field-wrap--phone {
  order: 5;
}
.form__picker-label {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-text-muted);
}
.form__field {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  width: 100%;
  min-width: 0;
  padding: 20px 24px;
  background: #282E3D;
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
  border: none;
  color: var(--color-text);
  line-height: 1.2;
}
.form__field::-moz-placeholder {
  color: var(--color-text-muted);
  opacity: 1;
}
.form__field::placeholder {
  color: var(--color-text-muted);
  opacity: 1;
}
.form__field:focus {
  outline: none;
}
.form__field--area {
  min-height: 180px;
  resize: vertical;
}
.form__select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 48px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%238D99AE' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 24px center;
}
.form__select:invalid {
  color: var(--color-text-muted);
}
.form__select option {
  color: var(--color-text);
  background: #282E3D;
}
.form__picker {
  position: relative;
  display: flex;
  align-items: center;
}
.form__picker-input {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  width: 100%;
  min-width: 0;
  padding: 0 32px 0 0;
  background: none;
  border: none;
  color: var(--color-text);
  line-height: 1.2;
  cursor: pointer;
}
.form__picker-input::-webkit-datetime-edit {
  padding: 0;
}
.form__picker-input::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.form__picker-input:focus {
  outline: none;
}
.form__picker::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
  opacity: 0.65;
  transition: opacity 0.2s ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.form__picker:hover::after {
  opacity: 1;
}
.form__picker--date::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6 6H8V5H16V6H18V5H20V8H4V5H6V6ZM4 10V20H20V10H4ZM8 3H16V2H18V3H20C21.1046 3 22 3.89543 22 5V20C22 21.1046 21.1046 22 20 22H4C2.89543 22 2 21.1046 2 20V5C2 3.89543 2.89543 3 4 3H6V2H8V3Z' fill='%238D99AE'/%3E%3C/svg%3E");
}
.form__picker--time::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23ZM12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21ZM17 11H13V6H11V13H17V11Z' fill='%238D99AE'/%3E%3C/svg%3E");
}
.form__picker-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 48px 0 24px;
  background: #282E3D;
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}
.form__picker--date.has-value .form__picker-ph, .form__picker--date:focus-within .form__picker-ph {
  display: none;
}
.form__stepper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 84px;
}
.form__stepper-input {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  flex: 0 0 auto;
  width: 2.5em;
  min-width: 0;
  padding: 0;
  background: none;
  border: none;
  color: var(--color-text);
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
.form__stepper-input::-webkit-outer-spin-button, .form__stepper-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form__stepper-input:focus {
  outline: none;
}
.form__stepper-label {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--color-text);
}
.form__stepper-controls {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.form__stepper-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.form__stepper-btn:hover {
  color: var(--color-text);
}
.form__upload {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 0 8px;
}
.form__upload-btn {
  flex: 0 0 auto;
}
.form__upload-selected {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--caption);
  font-weight: var(--caption-weight);
  letter-spacing: var(--caption-tracking);
  text-transform: uppercase;
  font-size: 16px;
  color: var(--color-text-muted);
}
.form__upload-selected[hidden] {
  display: none;
}
.form__upload-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.form__upload-remove:hover {
  color: var(--color-accent);
}
.form__feedback {
  display: none;
  margin: 0;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--form-accent, var(--color-accent));
}
.form__feedback.is-error {
  display: block;
}
.form__footer {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.form__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form__terms {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-text);
  cursor: pointer;
}
.form__terms a {
  color: var(--form-accent, var(--color-accent));
}
.form__terms input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin: 0;
  background: #282E3D;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.form__terms:has(input:checked)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: var(--form-accent, var(--color-accent));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M2 7.5L5.5 11L12 3' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M2 7.5L5.5 11L12 3' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
}
.form__actions {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.form__cancel {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.form__cancel:hover {
  color: var(--color-text);
}
.form__submit {
  width: 180px;
  --btn-color: var(--form-accent, var(--color-accent));
}
.form__submit--auto {
  width: auto;
}
@media (max-width: 991px) {
  .form {
    gap: 16px;
  }
  .form__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .form__field-wrap--1-4, .form__field-wrap--1-2 {
    flex-basis: 100%;
  }
  .form__field {
    font-size: 14px;
    padding: 16px 24px;
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  }
  .form__stepper {
    padding-right: 84px;
  }
  .form__stepper-input, .form__stepper-label, .form__picker-input, .form__picker-ph {
    font-size: 14px;
  }
  .form .iti__selected-dial-code {
    font-size: 14px;
  }
  .form__footer {
    margin-top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .form__terms {
    font-size: 18px;
  }
  .form__actions {
    flex-direction: column-reverse;
    align-items: center;
    gap: 16px;
    margin-left: 0;
    width: 100%;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.modal.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 20, 0.7);
}
.modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  margin: auto;
  padding: 23px 32px;
  background: #3C4454;
  clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 24px), calc(100% - 24px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.5, 1.75, 0.75, 1.25);
}
.modal.is-open .modal__dialog {
  transform: translateY(0) scale(1);
}
.modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  background: #282E3D;
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
  cursor: pointer;
  transition: color 0.2s ease;
}
.modal__close:hover {
  color: var(--color-accent);
}
.modal__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 0;
  padding-right: 64px;
}
.modal__subtitle {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 16px 0 0;
  max-width: 760px;
  color: var(--color-text-muted);
}
.modal__form {
  margin-top: 24px;
}
.modal--compact .modal__dialog {
  max-width: 520px;
}
.modal--wide .modal__dialog {
  max-width: 1280px;
}
@media (max-width: 991px) {
  .modal__dialog {
    padding: 16px;
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  }
  .modal__close {
    top: 16px;
    right: 16px;
  }
  .modal__title {
    font-size: 20px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    min-height: 46px;
    padding-right: 56px;
  }
  .modal__subtitle {
    font-size: 18px;
  }
  .modal__form {
    margin-top: 16px;
  }
}

body.is-modal-open {
  overflow: hidden;
}

.app-loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: rgba(4, 8, 20, 0.72);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.app-loader.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.app-loader__spinner {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(255, 51, 76, 0.25);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: app-loader-spin 0.8s linear infinite;
}

@keyframes app-loader-spin {
  to {
    transform: rotate(360deg);
  }
}
.iti {
  width: 100%;
  display: block;
  --iti-spacer-horizontal: 20px;
}

.iti__selected-country,
.iti__selected-country-primary {
  border-radius: 0;
  background: transparent;
}

.iti__selected-country:hover,
.iti__selected-country-primary:hover,
.iti__selected-country:focus,
.iti__selected-country-primary:focus {
  background: transparent;
}

.iti__selected-dial-code {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text);
}

.iti__dropdown-content {
  background: #282E3D;
  border: 1px solid var(--color-semi-dark);
  color: var(--color-text);
  font-family: var(--font-text);
  font-size: 16px;
  border-radius: 0;
  overflow: hidden;
}

.iti__search-input-wrapper {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-semi-dark);
}

.iti__search-input {
  background: var(--color-bg);
  color: var(--color-text);
  border: 0;
  font-family: var(--font-text);
}
.iti__search-input::-moz-placeholder {
  color: var(--color-text-muted);
}
.iti__search-input::placeholder {
  color: var(--color-text-muted);
}

.iti__country-list {
  background: #282E3D;
  scrollbar-width: thin;
  scrollbar-color: var(--color-semi-dark) transparent;
}
.iti__country-list::-webkit-scrollbar {
  width: 8px;
}
.iti__country-list::-webkit-scrollbar-thumb {
  background: var(--color-semi-dark);
}

.iti__country {
  color: var(--color-text);
}

.iti__country.iti__highlight,
.iti__country:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.iti__dial-code {
  color: var(--color-text-muted);
}

.fancybox-slide--image .fancybox-content {
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.static-page__title {
  margin: 0 0 32px;
  text-align: left;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.1;
}
@media (max-width: 991px) {
  .static-page__title {
    margin-bottom: 24px;
    font-size: clamp(24px, 7vw, 32px);
  }
}
.static-page__body {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  max-width: 900px;
  line-height: 1.6;
  color: var(--color-text);
}
.static-page__body h2, .static-page__body h3, .static-page__body h4 {
  margin: 32px 0 16px;
}
.static-page__body p {
  margin: 0 0 16px;
}
.static-page__body ul, .static-page__body ol {
  margin: 0 0 16px;
  padding-left: 24px;
}
.static-page__body li {
  margin-bottom: 8px;
}
.static-page__body a {
  color: var(--color-accent);
}
.static-page__body a:hover {
  text-decoration: underline;
}

.error-page {
  text-align: center;
}
.error-page__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: clamp(40px, 9vw, 134px);
  line-height: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
html[lang=es] .error-page__title, html[lang=fr] .error-page__title {
  font-size: clamp(40px, 9vw, 113.9px);
}
.error-page__title {
  margin: 0 0 16px;
  text-align: center;
  line-height: var(--caption-leading);
  color: var(--color-text);
}
.error-page__heading {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text);
  max-width: 600px;
  text-wrap: balance;
  margin: 0 auto 16px;
}
.error-page__text {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  text-wrap: balance;
}
.error-page__home {
  display: inline-flex;
  margin-top: 48px;
  width: 100%;
  max-width: 320px;
}
.error-page__media {
  margin: 32px 0 120px;
}
.error-page__media picture {
  display: block;
}
.error-page__media img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .error-page__title {
    font-size: 32px !important;
  }
  html[lang=es] .error-page__title, html[lang=fr] .error-page__title {
    font-size: 30px !important;
  }
  .error-page__title {
    margin-bottom: 24px;
  }
  .error-page__heading {
    font-size: 18px;
    line-height: 1.1;
  }
  .error-page__text {
    font-size: 18px;
  }
  .error-page__home {
    margin-top: 32px;
  }
  .error-page__media {
    margin: 24px 0 64px;
  }
}

.beyond {
  position: relative;
  text-align: center;
  overflow: hidden;
  height: 800px;
  margin-bottom: 120px;
}
.beyond__media {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -960px;
  z-index: -1;
  height: 800px;
  width: 1920px;
}
.beyond__media picture {
  display: contents;
}
.beyond__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.beyond__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 100%;
}
.beyond__wordmark {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text);
}
.beyond__wordmark b {
  color: var(--color-accent);
  font-weight: inherit;
}
.beyond__title {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  line-height: 1.1;
}
@media (max-width: 991px) {
  .beyond {
    height: auto;
    margin-bottom: 64px;
  }
  .beyond__media {
    top: 0;
    bottom: auto;
    left: 50%;
    margin-left: -180px;
    width: 360px;
    height: 360px;
  }
  .beyond__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(4, 8, 20, 0) 54.81%, #040814 100%);
  }
  .beyond__media::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(4, 8, 20, 0) 0%, #040814 100%);
  }
  .beyond__content {
    justify-content: flex-start;
    min-height: auto;
    padding-top: 296px;
  }
  .beyond__wordmark {
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .beyond__title {
    margin-top: 0;
    font-size: 26px;
    line-height: 1.1;
  }
}

.contacts {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  padding-top: 61px;
}
.contacts__heading {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 0 0 40px;
}
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr calc(45% + 110px);
  gap: 11px;
  align-items: center;
}
.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contacts__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contacts__label {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.contacts__value {
  color: var(--color-text);
}
.contacts__hours-label {
  color: var(--color-text-muted);
}
.contacts__whatsapp {
  color: var(--color-text-muted);
  margin-left: 6px;
}
.contacts__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.contacts__social {
  display: inline-flex;
  width: 32px;
  height: 32px;
  color: var(--color-accent);
}
.contacts__social svg {
  display: block;
  width: 100%;
  height: 100%;
}
.contacts__map {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
}
.contacts__map-frame {
  flex: 0 0 44px;
  height: 472px;
  background: url("/img/map-frame.svg") center/100% 100% no-repeat;
}
.contacts__map-frame--right {
  transform: scaleX(-1);
}
.contacts__map-inner {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 410px;
  display: flex;
}
.contacts__map-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  backdrop-filter: brightness(0.6);
  -webkit-backdrop-filter: brightness(0.6);
  opacity: 1;
  transition: opacity 0.4s ease;
}
.contacts__map-inner:hover::after {
  opacity: 0;
}
.contacts__map-img {
  width: 100%;
  height: 100%;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .contacts__heading {
    font-size: 26px;
    line-height: 1.1;
    margin-bottom: 24px;
  }
  .contacts__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contacts__info {
    align-items: center;
    gap: 24px;
  }
  .contacts__map {
    order: -1;
    margin-bottom: 24px;
  }
  .contacts__map-inner {
    height: 350px;
  }
  .contacts__map-frame {
    height: 420px;
    flex-basis: 19px;
    background-image: url("/img/map-frame-mob.svg");
  }
  .contacts__map-inner::after {
    display: none;
  }
  .contacts__value {
    font-size: 14px;
  }
  .contacts__socials {
    justify-content: center;
    gap: 24px;
  }
}

.contacts-page {
  padding-bottom: 80px;
}
.contacts-page__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: clamp(40px, 9vw, 134px);
  line-height: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
html[lang=es] .contacts-page__title, html[lang=fr] .contacts-page__title {
  font-size: clamp(40px, 9vw, 113.9px);
}
.contacts-page__title {
  margin: 20px 0 24px;
  text-align: center;
  line-height: var(--caption-leading);
}
.contacts-page__quick {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 0;
}
.contacts-page__heading {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 80px 0 24px;
  text-align: center;
}
.contacts-page__map {
  justify-content: center;
}
.contacts-page__map .contacts__map-inner {
  height: 600px;
}
.contacts-page__map .contacts__map-frame {
  height: 668px;
  background-image: url("/img/contacts-map-frame.svg");
}
.contacts-page__details {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px 48px;
  padding: 0 40px;
}
.contacts-page__address {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  max-width: 520px;
  color: var(--color-text);
  transition: color 0.2s;
  text-align: center;
}
.contacts-page__address:hover {
  color: var(--color-accent);
}
.contacts-page__hours {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contacts-page__hours-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
}
.contacts-page__hours-icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.contacts-page__hours-group {
  display: flex;
  gap: 32px;
}
.contacts-page__hours-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contacts-page__hours-day {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.contacts-page__hours-time {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text);
}
@media (max-width: 991px) {
  .contacts-page {
    padding-bottom: 0;
  }
  .contacts-page__title {
    font-size: 32px !important;
  }
  html[lang=es] .contacts-page__title, html[lang=fr] .contacts-page__title {
    font-size: 30px !important;
  }
  .contacts-page__title {
    margin: 8px 0 24px;
    line-height: 1.1;
  }
  .contacts-page__quick {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    margin-bottom: 0;
  }
  .contacts-page__heading {
    font-size: 26px;
    line-height: 1.1;
    margin: 64px 0 16px;
  }
  .contacts-page__map .contacts__map-inner {
    height: 350px;
  }
  .contacts-page__map .contacts__map-frame {
    height: 420px;
    background-image: url("/img/map-frame-mob.svg");
  }
  .contacts-page__details {
    margin-top: 16px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 0;
  }
  .contacts-page__address {
    font-size: 18px;
    line-height: 1.1;
  }
  .contacts-page__hours {
    align-items: flex-start;
  }
  .contacts-page__hours-group {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .contacts-page__hours-row {
    gap: 8px;
  }
  .contacts-page__hours-day {
    font-size: 14px;
  }
  .contacts-page__hours-time {
    font-size: 18px;
    line-height: 1.1;
  }
}

.contact-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-text);
}
.contact-tile__icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
}
.contact-tile__icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.contact-tile__icon--fallback {
  --tile-color: var(--color-accent);
  position: relative;
}
.contact-tile__icon--fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tile-color);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.contact-tile__icon--fallback::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--color-bg);
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
}
.contact-tile__icon--fallback svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
}
.contact-tile__text {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-tile__label {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.contact-tile__value {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text);
  transition: color 0.2s;
}
.contact-tile:hover .contact-tile__value {
  color: var(--color-accent);
}
@media (max-width: 991px) {
  .contact-tile__label {
    font-size: 14px;
  }
  .contact-tile__value {
    font-size: 18px;
    line-height: 1.1;
  }
}

.contacts-follow {
  padding: 0 0 120px;
  text-align: center;
}
.contacts-follow__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 0;
}
.contacts-follow__subtitle {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 16px auto 24px;
  max-width: 560px;
  color: var(--color-text-muted);
}
.contacts-follow__grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.contacts-follow__item {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .contacts-follow {
    padding: 64px 0;
  }
  .contacts-follow__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .contacts-follow__subtitle {
    font-size: 16px;
  }
  .contacts-follow__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}

.contacts-resume {
  margin-top: 100px;
  text-align: center;
  scroll-margin-top: 140px;
}
@media (max-width: 991px) {
  .contacts-resume {
    scroll-margin-top: 104px;
  }
}
.contacts-resume__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 0;
}
.contacts-resume__subtitle {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 16px auto 0;
  max-width: 620px;
  color: var(--color-text-muted);
}
.contacts-resume__cv {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 24px 0 0;
  color: var(--color-text);
}
.contacts-resume__btn {
  margin-top: 24px;
}
@media (max-width: 991px) {
  .contacts-resume {
    margin-top: 64px;
  }
  .contacts-resume__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .contacts-resume__subtitle {
    font-size: 16px;
  }
  .contacts-resume__cv {
    font-size: 14px;
  }
}

.social-tile {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--color-text);
  transition: color 0.2s;
}
.social-tile__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}
.social-tile__icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.social-tile__icon--fallback {
  position: relative;
  color: var(--color-accent);
}
.social-tile__icon--fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.social-tile__icon--fallback::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--color-bg);
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
}
.social-tile__icon--fallback svg {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
}
.social-tile__label {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.social-tile:hover {
  color: var(--color-text);
}
.social-tile:hover .social-tile__icon {
  color: var(--color-text);
}
@media (max-width: 991px) {
  .social-tile__label {
    font-size: 14px;
  }
}

.footer {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 8px;
  font-size: clamp(16px, 1.6vw, 24px);
}
.footer__nav-slash,
.footer__nav .footer__slash {
  color: var(--color-semi-dark);
}
.footer__nav .footer__link {
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.footer__nav .footer__link:hover {
  color: var(--color-text);
}
.footer__nav .footer__link.is-active {
  color: var(--color-accent);
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.footer__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--gap);
}
.footer__copyright {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.footer__legal {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 14px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  white-space: nowrap;
  justify-content: flex-end;
}
.footer__legal-link {
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.footer__legal-link:hover {
  color: var(--color-text);
}
@media (max-width: 991px) {
  .footer__nav {
    display: none;
  }
  .footer__bottom {
    margin-top: 0;
  }
  .footer__bottom-row {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .footer__legal {
    flex-direction: column;
    justify-content: center;
  }
}

.egifts-hero {
  padding-bottom: 120px;
}
.egifts-hero__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: clamp(40px, 9vw, 134px);
  line-height: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
html[lang=es] .egifts-hero__title, html[lang=fr] .egifts-hero__title {
  font-size: clamp(40px, 9vw, 113.9px);
}
.egifts-hero__title {
  margin: 20px 0 56px;
  text-align: center;
  width: 100%;
  line-height: var(--caption-leading);
}
.egifts-hero__inner {
  display: grid;
  grid-template-columns: 1fr clamp(415px, 40vw, 516px);
  gap: var(--gap);
  align-items: center;
}
.egifts-hero__content {
  max-width: 519px;
}
.egifts-hero__heading {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 0;
  color: var(--color-gift);
}
.egifts-hero__text {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 16px 0 0;
  color: var(--color-text-muted);
}
.egifts-hero__features {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.egifts-hero__feature {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  position: relative;
  padding-left: 40px;
  line-height: 1.2;
  color: var(--color-text);
}
.egifts-hero__feature::before {
  content: "//";
  position: absolute;
  left: 0;
  color: var(--color-gift);
}
.egifts-hero__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 991px) {
  .egifts-hero {
    padding-bottom: 64px;
  }
  .egifts-hero__title {
    font-size: 32px !important;
  }
  html[lang=es] .egifts-hero__title, html[lang=fr] .egifts-hero__title {
    font-size: 30px !important;
  }
  .egifts-hero__title {
    margin: 24px 0 16px;
  }
  .egifts-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .egifts-hero__media {
    order: -1;
    margin-bottom: 16px;
  }
  .egifts-hero__heading {
    font-size: 20px;
    line-height: 1.1;
  }
  .egifts-hero__text {
    font-size: 18px;
    margin-top: 8px;
  }
  .egifts-hero__features {
    margin-top: 16px;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
  }
  .egifts-hero__feature {
    font-size: 14px;
  }
  .egifts-hero__actions {
    margin-top: 24px;
    gap: 24px;
    align-items: stretch;
    width: 100%;
  }
}

.egifts-why {
  padding-bottom: 64px;
}
.egifts-why__box {
  position: relative;
}
.egifts-why__bg {
  position: relative;
  z-index: 0;
  height: 1123px;
  margin: 0;
  overflow: hidden;
}
.egifts-why__bg img {
  position: absolute;
  z-index: 0;
  top: 0;
  left: calc(50% - 960px);
  width: 1920px;
  height: 1123px;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.egifts-why__bg::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: calc(50% - 960px);
  width: 1920px;
  height: 1123px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(4, 8, 20, 0) 30.84%, #040814 100%);
  pointer-events: none;
}
.egifts-why__bg::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 455px;
  background: linear-gradient(180deg, rgba(4, 8, 20, 0) 0%, #040814 100%);
  pointer-events: none;
}
.egifts-why__head {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  padding-inline: 20px;
  text-align: center;
}
.egifts-why__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.egifts-why__subtitle {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 16px 0 0;
  color: var(--color-text-muted);
}
.egifts-why__highlights {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container);
  padding-inline: 20px;
  display: flex;
  gap: 24px;
}
.egifts-why__highlight {
  flex: 1;
  text-align: center;
}
.egifts-why__highlight-title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  white-space: pre-line;
}
.egifts-why__highlight-text {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 16px auto 0;
  max-width: 320px;
  color: var(--color-text-muted);
}
@media (max-width: 991px) {
  .egifts-why {
    padding-bottom: 32px;
  }
  .egifts-why__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .egifts-why__bg {
    order: 2;
    width: 360px;
    max-width: 100%;
    height: 360px;
    margin: 8px 0 -24px;
  }
  .egifts-why__bg img {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .egifts-why__bg::after {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(4, 8, 20, 0) 54.81%, #040814 100%);
  }
  .egifts-why__bg::before {
    height: 180px;
  }
  .egifts-why__head {
    position: static;
    order: 1;
    width: 100%;
  }
  .egifts-why__highlights {
    position: static;
    order: 3;
    left: auto;
    transform: none;
    max-width: none;
    flex-direction: column;
    gap: 16px;
  }
  .egifts-why__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .egifts-why__subtitle {
    font-size: 14px;
    margin-top: 8px;
  }
  .egifts-why__highlight-title {
    font-size: 18px;
    line-height: 1.1;
  }
  .egifts-why__highlight-text {
    font-size: 18px;
    margin-top: 8px;
  }
}

.egifts-steps {
  padding-bottom: 120px;
  text-align: center;
  --accent: var(--color-gift);
}
.egifts-steps__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 0;
}
.egifts-steps__subtitle {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 18px;
  line-height: normal;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 16px auto 0;
  max-width: 760px;
  line-height: 1.4;
  color: var(--color-text-muted);
}
.egifts-steps__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}
.egifts-steps__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 24px 48px;
  background: #171c29;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}
.egifts-steps__card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--accent);
}
.egifts-steps__num {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  display: block;
  color: var(--accent);
}
.egifts-steps__card-title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 8px 0 auto;
  white-space: pre-line;
}
.egifts-steps__card-text {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 8px 0 0;
  color: var(--color-text-muted);
}
.egifts-steps__actions {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .egifts-steps {
    padding-bottom: 64px;
  }
  .egifts-steps__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .egifts-steps__subtitle {
    font-size: 14px;
    margin-top: 8px;
  }
  .egifts-steps__grid {
    margin-top: 16px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .egifts-steps__card {
    padding: 16px 16px 16px 32px;
  }
  .egifts-steps__card::before {
    left: 16px;
    top: 16px;
    bottom: 16px;
  }
  .egifts-steps__num {
    font-size: 20px;
    line-height: 1.1;
  }
  .egifts-steps__card-title {
    font-size: 18px;
    line-height: 1.1;
  }
  .egifts-steps__card-text {
    font-size: 18px;
  }
  .egifts-steps__actions {
    margin-top: 24px;
  }
}

.egifts-cases {
  text-align: center;
  padding-bottom: 120px;
}
.egifts-cases__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
}
.egifts-cases__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 40px;
}
.egifts-cases__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  padding: 40px;
  text-align: left;
}
.egifts-cases__media {
  position: absolute;
  inset: 0;
  margin: 0;
  clip-path: polygon(24px 0, calc(100% - 92px) 0, calc(100% - 68px) 24px, calc(100% - 16px) 24px, 100% 40px, 100% calc(100% - 40px), calc(100% - 16px) calc(100% - 24px), calc(100% - 68px) calc(100% - 24px), calc(100% - 92px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
  z-index: 0;
}
.egifts-cases__media picture {
  display: contents;
}
.egifts-cases__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.egifts-cases__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 20, 0) 28.36%, rgba(4, 8, 20, 0.95) 60.34%);
  clip-path: polygon(24px 0, calc(100% - 92px) 0, calc(100% - 68px) 24px, calc(100% - 16px) 24px, 100% 40px, 100% calc(100% - 40px), calc(100% - 16px) calc(100% - 24px), calc(100% - 68px) calc(100% - 24px), calc(100% - 92px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
  z-index: 1;
  pointer-events: none;
}
.egifts-cases__frame {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.egifts-cases__frame::before, .egifts-cases__frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background-image: url("/img/events-card-frame.svg");
  background-repeat: no-repeat;
  background-size: 628px 453px;
}
.egifts-cases__frame::before {
  top: 0;
}
.egifts-cases__frame::after {
  bottom: 0;
}
.egifts-cases__frame--left {
  left: 0;
}
.egifts-cases__frame--left::before {
  background-position: left top;
}
.egifts-cases__frame--left::after {
  background-position: left bottom;
}
.egifts-cases__frame--right {
  right: 0;
}
.egifts-cases__frame--right::before {
  background-position: right top;
}
.egifts-cases__frame--right::after {
  background-position: right bottom;
}
.egifts-cases__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.egifts-cases__card-title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--color-gift);
  text-wrap: balance;
}
.egifts-cases__card-text {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 16px 0 0;
  color: var(--color-text);
}
.egifts-cases__footer {
  display: none;
}
@media (max-width: 991px) {
  .egifts-cases {
    padding-bottom: 64px;
  }
  .egifts-cases .container {
    max-width: none;
  }
  .egifts-cases__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .egifts-cases__slider {
    margin-top: 16px;
    overflow: visible;
  }
  .egifts-cases__grid {
    display: flex;
    margin-top: 0;
    gap: 0;
  }
  .egifts-cases__card {
    width: 264px;
    flex-shrink: 0;
    min-height: 0;
    height: auto;
    padding: 0;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }
  .egifts-cases__media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 266/166;
    padding: 6px;
    background: #3c4454;
    clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
  }
  .egifts-cases__media img {
    clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
  }
  .egifts-cases__frame, .egifts-cases__card::after {
    display: none;
  }
  .egifts-cases__content {
    align-items: center;
    margin-top: 16px;
  }
  .egifts-cases__card-title {
    font-size: 18px;
    line-height: 1.1;
    text-align: center;
  }
  .egifts-cases__card-text {
    font-size: 18px;
    text-align: center;
    margin-top: 8px;
  }
  .egifts-cases__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
  }
  .egifts-cases__nav {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
  }
  .egifts-cases__nav:hover {
    color: var(--color-text);
  }
  .egifts-cases__nav--next svg {
    transform: scaleX(-1);
  }
  .egifts-cases__nav {
    width: 32px;
    height: 32px;
  }
  .egifts-cases__nav svg {
    width: 22px;
    height: 19px;
  }
  .egifts-cases__dots {
    flex: 1;
    text-align: center;
    line-height: 0;
    --swiper-pagination-bullet-horizontal-gap: 6px;
  }
  .egifts-cases__dots .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 0;
    background: var(--color-text-muted);
    opacity: 1;
  }
  .egifts-cases__dots .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background: var(--color-gift);
  }
}

.egifts-cta {
  padding-bottom: 120px;
  text-align: center;
}
.egifts-cta__title {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 66px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 0;
  white-space: pre-line;
}
.egifts-cta__subtitle {
  font-family: var(--font-display);
  font-weight: var(--heading-weight);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  margin: 24px auto 0;
  color: var(--color-gift);
}
.egifts-cta__actions {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .egifts-cta {
    padding-bottom: 64px;
  }
  .egifts-cta__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .egifts-cta__subtitle {
    font-size: 18px;
    line-height: 1.1;
    margin-top: 16px;
  }
  .egifts-cta__actions {
    margin-top: 24px;
    gap: 24px;
    flex-direction: column;
    align-items: stretch;
  }
}

#resova-wrapper {
  position: relative;
  background: var(--color-semi-dark);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}
#resova-wrapper::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: 0;
  background: var(--color-dark);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}
#resova-wrapper iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border: 0;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  overscroll-behavior: contain;
}
