html {
  background-color: var(--background);
  height: 100%;
  font-family:
    Roboto,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Noto Sans,
    Ubuntu,
    Cantarell,
    Helvetica Neue,
    Arial,
    sans-serif;
  font-size: 15px;
  overflow-x: hidden;
}
@media (min-width: 1024px) {
  html {
    font-size: 16px;
  }
}
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: inherit;
}
button {
  font-family: inherit;
}
.mz84k2p7__wrapper {
  flex-direction: column;
  min-width: 360px;
  max-width: 2048px;
  height: 100%;
  margin: 0 auto;
  display: flex;
}
main {
  flex: 1;
  width: 100%;
}
.mz84k2p7__container {
  width: calc(100% - 24px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}
.mz84k2p7__container .mz84k2p7__container {
  width: 100%;
  padding: 0;
}
@media (min-width: 768px) {
  .mz84k2p7__container {
    width: calc(100% - 32px);
    padding: 0 16px;
  }
}
.mz84k2p7__logo {
  align-items: center;
  max-width: 200px;
  text-decoration: none;
  transition: opacity 0.3s;
  display: flex;
}
.mz84k2p7__logo[href]:hover {
  opacity: 0.8;
  text-decoration: none;
}
.mz84k2p7__logo__image {
  line-height: 0;
}
.mz84k2p7__logo img {
  object-fit: contain;
  object-position: left;
  max-width: 100%;
  max-height: 80%;
  width: initial;
  height: initial;
}
.mz84k2p7__logo__text {
  flex-direction: column;
  gap: 1px;
  padding: 0 5px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  display: flex;
}
@media (min-width: 480px) {
  .mz84k2p7__logo__text {
    padding: 0 12px;
  }
}
@media (min-width: 768px) {
  .mz84k2p7__logo__text {
    padding: 0 16px;
    font-size: 25px;
  }
}
.mz84k2p7__dialog {
  z-index: 1500;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}
.mz84k2p7__dialog--open {
  justify-content: center;
  align-items: center;
  display: flex;
}
.mz84k2p7__dialog__overlay {
  z-index: 200;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mz84k2p7__dialog__content {
  z-index: 300;
  width: auto;
  position: relative;
}
[data-dialog-open="true"] {
  justify-content: center;
  align-items: center;
  display: flex;
}
.mz84k2p7__input {
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
}
.mz84k2p7__input__control {
  border-radius: 12px;
  width: 100%;
  height: 56px;
  padding: 0 20px;
  font-family: Roboto;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  display: flex;
}
@media (min-width: 768px) {
  .mz84k2p7__input__control {
    font-size: 1.25rem;
  }
}
.mz84k2p7__input__control {
  font-weight: 400;
  line-height: 1.5;
}
.mz84k2p7__input__control--textarea {
  min-height: 80px;
  padding: 16px 20px;
}
.mz84k2p7__input__control::-ms-input-placeholder {
  color: rgba(24, 23, 31, 0.698);
}
.mz84k2p7__input__control::placeholder {
  color: rgba(24, 23, 31, 0.698);
}
.mz84k2p7__input__hint {
  z-index: 1;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  position: absolute;
  bottom: -1rem;
  left: 0;
}
@media (min-width: 768px) {
  .mz84k2p7__input__hint {
    font-size: 0.875rem;
  }
}
.mz84k2p7__input__hint {
  display: none;
}
[data-input-control-success="true"] {
  border: 2px solid #16b53e;
}
[data-input-control-error="true"] {
  border: 2px solid #ff383c;
}
[data-input-hint-show="true"] {
  display: flex;
}
[data-input-hint-success="true"] {
  color: #16b53e;
}
[data-input-hint-error="true"] {
  color: #ff383c;
}
.mz84k2p7__loader {
  box-sizing: border-box;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: 1s linear infinite rotation;
  display: none;
}
[data-loader-show="true"] {
  display: inline-block;
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.mz84k2p7__button {
  opacity: 1;
  z-index: 2;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  position: relative;
}
.mz84k2p7__button__inner {
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: inline-flex;
}
.mz84k2p7__button {
  cursor: pointer;
  vertical-align: middle;
  color: var(--text_color);
  border-radius: 30px;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}
@media (min-width: 768px) {
  .mz84k2p7__button {
    padding: 8px 16px;
    font-size: 16px;
    line-height: 24px;
  }
}
.mz84k2p7__button:hover {
  opacity: 0.8;
}
.mz84k2p7__button--main {
  background-color: var(--primary);
}
.mz84k2p7__button--secondary {
  border: 1px solid var(--primary);
  background: 0 0;
}
.mz84k2p7__animation {
  transition: all 0.3s;
  overflow: hidden;
}
.mz84k2p7__animation:after {
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.7), transparent 60%);
  width: 50%;
  height: 100%;
  animation: 3.5s infinite hero-shine;
  position: absolute;
  top: 0;
  left: -75%;
  transform: skew(-20deg);
}
.mz84k2p7__animation:hover {
  box-shadow:
    0 0 32px var(--primary),
    0 12px 26px var(--primary);
  filter: saturate(1.2);
  transform: translateY(-3px) scale(1.03);
}
@keyframes hero-shine {
  0% {
    left: -75%;
  }
  40% {
    left: 125%;
  }
  to {
    left: 125%;
  }
}
.mz84k2p7__header {
  z-index: 1000;
  width: 100%;
  margin-bottom: -72px;
  padding: 4px 0;
  position: sticky;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .mz84k2p7__header {
    margin-bottom: -80px;
    padding: 8px 0;
  }
}
.mz84k2p7__header__menu-button {
  cursor: pointer;
  width: 40px;
  height: 40px;
  color: var(--text_color);
  background-color: transparent;
  border: none;
  justify-content: center;
  align-items: center;
  transition: color 0.3s;
  display: flex;
}
.mz84k2p7__header__menu-button:hover,
.mz84k2p7__header__menu-button:active {
  color: var(--primary);
}
@media (min-width: 768px) {
  .mz84k2p7__header__menu-button {
    display: none;
  }
}
.mz84k2p7__header__menu-icon-close,
.mz84k2p7__header[data-open] .mz84k2p7__header__menu-icon-open {
  display: none;
}
.mz84k2p7__header[data-open] .mz84k2p7__header__menu-icon-close {
  display: block;
}
.mz84k2p7__header__logo {
  z-index: 2;
  max-width: 110px;
  margin-right: auto;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__header__logo {
    max-width: initial;
    margin-right: 0;
  }
}
.mz84k2p7__header__content {
  background-color: var(--header_background);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 31px;
  justify-content: space-between;
  align-items: center;
  height: 54px;
  padding: 0 8px;
  display: flex;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__header__content {
    height: 62px;
    padding: 0 16px;
  }
}
.mz84k2p7__header__nav {
  background-color: var(--header_background);
  box-sizing: border-box;
  border-radius: 0 0 24px 24px;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 40px 20px;
  display: none;
  position: absolute;
  top: calc(100% - 20px);
  left: 0;
}
.mz84k2p7__header[data-open] .mz84k2p7__header__nav {
  justify-content: center;
  display: flex;
}
@media (min-width: 768px) {
  .mz84k2p7__header__nav {
    background-color: transparent;
    width: auto;
    padding: 0;
    display: flex;
    position: static;
  }
}
.mz84k2p7__header__nav ul {
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
@media (min-width: 768px) {
  .mz84k2p7__header__nav ul {
    flex-direction: row;
  }
}
.mz84k2p7__header__nav-item {
  align-items: center;
  display: flex;
}
@media (min-width: 768px) {
  .mz84k2p7__header__nav-item--footer {
    display: none;
  }
}
.mz84k2p7__header__nav .mz84k2p7__button {
  letter-spacing: 0;
  color: #fff;
  vertical-align: middle;
  background: 0 0;
  border: 0;
  border-radius: 0;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  display: inline-flex;
}
.mz84k2p7__header__nav .mz84k2p7__button:hover {
  opacity: 0.85;
}
.mz84k2p7__header__nav .mz84k2p7__button[aria-current="page"] {
  opacity: 1;
  text-underline-offset: 8px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.mz84k2p7__header__actions {
  z-index: 2;
  align-items: center;
  gap: 0.5rem;
  display: flex;
  position: relative;
}
.mz84k2p7__header + main {
  padding-top: 80px;
}
.mz84k2p7__header + main > .mz84k2p7__page .mz84k2p7__hero {
  margin-top: -80px;
  padding-top: 100px;
}
.mz84k2p7__page {
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2rem;
  display: flex;
}
.mz84k2p7__hero {
  box-sizing: border-box;
  width: 100%;
  color: var(--text_color);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  position: relative;
  overflow: hidden;
}
.mz84k2p7__hero .mz84k2p7__hero__bg-image,
.mz84k2p7__hero .mz84k2p7__hero__bg {
  z-index: 0;
  pointer-events: none;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.mz84k2p7__hero .mz84k2p7__hero__bg-image {
  object-fit: cover;
  -webkit-mask-position: 50%;
  mask-position: 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.mz84k2p7__hero > .mz84k2p7__container {
  z-index: 2;
  position: relative;
}
.mz84k2p7__hero .mz84k2p7__hero__inner {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
}
.mz84k2p7__hero .mz84k2p7__hero__text {
  opacity: 0.85;
  white-space: pre-line;
  max-width: 600px;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
}
.mz84k2p7__hero .mz84k2p7__button {
  color: var(--hero_button_text_color, var(--text_color));
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.mz84k2p7__hero .mz84k2p7__hero__buttons {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  display: flex;
}
.mz84k2p7__hero .mz84k2p7__hero__store-buttons {
  gap: 12px;
  margin-top: 1rem;
  display: flex;
}
.mz84k2p7__hero .mz84k2p7__hero__store-btn {
  text-decoration: none;
  display: inline-flex;
}
.mz84k2p7__hero .mz84k2p7__hero__store-btn:hover {
  filter: invert();
}
.mz84k2p7__hero .mz84k2p7__hero__store-btn img {
  width: auto;
  height: 44px;
  display: block;
}
.mz84k2p7__hero--simple-1 {
  box-sizing: border-box;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--simple-1 {
    min-height: 500px;
  }
}
.mz84k2p7__hero--simple-1 .mz84k2p7__hero__inner {
  text-align: center;
  background-color: rgba(18, 17, 23, 0.7);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding: 24px 16px;
  display: flex;
}
@media (min-width: 480px) {
  .mz84k2p7__hero--simple-1 .mz84k2p7__hero__inner {
    max-width: 800px;
  }
}
.mz84k2p7__hero--simple-1 .mz84k2p7__hero__title {
  font-size: 2.35rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--simple-1 .mz84k2p7__hero__title {
    font-size: 2.75rem;
  }
}
.mz84k2p7__hero--simple-1 .mz84k2p7__hero__title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.mz84k2p7__hero--simple-1 .mz84k2p7__hero__offer {
  margin-bottom: 1.5rem;
}
.mz84k2p7__hero--simple-1 .mz84k2p7__hero__offer-title {
  font-size: 1.5rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--simple-1 .mz84k2p7__hero__offer-title {
    font-size: 1.75rem;
  }
}
.mz84k2p7__hero--simple-1 .mz84k2p7__hero__offer-title {
  font-weight: 300;
}
.mz84k2p7__hero--simple-1 .mz84k2p7__hero__offer-number {
  font-size: 1.75rem;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--simple-1 .mz84k2p7__hero__offer-number {
    font-size: 2.25rem;
  }
}
.mz84k2p7__hero--simple-1 .mz84k2p7__hero__offer-number {
  font-weight: 700;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--simple-1 .mz84k2p7__hero__bg-image,
  .mz84k2p7__hero--simple-1 .mz84k2p7__hero__bg {
    -webkit-mask-repeat: repeat;
    mask-repeat: repeat;
  }
}
.mz84k2p7__hero--simple-2 {
  box-sizing: border-box;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--simple-2 {
    min-height: 500px;
  }
}
.mz84k2p7__hero--simple-2 .mz84k2p7__hero__inner {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}
.mz84k2p7__hero--simple-2 .mz84k2p7__hero__title {
  font-size: 2.35rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--simple-2 .mz84k2p7__hero__title {
    font-size: 2.75rem;
  }
}
.mz84k2p7__hero--simple-2 .mz84k2p7__hero__title {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.mz84k2p7__hero--simple-2 .mz84k2p7__hero__offer {
  margin-bottom: 1.5rem;
}
.mz84k2p7__hero--simple-2 .mz84k2p7__hero__offer-title {
  font-size: 1.5rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--simple-2 .mz84k2p7__hero__offer-title {
    font-size: 1.75rem;
  }
}
.mz84k2p7__hero--simple-2 .mz84k2p7__hero__offer-title {
  font-weight: 300;
}
.mz84k2p7__hero--simple-2 .mz84k2p7__hero__offer-number {
  font-size: 1.75rem;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--simple-2 .mz84k2p7__hero__offer-number {
    font-size: 2.25rem;
  }
}
.mz84k2p7__hero--simple-2 .mz84k2p7__hero__offer-number {
  font-weight: 700;
}
.mz84k2p7__hero--simple-2 {
  align-items: stretch;
}
.mz84k2p7__hero--simple-2 .mz84k2p7__hero__inner {
  height: 100%;
}
.mz84k2p7__hero--simple-2 .mz84k2p7__hero__inner:before {
  content: "";
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent);
  width: 100%;
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: 0;
}
.mz84k2p7__hero--simple-2 .mz84k2p7__hero__inner:after {
  content: "";
  z-index: 1;
  background: rgba(0, 0, 0, 0.9);
  width: 50vw;
  position: absolute;
  top: -20px;
  bottom: -20px;
  right: 100%;
}
.mz84k2p7__hero--simple-2 .mz84k2p7__hero__content {
  z-index: 2;
  position: relative;
}
.mz84k2p7__hero--simple-2 .mz84k2p7__hero__buttons {
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--simple-2 .mz84k2p7__hero__bg-image,
  .mz84k2p7__hero--simple-2 .mz84k2p7__hero__bg {
    -webkit-mask-repeat: repeat;
    mask-repeat: repeat;
  }
}
.mz84k2p7__hero--simple-3 {
  box-sizing: border-box;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--simple-3 {
    min-height: 500px;
  }
}
.mz84k2p7__hero--simple-3 .mz84k2p7__hero__inner {
  text-align: center;
  background-color: rgba(18, 17, 23, 0.7);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding: 24px 16px;
  display: flex;
}
@media (min-width: 480px) {
  .mz84k2p7__hero--simple-3 .mz84k2p7__hero__inner {
    max-width: 800px;
  }
}
.mz84k2p7__hero--simple-3 .mz84k2p7__hero__title {
  font-size: 2.35rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--simple-3 .mz84k2p7__hero__title {
    font-size: 2.75rem;
  }
}
.mz84k2p7__hero--simple-3 .mz84k2p7__hero__title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.mz84k2p7__hero--simple-3 .mz84k2p7__hero__offer {
  margin-bottom: 1.5rem;
}
.mz84k2p7__hero--simple-3 .mz84k2p7__hero__offer-title {
  font-size: 1.5rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--simple-3 .mz84k2p7__hero__offer-title {
    font-size: 1.75rem;
  }
}
.mz84k2p7__hero--simple-3 .mz84k2p7__hero__offer-title {
  font-weight: 300;
}
.mz84k2p7__hero--simple-3 .mz84k2p7__hero__offer-number {
  font-size: 1.75rem;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--simple-3 .mz84k2p7__hero__offer-number {
    font-size: 2.25rem;
  }
}
.mz84k2p7__hero--simple-3 .mz84k2p7__hero__offer-number {
  font-weight: 700;
}
.mz84k2p7__hero--simple-3:before {
  content: "";
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.3), #000);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mz84k2p7__hero--simple-3 .mz84k2p7__hero__inner {
  z-index: 2;
  border: 1px solid var(--primary);
  border-radius: 4px;
  padding: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--simple-3 .mz84k2p7__hero__inner {
    padding: 24px 16px;
  }
}
.mz84k2p7__hero--simple-3 .mz84k2p7__hero__title {
  padding: 20px 30px;
}
.mz84k2p7__hero--with-text-1 {
  box-sizing: border-box;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-1 {
    min-height: 500px;
  }
}
.mz84k2p7__hero--with-text-1 .mz84k2p7__hero__title {
  font-size: 2.35rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-1 .mz84k2p7__hero__title {
    font-size: 2.75rem;
  }
}
.mz84k2p7__hero--with-text-1 .mz84k2p7__hero__title {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.mz84k2p7__hero--with-text-1 .mz84k2p7__hero__offer {
  margin-bottom: 1.5rem;
}
.mz84k2p7__hero--with-text-1 .mz84k2p7__hero__offer-title {
  font-size: 1.5rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-1 .mz84k2p7__hero__offer-title {
    font-size: 1.75rem;
  }
}
.mz84k2p7__hero--with-text-1 .mz84k2p7__hero__offer-title {
  font-weight: 300;
}
.mz84k2p7__hero--with-text-1 .mz84k2p7__hero__offer-number {
  font-size: 1.75rem;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-1 .mz84k2p7__hero__offer-number {
    font-size: 2.25rem;
  }
}
.mz84k2p7__hero--with-text-1 .mz84k2p7__hero__offer-number {
  font-weight: 700;
}
.mz84k2p7__hero--with-text-1 .mz84k2p7__hero__txt {
  padding-top: 20px;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-1 .mz84k2p7__hero__txt {
    width: 50%;
    padding-top: 0;
  }
}
.mz84k2p7__hero--with-text-1 .mz84k2p7__hero__offer {
  z-index: 2;
  position: relative;
}
.mz84k2p7__hero--with-text-1 {
  min-height: 300px;
  padding: 40px 0 20px;
}
.mz84k2p7__hero--with-text-1 .mz84k2p7__hero__inner {
  flex-direction: column;
  gap: 20px;
  display: flex;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-1 .mz84k2p7__hero__inner {
    flex-direction: row-reverse;
    gap: 40px;
  }
}
.mz84k2p7__hero--with-text-1 .mz84k2p7__hero__content {
  text-align: center;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 16px;
  display: flex;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-1 .mz84k2p7__hero__content {
    text-align: right;
    border-radius: 24px;
    justify-content: center;
    align-items: flex-end;
    width: 50%;
    padding: 34px 40px;
  }
  .mz84k2p7__hero--with-text-1 .mz84k2p7__hero__content .mz84k2p7__hero__buttons {
    justify-content: flex-end;
  }
}
.mz84k2p7__hero--with-text-1 .mz84k2p7__hero__bg--image:before {
  content: "";
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mz84k2p7__hero--with-text-2 {
  box-sizing: border-box;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-2 {
    min-height: 500px;
  }
}
.mz84k2p7__hero--with-text-2 .mz84k2p7__hero__title {
  font-size: 2.35rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-2 .mz84k2p7__hero__title {
    font-size: 2.75rem;
  }
}
.mz84k2p7__hero--with-text-2 .mz84k2p7__hero__title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.mz84k2p7__hero--with-text-2 .mz84k2p7__hero__offer {
  margin-bottom: 1.5rem;
}
.mz84k2p7__hero--with-text-2 .mz84k2p7__hero__offer-title {
  font-size: 1.5rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-2 .mz84k2p7__hero__offer-title {
    font-size: 1.75rem;
  }
}
.mz84k2p7__hero--with-text-2 .mz84k2p7__hero__offer-title {
  font-weight: 300;
}
.mz84k2p7__hero--with-text-2 .mz84k2p7__hero__offer-number {
  font-size: 1.75rem;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-2 .mz84k2p7__hero__offer-number {
    font-size: 2.25rem;
  }
}
.mz84k2p7__hero--with-text-2 .mz84k2p7__hero__offer-number {
  font-weight: 700;
}
.mz84k2p7__hero--with-text-2 {
  min-height: 300px;
  padding-top: 0;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-2 {
    padding-top: 40px;
  }
}
.mz84k2p7__hero--with-text-2 .mz84k2p7__hero__txt {
  padding-top: 20px;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-2 .mz84k2p7__hero__txt {
    width: 50%;
    padding-top: 0;
  }
}
.mz84k2p7__hero--with-text-2 .mz84k2p7__hero__offer {
  z-index: 2;
  position: relative;
}
.mz84k2p7__hero--with-text-2 .mz84k2p7__hero__inner {
  flex-direction: column;
  gap: 20px;
  display: flex;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-2 .mz84k2p7__hero__inner {
    flex-direction: row;
    gap: 40px;
  }
}
.mz84k2p7__hero--with-text-2 .mz84k2p7__hero__content {
  text-align: center;
  border-bottom: 4px solid var(--primary);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 -12px;
  padding: 50px 16px 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.mz84k2p7__hero--with-text-2 .mz84k2p7__hero__content:before {
  content: "";
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-2 .mz84k2p7__hero__content {
    text-align: left;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
    margin: 0;
    padding: 34px 40px;
  }
  .mz84k2p7__hero--with-text-2 .mz84k2p7__hero__content .mz84k2p7__hero__buttons {
    justify-content: flex-start;
  }
}
.mz84k2p7__hero--with-text-3 {
  box-sizing: border-box;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-3 {
    min-height: 500px;
  }
}
.mz84k2p7__hero--with-text-3 .mz84k2p7__hero__title {
  font-size: 2.35rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-3 .mz84k2p7__hero__title {
    font-size: 2.75rem;
  }
}
.mz84k2p7__hero--with-text-3 .mz84k2p7__hero__title {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.mz84k2p7__hero--with-text-3 .mz84k2p7__hero__offer {
  margin-bottom: 1.5rem;
}
.mz84k2p7__hero--with-text-3 .mz84k2p7__hero__offer-title {
  font-size: 1.5rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-3 .mz84k2p7__hero__offer-title {
    font-size: 1.75rem;
  }
}
.mz84k2p7__hero--with-text-3 .mz84k2p7__hero__offer-title {
  font-weight: 300;
}
.mz84k2p7__hero--with-text-3 .mz84k2p7__hero__offer-number {
  font-size: 1.75rem;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-3 .mz84k2p7__hero__offer-number {
    font-size: 2.25rem;
  }
}
.mz84k2p7__hero--with-text-3 .mz84k2p7__hero__offer-number {
  font-weight: 700;
}
.mz84k2p7__hero--with-text-3 {
  min-height: 300px;
  padding-top: 0;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-3 {
    padding-top: 40px;
  }
}
.mz84k2p7__hero--with-text-3 .mz84k2p7__hero__inner {
  z-index: 2;
  flex-direction: column;
  gap: 20px;
  padding: 16px;
  display: flex;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-3 .mz84k2p7__hero__inner {
    flex-direction: row-reverse;
    gap: 40px;
    padding: 80px;
  }
  .mz84k2p7__hero--with-text-3 .mz84k2p7__hero__bg {
    border-radius: 24px;
    overflow: hidden;
  }
}
.mz84k2p7__hero--with-text-3 .mz84k2p7__hero__bg--image:before {
  content: "";
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mz84k2p7__hero--with-text-3 .mz84k2p7__hero__content {
  text-align: center;
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  display: flex;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-3 .mz84k2p7__hero__content {
    text-align: center;
    width: 50%;
    margin: 0;
    padding: 34px 40px;
  }
}
.mz84k2p7__hero--with-text-3 .mz84k2p7__hero__txt {
  padding-top: 20px;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-text-3 .mz84k2p7__hero__txt {
    width: 50%;
    padding-top: 0;
  }
}
.mz84k2p7__hero--with-text-3 .mz84k2p7__button {
  align-self: stretch;
}
@media (min-width: 480px) {
  .mz84k2p7__hero--with-text-3 .mz84k2p7__button {
    align-self: auto;
    padding-left: 50px;
    padding-right: 50px;
  }
}
.mz84k2p7__hero--with-store-buttons-1 {
  box-sizing: border-box;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-1 {
    min-height: 500px;
  }
}
.mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__hero__title {
  font-size: 2.35rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__hero__title {
    font-size: 2.75rem;
  }
}
.mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__hero__title {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__hero__offer {
  margin-bottom: 1.5rem;
}
.mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__hero__offer-title {
  font-size: 1.5rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__hero__offer-title {
    font-size: 1.75rem;
  }
}
.mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__hero__offer-title {
  font-weight: 300;
}
.mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__hero__offer-number {
  font-size: 1.75rem;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__hero__offer-number {
    font-size: 2.25rem;
  }
}
.mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__hero__offer-number {
  font-weight: 700;
}
.mz84k2p7__hero--with-store-buttons-1 {
  min-height: 300px;
  padding-top: 0;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-1 {
    padding-top: 40px;
  }
}
.mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__hero__inner {
  z-index: 2;
  flex-direction: column;
  gap: 20px;
  padding: 16px;
  display: flex;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__hero__inner {
    flex-direction: row-reverse;
    gap: 40px;
    padding: 80px;
  }
  .mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__hero__bg {
    border-radius: 24px;
    overflow: hidden;
  }
}
.mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__hero__bg--image:before {
  content: "";
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__hero__content {
  text-align: center;
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  display: flex;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__hero__content {
    text-align: center;
    width: 50%;
    margin: 0;
    padding: 34px 40px;
  }
}
.mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__hero__txt {
  padding-top: 20px;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__hero__txt {
    width: 50%;
    padding-top: 0;
  }
}
.mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__button {
  align-self: stretch;
}
@media (min-width: 480px) {
  .mz84k2p7__hero--with-store-buttons-1 .mz84k2p7__button {
    align-self: auto;
    padding-left: 50px;
    padding-right: 50px;
  }
}
.mz84k2p7__hero--with-store-buttons-2 {
  box-sizing: border-box;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-2 {
    min-height: 500px;
  }
}
.mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__hero__title {
  font-size: 2.35rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__hero__title {
    font-size: 2.75rem;
  }
}
.mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__hero__title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__hero__offer {
  margin-bottom: 1.5rem;
}
.mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__hero__offer-title {
  font-size: 1.5rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__hero__offer-title {
    font-size: 1.75rem;
  }
}
.mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__hero__offer-title {
  font-weight: 300;
}
.mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__hero__offer-number {
  font-size: 1.75rem;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__hero__offer-number {
    font-size: 2.25rem;
  }
}
.mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__hero__offer-number {
  font-weight: 700;
}
.mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__hero__wrapper {
  flex-direction: column;
  gap: 10px;
  display: flex;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__hero__wrapper {
    flex-direction: row-reverse;
    align-items: center;
  }
  .mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__hero__inner {
    width: 52%;
  }
}
.mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__hero__content {
  text-align: center;
  background-color: var(--secondary);
  border-radius: 8px;
  flex-direction: column;
  padding: 16px 16px 24px;
  display: flex;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__hero__content {
    border-radius: 24px;
    padding: 24px;
  }
}
.mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__hero__store-buttons {
  justify-content: center;
}
.mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__hero__bg {
  aspect-ratio: 16/9;
  margin-bottom: 24px;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__hero__bg {
    width: 48%;
  }
}
.mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__button {
  align-self: stretch;
}
@media (min-width: 480px) {
  .mz84k2p7__hero--with-store-buttons-2 .mz84k2p7__button {
    align-self: center;
  }
}
.mz84k2p7__hero--with-store-buttons-3 {
  box-sizing: border-box;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-3 {
    min-height: 500px;
  }
}
.mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__title {
  font-size: 2.35rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__title {
    font-size: 2.75rem;
  }
}
.mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__offer {
  margin-bottom: 1.5rem;
}
.mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__offer-title {
  font-size: 1.5rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__offer-title {
    font-size: 1.75rem;
  }
}
.mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__offer-title {
  font-weight: 300;
}
.mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__offer-number {
  font-size: 1.75rem;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__offer-number {
    font-size: 2.25rem;
  }
}
.mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__offer-number {
  font-weight: 700;
}
.mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__wrapper {
  flex-direction: column;
  gap: 10px;
  display: flex;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__wrapper {
    flex-direction: row-reverse;
    align-items: center;
  }
  .mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__inner {
    width: 52%;
  }
}
.mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__content {
  text-align: center;
  background-color: var(--secondary);
  border-radius: 8px;
  flex-direction: column;
  padding: 16px 16px 24px;
  display: flex;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__content {
    border-radius: 24px;
    padding: 24px;
  }
}
.mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__store-buttons {
  justify-content: center;
}
.mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__bg {
  aspect-ratio: 16/9;
  margin-bottom: 24px;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__bg {
    width: 48%;
  }
}
.mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__button {
  align-self: stretch;
}
@media (min-width: 480px) {
  .mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__button {
    align-self: center;
  }
}
.mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__txt {
  background-color: var(--background_secondary);
  border-radius: 8px;
  margin-bottom: 8px;
  padding: 16px 16px 24px;
}
@media (min-width: 768px) {
  .mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__txt {
    border-radius: 24px;
    padding: 24px;
  }
  .mz84k2p7__hero--with-store-buttons-3 .mz84k2p7__hero__bg {
    aspect-ratio: 1;
  }
}
.mz84k2p7__demo-iframe-modal {
  background: var(--background, #0f0f12);
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  color: var(--text_color, #fff);
  box-sizing: border-box;
  border: none;
  margin: 0;
  padding: 0;
}
.mz84k2p7__demo-iframe-modal::-ms-backdrop {
  background: rgba(0, 0, 0, 0.72);
}
.mz84k2p7__demo-iframe-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
}
.mz84k2p7__demo-iframe-modal__shell {
  flex-direction: column;
  min-width: 0;
  height: 100%;
  min-height: 0;
  display: flex;
}
.mz84k2p7__demo-iframe-modal__bar {
  box-sizing: border-box;
  background: var(--background_secondary, #1a1a22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  flex: 0 0 40px;
  justify-content: flex-end;
  align-items: center;
  height: 40px;
  padding: 0 8px 0 12px;
  display: flex;
  position: relative;
}
.mz84k2p7__demo-iframe-modal__title {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 96px);
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
}
.mz84k2p7__demo-iframe-modal__close {
  z-index: 1;
  width: 40px;
  height: 40px;
  color: inherit;
  cursor: pointer;
  background: 0 0;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  display: inline-flex;
  position: relative;
}
.mz84k2p7__demo-iframe-modal__close:hover {
  opacity: 0.85;
}
.mz84k2p7__demo-iframe-modal__frame {
  background: #000;
  flex: 1;
  min-width: 0;
  min-height: 0;
}
.mz84k2p7__demo-iframe-modal__frame iframe {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.mz84k2p7__game-gallery {
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.4rem;
  display: flex;
}
.mz84k2p7__game-gallery__header {
  grid-template-columns: 1fr auto 1fr;
  justify-content: space-between;
  align-items: center;
  gap: 0.2rem;
  display: grid;
}
@media (min-width: 768px) {
  .mz84k2p7__game-gallery__header {
    gap: 1rem;
  }
}
.mz84k2p7__game-gallery__header:before,
.mz84k2p7__game-gallery__header:after {
  content: "";
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  height: 2px;
}
.mz84k2p7__game-gallery__title {
  color: var(--text_color);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  justify-self: center;
  margin: 0;
  padding: 0 1rem;
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .mz84k2p7__game-gallery__title {
    padding: 0 1.5rem;
    font-size: 1.4rem;
  }
}
.mz84k2p7__game-gallery__item {
  width: 100%;
  min-width: 130px;
}
.mz84k2p7__game-gallery__list {
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  justify-items: center;
  gap: 16px;
  padding-top: 0.5rem;
  display: grid;
  overflow: auto;
}
.mz84k2p7__game-item {
  border-radius: 0.5rem;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.2s;
  display: flex;
  position: relative;
  overflow: hidden;
}
.mz84k2p7__game-item:hover {
  transform: translateY(-0.25rem);
}
.mz84k2p7__game-item:hover .mz84k2p7__game-media__image {
  filter: blur(0.25rem);
  transform: scale(1.07);
}
.mz84k2p7__game-item:hover .mz84k2p7__game-info__title {
  color: var(--primary);
}
.mz84k2p7__game-item:hover .mz84k2p7__game-media__btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.mz84k2p7__game-item__media {
  border: 1px solid color-mix(in srgb, var(--text_color) 10%, transparent);
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}
.mz84k2p7__game-item__info {
  padding: 0.75rem 0.5rem;
}
.mz84k2p7__game-gallery--cover .mz84k2p7__game-item__info {
  box-sizing: border-box;
  z-index: 2;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8) 50%);
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.mz84k2p7__game-media {
  aspect-ratio: 1;
  border-radius: 0.5rem;
  width: 100%;
  display: flex;
  position: relative;
}
.mz84k2p7__game-gallery--cover .mz84k2p7__game-media {
  aspect-ratio: 4/5;
}
.mz84k2p7__game-media__image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
  position: absolute;
  top: 0;
  left: 0;
}
.mz84k2p7__game-media__btn {
  background: var(--primary);
  width: 3rem;
  height: 3rem;
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--primary) 30%, transparent);
  opacity: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.2);
}
.mz84k2p7__game-media__btn:after {
  content: "";
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCA4IDgiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0yIDF2Nmw1LTN6Ii8+PC9zdmc+);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1rem;
  height: 1rem;
  margin-left: 1px;
}
.mz84k2p7__game-media__btn:hover {
  box-shadow: 0 0 0 0.5rem color-mix(in srgb, var(--primary) 50%, transparent);
  transform: translate(-50%, -50%) scale(1.2) !important;
}
.mz84k2p7__game-info {
  flex-direction: column;
  gap: 0.2rem;
  display: flex;
}
.mz84k2p7__game-info__title {
  color: var(--text_color);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.2s;
}
@media (min-width: 768px) {
  .mz84k2p7__game-info__title {
    font-size: 1rem;
  }
}
.mz84k2p7__game-info__description {
  color: color-mix(in srgb, var(--text_color) 70%, transparent);
  font-size: 0.6rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .mz84k2p7__game-info__description {
    font-size: 0.8rem;
  }
}
.mz84k2p7__page-legend {
  width: 100%;
}
.mz84k2p7__page-legend__heading-visually-hidden {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}
.mz84k2p7__page-legend__trigger {
  cursor: pointer;
  text-align: left;
  border: none;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  display: flex;
}
.mz84k2p7__page-legend__trigger-text {
  flex: 1;
}
.mz84k2p7__page-legend__trigger-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}
.mz84k2p7__page-legend__accordion[data-expanded] .mz84k2p7__page-legend__trigger-icon {
  transform: rotate(180deg);
}
.mz84k2p7__page-legend__menu {
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
  display: grid;
}
.mz84k2p7__page-legend__accordion[data-expanded] .mz84k2p7__page-legend__menu {
  grid-template-rows: 1fr;
}
.mz84k2p7__page-legend__menu-inner {
  min-height: 0;
  overflow: hidden;
}
.mz84k2p7__page-legend__menu-inner a {
  color: var(--text_color);
  text-decoration: none;
  transition: color 0.3s;
}
.mz84k2p7__page-legend__menu-inner a:hover {
  color: var(--primary);
}
.mz84k2p7__page-legend__menu-inner ol {
  counter-reset: page-legend-ol;
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.mz84k2p7__page-legend__menu-inner ol ol {
  margin-top: 4px;
  padding-left: 1.25em;
}
.mz84k2p7__page-legend__menu-inner ol > li:before {
  counter-increment: page-legend-ol;
  content: counters(page-legend-ol, ".") ". ";
  margin-right: 0.35em;
}
.mz84k2p7__page-legend__menu-inner > ol {
  padding-bottom: 24px;
}
.mz84k2p7__page-legend__menu-inner li + li {
  margin-top: 4px;
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-1 .mz84k2p7__page-legend__content {
  border: 1px solid color-mix(in srgb, var(--text_color) 10%, transparent);
  background-color: color-mix(in srgb, var(--text_color) 5%, transparent);
  border-radius: 24px;
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-1 .mz84k2p7__page-legend__trigger {
  color: var(--text_color);
  background: 0 0;
  padding: 20px 24px;
  font-size: 18px;
  transition: color 0.3s;
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-1 .mz84k2p7__page-legend__trigger:hover {
  color: var(--primary);
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-1 .mz84k2p7__page-legend__trigger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-1 .mz84k2p7__page-legend__menu {
  color: var(--text_color);
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-1 .mz84k2p7__page-legend__menu-inner {
  padding: 0 24px 0 48px;
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-2 .mz84k2p7__page-legend__content {
  border: 1px solid color-mix(in srgb, var(--text_color) 14%, transparent);
  border-left: 3px solid var(--primary);
  background-color: transparent;
  border-radius: 12px;
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-2 .mz84k2p7__page-legend__trigger {
  background: color-mix(in srgb, var(--text_color) 4%, transparent);
  color: var(--text_color);
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 600;
  transition:
    background-color 0.2s,
    color 0.2s;
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-2 .mz84k2p7__page-legend__trigger:hover {
  color: var(--primary);
  background-color: color-mix(in srgb, var(--text_color) 7%, transparent);
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-2 .mz84k2p7__page-legend__trigger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-2 .mz84k2p7__page-legend__accordion[data-expanded] .mz84k2p7__page-legend__trigger {
  border-bottom: 1px solid color-mix(in srgb, var(--text_color) 12%, transparent);
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-2 .mz84k2p7__page-legend__menu {
  color: color-mix(in srgb, var(--text_color) 92%, transparent);
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-2 .mz84k2p7__page-legend__menu-inner {
  padding: 0 22px 0 36px;
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-3 .mz84k2p7__page-legend__content {
  border: 1px solid color-mix(in srgb, var(--text_color) 8%, transparent);
  background-color: var(--primary);
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-3 .mz84k2p7__page-legend__trigger {
  background-color: color-mix(in srgb, var(--primary) 14%, transparent);
  color: var(--text_color);
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 500;
  transition:
    background-color 0.2s,
    color 0.2s;
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-3 .mz84k2p7__page-legend__trigger:hover {
  background-color: color-mix(in srgb, var(--primary) 20%, transparent);
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-3 .mz84k2p7__page-legend__trigger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-3 .mz84k2p7__page-legend__menu {
  color: var(--text_color);
  border-top: 1px solid color-mix(in srgb, var(--text_color) 10%, transparent);
}
.mz84k2p7__page-legend.mz84k2p7__page-legend--page-legend-3 .mz84k2p7__page-legend__menu-inner {
  padding: 0 24px 0 44px;
}
h2,
h3 {
  scroll-margin-top: 80px;
}
.mz84k2p7__content {
  width: 100%;
  color: var(--text_color);
  line-height: 1.5;
}
.mz84k2p7__content h2 {
  margin: 0.84rem 0 0.56rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}
.mz84k2p7__content p {
  margin: 1rem 0;
  line-height: 1.5;
}
.mz84k2p7__content a {
  color: var(--link_color);
}
.mz84k2p7__content ol,
.mz84k2p7__content ul {
  padding-left: 1.5rem;
}
.mz84k2p7__content ol li + li,
.mz84k2p7__content ul li + li {
  margin-top: 0.5rem;
}
.mz84k2p7__content .mz84k2p7__table-wrap {
  width: 100%;
  margin: 1.5rem 0;
  overflow-x: auto;
}
.mz84k2p7__content table {
  min-width: 100%;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  color: var(--text_color) !important;
  table-layout: fixed !important;
  text-align: left !important;
  vertical-align: top !important;
  table-layout: fixed !important;
}
.mz84k2p7__content th,
.mz84k2p7__content td {
  padding: 0.75rem;
  font-size: 1rem;
  border: none !important;
  border-left: 1px solid color-mix(in srgb, var(--text_color) 10%, transparent) !important;
  border-bottom: 1px solid color-mix(in srgb, var(--text_color) 10%, transparent) !important;
  white-space: normal !important;
  vertical-align: top !important;
  width: 1% !important;
}
@media (min-width: 768px) {
  .mz84k2p7__content th,
  .mz84k2p7__content td {
    padding: 1rem 1.5rem;
  }
}
.mz84k2p7__content th > *,
.mz84k2p7__content td > * {
  margin: 0 !important;
}
.mz84k2p7__content th:last-child,
.mz84k2p7__content td:last-child {
  border-right: 1px solid color-mix(in srgb, var(--text_color) 10%, transparent) !important;
}
.mz84k2p7__content th {
  font-size: 1.1rem;
  font-weight: 600;
  background-color: var(--primary) !important;
  border-left: 1px solid color-mix(in srgb, var(--primary) 90%, #fff) !important;
  border-bottom: 1px solid color-mix(in srgb, var(--primary) 90%, #fff) !important;
}
.mz84k2p7__content th:last-child {
  border-right: 1px solid color-mix(in srgb, var(--primary) 90%, #fff) !important;
}
.mz84k2p7__content tbody tr:nth-child(2n) td {
  background-color: color-mix(in srgb, var(--text_color) 10%, transparent) !important;
}
.mz84k2p7__content tr:first-child th,
.mz84k2p7__content tr:first-child td {
  border-top: 1px solid color-mix(in srgb, var(--text_color) 10%, transparent) !important;
}
.mz84k2p7__content tr:first-child th:first-child,
.mz84k2p7__content tr:first-child td:first-child {
  border-top-left-radius: 1.5rem !important;
}
.mz84k2p7__content tr:first-child th:last-child,
.mz84k2p7__content tr:first-child td:last-child {
  border-top-right-radius: 1.5rem !important;
}
.mz84k2p7__content tr:first-child th {
  border-top: 1px solid color-mix(in srgb, var(--primary) 90%, #fff) !important;
}
.mz84k2p7__content tr:last-child td:first-child {
  border-bottom-left-radius: 1.5rem !important;
}
.mz84k2p7__content tr:last-child td:last-child {
  border-bottom-right-radius: 1.5rem !important;
}
.mz84k2p7__content .mz84k2p7__table-wrap thead + tbody > tr:first-child td {
  border-radius: 0 !important;
}
.mz84k2p7__content img {
  max-width: 100%;
  height: auto;
}
.mz84k2p7__banner {
  box-sizing: border-box;
  width: 100%;
  color: var(--text_color);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  position: relative;
  overflow: hidden;
}
.mz84k2p7__banner .mz84k2p7__banner__inner {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.mz84k2p7__banner .mz84k2p7__banner__bg-image {
  z-index: 0;
  object-fit: cover;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-mask-position: 50%;
  mask-position: 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.mz84k2p7__banner .mz84k2p7__banner__bg {
  z-index: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.mz84k2p7__banner .mz84k2p7__button {
  z-index: 2;
  color: var(--banner_button_text_color, var(--text_color));
  padding: 10px 18px;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}
@media (min-width: 480px) {
  .mz84k2p7__banner .mz84k2p7__button {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .mz84k2p7__banner .mz84k2p7__button {
    padding: 12px 24px;
    font-size: 20px;
  }
}
.mz84k2p7__banner .mz84k2p7__banner__offer {
  margin-bottom: 1.5rem;
}
.mz84k2p7__banner .mz84k2p7__banner__offer-title {
  font-size: 1.25rem;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .mz84k2p7__banner .mz84k2p7__banner__offer-title {
    font-size: 1.5rem;
  }
}
.mz84k2p7__banner .mz84k2p7__banner__offer-title {
  font-weight: 300;
}
.mz84k2p7__banner .mz84k2p7__banner__offer-number {
  font-size: 1.5rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .mz84k2p7__banner .mz84k2p7__banner__offer-number {
    font-size: 1.75rem;
  }
}
.mz84k2p7__banner .mz84k2p7__banner__offer-number {
  font-weight: 700;
}
.mz84k2p7__banner--banner-1 .mz84k2p7__banner__inner {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__banner--banner-1 .mz84k2p7__banner__inner {
    padding: 21px 24px;
  }
}
.mz84k2p7__banner--banner-1.mz84k2p7__banner--bg-image .mz84k2p7__banner__inner:before {
  content: "";
  z-index: 1;
  background: linear-gradient(270deg, rgba(18, 17, 23, 0) 0%, #121117 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mz84k2p7__banner--banner-1 .mz84k2p7__banner__content {
  z-index: 2;
  padding: 24px 32px;
  position: relative;
}
.mz84k2p7__banner--banner-1 .mz84k2p7__banner__title {
  font-size: 1.25rem;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .mz84k2p7__banner--banner-1 .mz84k2p7__banner__title {
    font-size: 1.5rem;
  }
}
.mz84k2p7__banner--banner-1 .mz84k2p7__banner__title {
  text-transform: uppercase;
  max-width: 448px;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.mz84k2p7__banner--banner-2 .mz84k2p7__banner__inner {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__banner--banner-2 .mz84k2p7__banner__inner {
    padding: 21px 24px;
  }
}
.mz84k2p7__banner--banner-2.mz84k2p7__banner--bg-image .mz84k2p7__banner__inner:before {
  content: "";
  z-index: 1;
  background: radial-gradient(#121117 20%, rgba(18, 17, 23, 0) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mz84k2p7__banner--banner-2 .mz84k2p7__banner__title {
  font-size: 1.25rem;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .mz84k2p7__banner--banner-2 .mz84k2p7__banner__title {
    font-size: 1.5rem;
  }
}
.mz84k2p7__banner--banner-2 .mz84k2p7__banner__title {
  text-transform: uppercase;
  max-width: 448px;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.mz84k2p7__banner--banner-2 .mz84k2p7__banner__content {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 32px;
  display: flex;
  position: relative;
}
.mz84k2p7__banner--banner-3 .mz84k2p7__banner__inner {
  text-align: right;
  justify-content: flex-end;
  display: flex;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__banner--banner-3 .mz84k2p7__banner__inner {
    padding: 21px 24px;
  }
}
.mz84k2p7__banner--banner-3.mz84k2p7__banner--bg-image .mz84k2p7__banner__inner:before {
  content: "";
  z-index: 1;
  background: linear-gradient(90deg, rgba(18, 17, 23, 0) 0%, #121117 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.mz84k2p7__banner--banner-3 .mz84k2p7__banner__content {
  z-index: 2;
  padding: 24px 32px;
  position: relative;
}
.mz84k2p7__banner--banner-3 .mz84k2p7__banner__title {
  font-size: 1.25rem;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .mz84k2p7__banner--banner-3 .mz84k2p7__banner__title {
    font-size: 1.5rem;
  }
}
.mz84k2p7__banner--banner-3 .mz84k2p7__banner__title {
  text-transform: uppercase;
  max-width: 448px;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.mz84k2p7__banner--banner-4 .mz84k2p7__banner__inner {
  text-align: center;
  background: var(--background_secondary);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 16px;
  display: flex;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__banner--banner-4 .mz84k2p7__banner__inner {
    border-radius: 24px;
    padding: 24px 32px;
  }
}
.mz84k2p7__banner--banner-4 .mz84k2p7__banner__content {
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  margin-right: 5%;
  display: flex;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__banner--banner-4 .mz84k2p7__banner__content {
    width: 65%;
    padding: 24px 32px;
  }
}
.mz84k2p7__banner--banner-4 .mz84k2p7__banner__title {
  font-size: 1.25rem;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .mz84k2p7__banner--banner-4 .mz84k2p7__banner__title {
    font-size: 1.5rem;
  }
}
.mz84k2p7__banner--banner-4 .mz84k2p7__banner__title {
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.mz84k2p7__banner--banner-4 .mz84k2p7__banner__offer {
  text-align: left;
}
.mz84k2p7__banner--banner-4 .mz84k2p7__banner__bg-image {
  aspect-ratio: 1;
  width: 45%;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__banner--banner-4 .mz84k2p7__banner__bg-image {
    width: 30%;
  }
}
.mz84k2p7__banner--banner-5 .mz84k2p7__banner__inner {
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  display: flex;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__banner--banner-5 .mz84k2p7__banner__inner {
    padding: 24px;
  }
}
.mz84k2p7__banner--banner-5 .mz84k2p7__banner__content {
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  margin-right: 5%;
  display: flex;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__banner--banner-5 .mz84k2p7__banner__content {
    width: 65%;
    padding: 24px 32px;
  }
}
.mz84k2p7__banner--banner-5 .mz84k2p7__banner__title {
  font-size: 1.25rem;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .mz84k2p7__banner--banner-5 .mz84k2p7__banner__title {
    font-size: 1.5rem;
  }
}
.mz84k2p7__banner--banner-5 .mz84k2p7__banner__title {
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.mz84k2p7__banner--banner-5 .mz84k2p7__banner__offer {
  text-align: left;
}
.mz84k2p7__banner--banner-5 .mz84k2p7__banner__bg-image {
  aspect-ratio: 1;
  width: 45%;
  position: relative;
}
@media (min-width: 768px) {
  .mz84k2p7__banner--banner-5 .mz84k2p7__banner__bg-image {
    width: 30%;
  }
}
.mz84k2p7__faq {
  width: 100%;
}
.mz84k2p7__faq__title {
  text-align: center;
  color: var(--text_color);
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .mz84k2p7__faq__title {
    font-size: 2.625rem;
  }
}
.mz84k2p7__faq__list {
  flex-direction: column;
  display: flex;
}
.mz84k2p7__faq__trigger {
  cursor: pointer;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-weight: 500;
  display: flex;
}
.mz84k2p7__faq__trigger-text {
  flex: 1;
  padding-right: 1rem;
  font-size: 1.125rem;
}
.mz84k2p7__faq__trigger-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}
.mz84k2p7__faq__item[data-expanded] .mz84k2p7__faq__trigger-icon {
  transform: rotate(180deg);
}
.mz84k2p7__faq__panel {
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
  display: grid;
}
.mz84k2p7__faq__item[data-expanded] .mz84k2p7__faq__panel {
  grid-template-rows: 1fr;
}
.mz84k2p7__faq__panel-inner {
  min-height: 0;
  overflow: hidden;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-1 .mz84k2p7__faq__list {
  gap: 8px;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-1 .mz84k2p7__faq__item {
  border-radius: 24px;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-1 .mz84k2p7__faq__trigger {
  background-color: var(--primary);
  color: var(--text_color);
  border: none;
  border: 1px solid color-mix(in srgb, var(--primary) 90%, #fff);
  border-radius: 24px;
  padding: 20px 24px;
  transition: border-radius 0.2s 0.2s;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-1 .mz84k2p7__faq__trigger:hover {
  filter: brightness(1.05);
}
.mz84k2p7__faq.mz84k2p7__faq--faq-1 .mz84k2p7__faq__trigger:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #fff;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-1 .mz84k2p7__faq__trigger-icon {
  color: var(--text_color);
}
.mz84k2p7__faq.mz84k2p7__faq--faq-1 .mz84k2p7__faq__item[data-expanded] .mz84k2p7__faq__trigger {
  border-radius: 24px 24px 0 0;
  transition-delay: 0s;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-1 .mz84k2p7__faq__answer {
  background-color: color-mix(in srgb, var(--text_color) 5%, transparent);
  color: color-mix(in srgb, var(--text_color) 85%, transparent);
  white-space: pre-wrap;
  border: 1px solid color-mix(in srgb, var(--text_color) 10%, transparent);
  border-top: none;
  border-radius: 0 0 24px 24px;
  padding: 20px 24px;
  line-height: 1.5;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-2 .mz84k2p7__faq__list {
  border: 1px solid color-mix(in srgb, var(--text_color) 18%, transparent);
  gap: 0;
  overflow: hidden;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-2 .mz84k2p7__faq__item {
  border-radius: 0;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-2 .mz84k2p7__faq__item + .mz84k2p7__faq__item {
  border-top: 1px solid color-mix(in srgb, var(--text_color) 14%, transparent);
}
.mz84k2p7__faq.mz84k2p7__faq--faq-2 .mz84k2p7__faq__trigger {
  color: var(--text_color);
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 18px 20px;
  transition: background-color 0.2s;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-2 .mz84k2p7__faq__trigger:hover {
  background-color: color-mix(in srgb, var(--text_color) 6%, transparent);
}
.mz84k2p7__faq.mz84k2p7__faq--faq-2 .mz84k2p7__faq__trigger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-2 .mz84k2p7__faq__trigger-icon {
  color: var(--primary);
}
.mz84k2p7__faq.mz84k2p7__faq--faq-2 .mz84k2p7__faq__item[data-expanded] .mz84k2p7__faq__trigger {
  background-color: color-mix(in srgb, var(--text_color) 4%, transparent);
}
.mz84k2p7__faq.mz84k2p7__faq--faq-2 .mz84k2p7__faq__answer {
  border-left: 3px solid var(--primary);
  color: color-mix(in srgb, var(--text_color) 80%, transparent);
  white-space: pre-wrap;
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 18px 20px;
  line-height: 1.55;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-3 .mz84k2p7__faq__list {
  gap: 16px;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-3 .mz84k2p7__faq__item {
  background-color: color-mix(in srgb, var(--text_color) 8%, transparent);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.25),
    0 2px 4px -2px rgba(0, 0, 0, 0.2);
}
.mz84k2p7__faq.mz84k2p7__faq--faq-3 .mz84k2p7__faq__trigger {
  background-color: color-mix(in srgb, var(--text_color) 5%, transparent);
  color: var(--text_color);
  border: none;
  padding: 20px;
  transition: background-color 0.2s;
  position: relative;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-3 .mz84k2p7__faq__trigger:before {
  content: "";
  aspect-ratio: 1;
  background-color: color-mix(in srgb, var(--primary) 70%, transparent);
  z-index: 1;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-3 .mz84k2p7__faq__trigger:hover {
  background-color: color-mix(in srgb, var(--text_color) 10%, transparent);
}
.mz84k2p7__faq.mz84k2p7__faq--faq-3 .mz84k2p7__faq__trigger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-3 .mz84k2p7__faq__trigger-text {
  padding-right: 2rem;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-3 .mz84k2p7__faq__trigger-icon {
  z-index: 2;
  color: color-mix(in srgb, var(--text_color) 70%, transparent);
  position: relative;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-3 .mz84k2p7__faq__item[data-expanded] .mz84k2p7__faq__trigger {
  transition-delay: 0s;
}
.mz84k2p7__faq.mz84k2p7__faq--faq-3 .mz84k2p7__faq__answer {
  background-color: color-mix(in srgb, var(--text_color) 4%, transparent);
  color: color-mix(in srgb, var(--text_color) 82%, transparent);
  white-space: pre-wrap;
  border: none;
  border-top: 1px solid color-mix(in srgb, var(--text_color) 12%, transparent);
  padding: 16px 20px;
  line-height: 1.55;
}
.mz84k2p7__footer {
  background-color: var(--footer_background);
  width: 100%;
  padding: 12px 0;
}
.mz84k2p7__footer__top {
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 16px;
  display: flex;
}
.mz84k2p7__footer__nav {
  padding: 12px 0;
  display: none;
}
@media (min-width: 768px) {
  .mz84k2p7__footer__nav {
    display: block;
  }
}
.mz84k2p7__footer__nav ul {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.mz84k2p7__footer__nav .mz84k2p7__button:hover {
  opacity: 0.85;
}
.mz84k2p7__footer__bottom {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 12px 0;
  display: flex;
}
.mz84k2p7__footer__copyright {
  color: color-mix(in srgb, var(--text_color) 70%, transparent);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.mz84k2p7__footer__support-email {
  color: var(--text_color);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.3s;
}
.mz84k2p7__footer__support-email:hover {
  color: color-mix(in srgb, var(--text_color) 70%, transparent);
  text-decoration: underline;
}
