@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body.no-scroll {
  overflow: hidden;
}
.App {
  background-color: #040850;
  overflow-x: hidden;
}
.app__verify-banner {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translate(-50%);
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 2000;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.app__verify-banner--loading {
  background: #ffffff14;
  border: 1px solid #852df6;
  color: #fff;
}
.app__verify-banner--success {
  background: #00b45080;
  border: 1px solid #852df6;
  color: #fff;
}
.app__verify-banner--error {
  background: #c8000080;
  border: 1px solid #852df6;
  color: #fff;
}
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
}
.header {
  display: flex;
  justify-content: center;
  height: 60px;
  margin-top: 60px;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
  background: transparent;
}
@media (max-width: 1024px) {
  .header {
    height: 32px;
    margin-top: 54px;
  }
}
.header--hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.header--home {
  position: relative;
}
.header__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  padding: 12px 32px;
  pointer-events: all;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .header__content {
    padding: 12px 16px;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .header__content {
    padding: 10px 12px;
    gap: 8px;
  }
}
.header__left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  min-width: 0;
}
@media (max-width: 1024px) {
  .header__left {
    display: none;
  }
}
.header__right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}
.header__right > .menu {
  margin-left: auto;
  height: 56px;
  min-height: 56px;
}
@media (max-width: 1024px) {
  .header__right {
    display: none;
  }
}
.header__interactive {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 0;
  min-width: 0;
}
@media (max-width: 1024px) {
  .header__interactive {
    flex: 1 1 0;
    justify-content: flex-end;
  }
}
.header__settings {
  position: relative;
}
.header__dropdown {
  position: absolute;
  right: 0;
  top: 45px;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff 70%;
  -webkit-backdrop-filter: blur(11.3px);
  backdrop-filter: blur(11.3px);
}
.header__dropdown-item {
  display: flex;
  align-items: center;
  width: 150px;
  height: 28px;
  padding: 6px 8px;
  border-bottom: 1px solid #c3c6d3;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.header__dropdown-item:hover {
  background-color: #c3c6d3;
  border-color: #5115a9;
}
.header__dropdown-item:hover .header__dropdown-icon {
  filter: brightness(0) saturate(100%) invert(32%) sepia(94%) saturate(2100%)
    hue-rotate(236deg) brightness(92%) contrast(92%);
}
.header__dropdown-item:hover .header__dropdown-label {
  font-weight: 600;
  color: #5115a9;
}
.header__dropdown-item:active {
  background-color: #5115a9;
  border-color: #fff;
}
.header__dropdown-item:active .header__dropdown-icon {
  color: #fff;
}
.header__dropdown-item:active .header__dropdown-label {
  color: #fff;
  font-weight: 600;
}
.header__dropdown-icon {
  width: 16px;
  height: 16px;
  margin-right: 12px;
  transition: filter 0.2s ease;
}
.header__dropdown-label {
  font-family: Fredoka, sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  color: #51566c;
  transition:
    color 0.2s ease,
    font-weight 0.2s ease;
}
.header__auth {
  display: flex;
}
@media (max-width: 1024px) {
  .header__auth {
    display: none;
  }
}
.header__btn-auth {
  height: 40px;
  padding: 0 20px;
  border-radius: 100px;
  font-size: 14px;
}
.header__btn-auth.button--sm {
  height: 32px;
  padding: 0 14px;
}
.header__user {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .header__user {
    display: none;
  }
}
.header__user.menu {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 4px 12px;
}
.header__user.menu .header__profile {
  position: relative;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, #5ba8ff, #2b8eff, #06c 70%, #05a);
  box-shadow:
    inset 0 1px #ffffff59,
    inset 0 -1px 2px #0000001f;
  flex-shrink: 0;
  cursor: pointer;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}
.header__user.menu .header__profile:hover {
  background: linear-gradient(145deg, #6bb3ff, #3b9eff, #0072dd 70%, #0060bb);
  box-shadow:
    inset 0 1px #fff6,
    inset 0 -1px 2px #0000001a,
    0 2px 8px #0066cc59;
}
.header__user.menu .header__profile:active {
  background: linear-gradient(145deg, #06c, #05a, #048 70%, #036);
  box-shadow:
    inset 0 2px 4px #00000040,
    inset 0 0 0 1px #0000001a;
  transform: scale(0.96);
}
.header__user.menu .header__profile:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: url(/geo-block/images/icons/icon-person.png) center/22px no-repeat;
  filter: brightness(1.12) sepia(0.12) saturate(0.9);
  pointer-events: none;
}
.header__auth.menu {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
}
.header__auth-mob {
  display: none;
}
@media (max-width: 1024px) {
  .header__auth-mob {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.header__stats-mob {
  display: none;
}
@media (max-width: 1024px) {
  .header__stats-mob {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 32px;
    padding: 0 8px 0 4px;
    border-radius: 999px;
    background: #1a237e;
    box-shadow: inset 0 0 0 1px #6496ff40;
  }
}
.header__burger {
  display: none;
}
@media (max-width: 1024px) {
  .header__burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
  }
}
.header__burger-line {
  display: none;
}
@media (max-width: 1024px) {
  .header__burger-line {
    display: block;
    width: 18px;
    min-width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #e8dcc8;
    transition: background 0.2s ease;
  }
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: #0000008c;
}
.mobile-menu__content {
  position: relative;
  inset: 0;
  height: 100%;
  padding: 35px 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  padding: 19px 32px;
  top: 25px;
}
@media (max-width: 480px) {
  .mobile-menu__top {
    padding: 19px 16px;
    top: 30px;
    gap: 15px;
  }
}
.mobile-menu__top--home {
  top: 25px;
}
@media (max-width: 480px) {
  .mobile-menu__top--home {
    top: 30px;
  }
}
.mobile-menu__top--with-balance {
  justify-content: stretch;
  gap: 0;
}
.mobile-menu__top--with-balance .mobile-menu__top-start,
.mobile-menu__top--with-balance .mobile-menu__top-center,
.mobile-menu__top--with-balance .mobile-menu__top-end {
  flex: 1;
  display: flex;
  align-items: center;
}
.mobile-menu__top--with-balance .mobile-menu__top-start {
  justify-content: flex-start;
}
.mobile-menu__top--with-balance .mobile-menu__top-center {
  justify-content: center;
}
.mobile-menu__top--with-balance .mobile-menu__top-end {
  justify-content: flex-end;
}
.mobile-menu__top-start,
.mobile-menu__top-end {
  display: flex;
  align-items: center;
}
.mobile-menu__top-end {
  justify-content: flex-end;
}
.mobile-menu__close {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  background-image: url(/geo-block/images/icons/icon-burger-close.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition:
    background-color 0.15s ease,
    transform 0.15s ease;
}
.mobile-menu__close:active {
  background-color: #ffffff1f;
  transform: scale(0.92);
}
.mobile-menu__separator {
  width: 100%;
  max-width: 200px;
  height: 1px;
  margin: 0 auto;
  background: #fff1cb;
  flex-shrink: 0;
}
.mobile-menu__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (max-width: 480px) {
  .mobile-menu__nav--tablet {
    display: flex;
  }
}
.mobile-menu__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  border: none;
  background: none;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  transition:
    background-color 0.15s ease,
    transform 0.15s ease;
}
.mobile-menu__link .text-nav {
  color: inherit;
}
.mobile-menu__link--active .text-nav {
  font-weight: 500;
  color: #ffe100;
}
.mobile-menu__link:active {
  border-radius: 999px;
  background-color: #ffffff1f;
  transform: scale(0.98);
}
.mobile-menu__nav a {
  text-decoration: none;
}
.mobile-menu__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu__btn {
  width: 350px;
  border-radius: 999px;
  margin: 0 auto;
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}
.mobile-menu__btn:active {
  transform: scale(0.98);
}
.mobile-menu__lang {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
.disclaimer {
  position: absolute;
  width: 100%;
  height: 42px;
  top: 0;
  background: #220054cc;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  z-index: 6;
}
@media (max-width: 1024px) {
  .disclaimer {
    height: 25px;
    gap: 25px;
    padding: 5px;
  }
}
@media (max-width: 480px) {
  .disclaimer {
    height: fit-content;
    gap: 5px;
  }
}
.logo {
  flex: 0 0 auto;
  z-index: 2;
  cursor: pointer;
}
.logo--header {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}
@media (max-width: 1024px) {
  .logo--header {
    position: relative;
    left: auto;
    transform: none;
  }
}
@media (max-width: 480px) {
  .logo--drawer {
    margin-top: 1px;
  }
}
.logo__img {
  display: block;
  width: 200px;
  height: 43px;
  transition:
    opacity 0.2s ease,
    transform 0.15s ease;
}
@media (min-width: 1024px) {
  .logo__img {
    width: 290px;
    height: 62px;
  }
}
@media (max-width: 1024px) {
  .logo--sm .logo__img {
    width: 120px;
    height: 24px;
  }
}
.logo:hover .logo__img {
  opacity: 0.88;
}
.logo:active .logo__img {
  opacity: 0.78;
  transform: scale(0.98);
}
.balance__wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 40px;
  padding: 0 8px;
  border-radius: 999px;
  background: #1a237e;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px #6496ff40;
}
.balance--desktop .balance__wrap {
  margin-left: 8px;
}
.balance__inner {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  width: auto;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  height: auto;
}
.balance__icon {
  position: relative;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-image: url(/geo-block/images/shop/coin-balance.png);
}
.balance__value {
  padding-left: 10px;
  font-family: Fredoka, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #fff1cb;
  min-width: 2.5em;
}
.balance__add {
  position: relative;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 6px;
  border: none;
  background: linear-gradient(145deg, #5ba8ff, #2b8eff, #06c 70%, #05a);
  box-shadow:
    inset 0 1px #ffffff59,
    inset 0 -1px 2px #0000001f;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}
.balance__add:hover {
  background: linear-gradient(145deg, #6bb3ff, #3b9eff, #0072dd 70%, #0060bb);
  box-shadow:
    inset 0 1px #fff6,
    inset 0 -1px 2px #0000001a,
    0 2px 8px #0066cc59;
}
.balance__add:active {
  background: linear-gradient(145deg, #06c, #05a, #048 70%, #036);
  box-shadow:
    inset 0 2px 4px #00000040,
    inset 0 0 0 1px #0000001a;
  transform: scale(0.96);
}
.balance__add-img {
  width: 12px;
  height: 12px;
  filter: brightness(1.1);
  background-image: url(/geo-block/images/icons/plus-white.svg);
  background-size: contain;
  background-position: center;
  display: block;
}
.balance--mobile {
  display: flex;
  align-items: center;
  gap: 12px;
}
.balance--drawer {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
  gap: 12px;
}
.footer {
  width: 100%;
  background-color: #000338;
  padding: 32px 0;
}
@media (max-width: 480px) {
  .footer {
    padding: 16px 0;
  }
}
.footer__content {
  max-width: 1200px;
  margin: 0 auto;
  font-family: Fredoka, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (max-width: 480px) {
  .footer__content {
    max-width: 390px;
    gap: 16px;
    padding: 0 16px;
  }
}
.footer__logo {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}
.footer__columns {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 16px 0;
  border-bottom: 1px solid #131757;
}
@media (max-width: 480px) {
  .footer__columns {
    gap: 24px;
    padding: 16px 0;
    flex-direction: column;
  }
}
.footer__column {
  flex: 0 0 auto;
  min-width: 0;
}
@media (min-width: 480px) {
  .footer__column:nth-child(1) {
    width: 180px;
  }
  .footer__column:nth-child(2) {
    width: 180px;
  }
  .footer__column:nth-child(3) {
    width: 190px;
  }
  .footer__column:nth-child(4) {
    width: 122px;
  }
  .footer__column.footer__column--double {
    width: auto;
    min-width: 120px;
  }
}
.footer__column--double {
  display: none;
}
@media (max-width: 480px) {
  .footer__column--double {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .footer__column {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
  }
  .footer__column--mob {
    display: none;
  }
}
@media (min-width: 480px) {
  .footer__column--mob {
    display: none;
  }
}
@media (max-width: 480px) {
  .footer__column-double {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .footer__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    align-items: start;
  }
  .footer__column:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .footer__column:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .footer__column:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
  .footer__column--double {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
.footer__title {
  font-family: Fredoka, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
  margin-top: 0;
}
@media (max-width: 480px) {
  .footer__title {
    font-size: 12px;
    line-height: normal;
  }
}
.footer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.footer__item {
  display: block;
  text-align: center;
  font-family: Fredoka, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff1cb;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}
.footer__item:hover {
  color: #ffa100;
}
.footer__item:active {
  opacity: 0.8;
}
@media (max-width: 480px) {
  .footer__item {
    font-size: 12px;
    text-wrap: initial;
  }
}
.footer__hyper-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18.75px;
  margin-top: 12px;
}
@media (max-width: 480px) {
  .footer__hyper-links {
    gap: 12px;
    margin-top: 12px;
  }
}
.footer__hyper-link {
  width: 37.5px;
  height: 37.5px;
  border: 1.6px solid #00faff;
  border-radius: 50%;
  background-image:
    url(/geo-block/images/icons/icon-youtube.svg),
    linear-gradient(170.99deg, #0096e5 6.06%, #003097 92.4%);
  background-repeat: no-repeat;
  background-position:
    50% 50%,
    0 0;
  background-size:
    18.75px 18.75px,
    cover;
  display: block;
  flex-shrink: 0;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  transform-origin: center center;
}
.footer__hyper-link:hover {
  opacity: 0.9;
  transform: scale(1.08);
}
.footer__hyper-link:active {
  opacity: 0.8;
  transform: scale(0.96);
}
.footer__hyper-link--youtube {
  background-image:
    url(/geo-block/images/icons/icon-youtube.svg),
    linear-gradient(170.99deg, #0096e5 6.06%, #003097 92.4%);
  background-size:
    18.75px 18.75px,
    cover;
}
.footer__hyper-link--instagram {
  background-image:
    url(/geo-block/images/icons/icon-instagram.svg),
    linear-gradient(170.99deg, #0096e5 6.06%, #003097 92.4%);
  background-size:
    18.75px 18.75px,
    cover;
}
@media (max-width: 480px) {
  .footer__hyper-link {
    width: 24px;
    height: 24px;
    border-width: 1px;
  }
  .footer__hyper-link--youtube,
  .footer__hyper-link--instagram {
    background-size:
      12px 12px,
      cover;
  }
}
.footer__age-badge {
  width: 37.5px;
  height: 37.5px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .footer__age-badge {
    width: 24px;
    height: 24px;
  }
}
.footer__disclaimer {
  font-family: Fredoka, sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  color: #fff1cb;
  margin: 24px 0 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 480px) {
  .footer__disclaimer {
    margin-top: 16px;
    padding: 0;
  }
}
.footer__copy {
  font-family: Fredoka, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #fff1cb;
  letter-spacing: -0.3125px;
  text-shadow:
    0 1px 2px rgba(0, 60, 0, 0.2),
    0 1px 2px #003c00;
  margin: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 480px) {
  .footer__copy {
    font-size: 10px;
  }
}
.global-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #040850;
  overflow: hidden;
}
.global-loader__content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.global-loader__logo {
  width: 133px;
  height: auto;
  animation: pulse 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(133, 45, 246, 0.5));
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.07);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 0.9;
  }
}
.home__section {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.home__section--in-view {
  opacity: 1;
  transform: translateY(0);
}
.home__tab-content {
  z-index: 0;
  width: 100%;
  background-color: #040850;
  padding: 32px 24px 48px;
  position: relative;
  overflow: hidden;
}
.home__tab-content .home__tab-deco {
  position: absolute;
  top: 0;
  height: calc(100% - 48px);
  width: 120px;
  background-image: url(/geo-block/images/decorations.png);
  background-repeat: no-repeat;
  background-size: 120px auto;
  background-position: top center;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.home__tab-content .home__tab-deco--left {
  left: 0;
  background-position: left top;
  transform: scaleX(-1) translate(var(--parallax-x, 0));
}
.home__tab-content .home__tab-deco--right {
  right: 0;
  background-position: right top;
  transform: translate(var(--parallax-x, 0));
}
@media (max-width: 480px) {
  .home__tab-content .home__tab-deco {
    width: 50px;
    background-size: 50px auto;
  }
}
@media (max-width: 1024px) {
  .home__tab-content {
    padding: 24px 16px 40px;
  }
  .home__tab-content .home__tab-deco {
    height: calc(100% - 40px);
  }
}
@media (max-width: 480px) {
  .home__tab-content {
    padding: 100px 16px 24px;
  }
  .home__tab-content .home__tab-deco {
    top: 0;
    height: 320px;
    background-position: center top;
  }
  .home__tab-content .home__tab-deco--left {
    background-position: left top;
    transform: scaleX(-1) translateY(var(--parallax-y, 0));
  }
  .home__tab-content .home__tab-deco--right {
    background-position: right top;
    transform: translateY(var(--parallax-y, 0));
  }
}
.home__tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.home__tabs.menu {
  min-height: 64px;
  padding: 12px;
}
@media (max-width: 480px) {
  .home__tabs.menu {
    min-height: 48px;
  }
}
.home__tabs .menu__link {
  height: 40px;
  padding-inline: 8px;
}
@media (max-width: 480px) {
  .home__tabs .menu__link {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .home__tabs {
    width: 100%;
    margin-bottom: 24px;
  }
}
.home__outlet-wrap .all-games__games .game-card,
.home__outlet-wrap .games-collection__games .game-card {
  transform: translateY(36px);
  transition: transform 1.5s ease-out;
}
.home__outlet-wrap--in-view .all-games__games .game-card,
.home__outlet-wrap--in-view .games-collection__games .game-card {
  transform: translateY(0);
}
.home__outlet-wrap--in-view .all-games__games .game-card:nth-child(-n + 2),
.home__outlet-wrap--in-view
  .games-collection__games
  .game-card:nth-child(-n + 2) {
  transition-delay: 0s;
}
.home__outlet-wrap--in-view
  .all-games__games
  .game-card:nth-child(n + 3):nth-child(-n + 4),
.home__outlet-wrap--in-view
  .games-collection__games
  .game-card:nth-child(n + 3):nth-child(-n + 4) {
  transition-delay: 0.42s;
}
.home__outlet-wrap--in-view
  .all-games__games
  .game-card:nth-child(n + 5):nth-child(-n + 6),
.home__outlet-wrap--in-view
  .games-collection__games
  .game-card:nth-child(n + 5):nth-child(-n + 6) {
  transition-delay: 0.84s;
}
.home__outlet-wrap--in-view
  .all-games__games
  .game-card:nth-child(n + 7):nth-child(-n + 8),
.home__outlet-wrap--in-view
  .games-collection__games
  .game-card:nth-child(n + 7):nth-child(-n + 8) {
  transition-delay: 1.26s;
}
.home__outlet-wrap--in-view
  .all-games__games
  .game-card:nth-child(n + 9):nth-child(-n + 10),
.home__outlet-wrap--in-view
  .games-collection__games
  .game-card:nth-child(n + 9):nth-child(-n + 10) {
  transition-delay: 1.68s;
}
.home__outlet-wrap--in-view
  .all-games__games
  .game-card:nth-child(n + 11):nth-child(-n + 12),
.home__outlet-wrap--in-view
  .games-collection__games
  .game-card:nth-child(n + 11):nth-child(-n + 12) {
  transition-delay: 2.1s;
}
@media (min-width: 768px) {
  .home__outlet-wrap--in-view .all-games__games .game-card:nth-child(-n + 3),
  .home__outlet-wrap--in-view
    .games-collection__games
    .game-card:nth-child(-n + 3) {
    transition-delay: 0s;
  }
  .home__outlet-wrap--in-view
    .all-games__games
    .game-card:nth-child(n + 4):nth-child(-n + 6),
  .home__outlet-wrap--in-view
    .games-collection__games
    .game-card:nth-child(n + 4):nth-child(-n + 6) {
    transition-delay: 0.42s;
  }
  .home__outlet-wrap--in-view
    .all-games__games
    .game-card:nth-child(n + 7):nth-child(-n + 9),
  .home__outlet-wrap--in-view
    .games-collection__games
    .game-card:nth-child(n + 7):nth-child(-n + 9) {
    transition-delay: 0.84s;
  }
  .home__outlet-wrap--in-view
    .all-games__games
    .game-card:nth-child(n + 10):nth-child(-n + 12),
  .home__outlet-wrap--in-view
    .games-collection__games
    .game-card:nth-child(n + 10):nth-child(-n + 12) {
    transition-delay: 1.26s;
  }
  .home__outlet-wrap--in-view
    .all-games__games
    .game-card:nth-child(n + 13):nth-child(-n + 15),
  .home__outlet-wrap--in-view
    .games-collection__games
    .game-card:nth-child(n + 13):nth-child(-n + 15) {
    transition-delay: 1.68s;
  }
}
@media (min-width: 1024px) {
  .home__outlet-wrap--in-view .all-games__games .game-card:nth-child(-n + 5),
  .home__outlet-wrap--in-view
    .games-collection__games
    .game-card:nth-child(-n + 5) {
    transition-delay: 0s;
  }
  .home__outlet-wrap--in-view
    .all-games__games
    .game-card:nth-child(n + 6):nth-child(-n + 10),
  .home__outlet-wrap--in-view
    .games-collection__games
    .game-card:nth-child(n + 6):nth-child(-n + 10) {
    transition-delay: 0.42s;
  }
  .home__outlet-wrap--in-view
    .all-games__games
    .game-card:nth-child(n + 11):nth-child(-n + 15),
  .home__outlet-wrap--in-view
    .games-collection__games
    .game-card:nth-child(n + 11):nth-child(-n + 15) {
    transition-delay: 0.84s;
  }
  .home__outlet-wrap--in-view
    .all-games__games
    .game-card:nth-child(n + 16):nth-child(-n + 20),
  .home__outlet-wrap--in-view
    .games-collection__games
    .game-card:nth-child(n + 16):nth-child(-n + 20) {
    transition-delay: 1.26s;
  }
  .home__outlet-wrap--in-view
    .all-games__games
    .game-card:nth-child(n + 21):nth-child(-n + 25),
  .home__outlet-wrap--in-view
    .games-collection__games
    .game-card:nth-child(n + 21):nth-child(-n + 25) {
    transition-delay: 1.68s;
  }
  .home__outlet-wrap--in-view
    .all-games__games
    .game-card:nth-child(n + 26):nth-child(-n + 30),
  .home__outlet-wrap--in-view
    .games-collection__games
    .game-card:nth-child(n + 26):nth-child(-n + 30) {
    transition-delay: 2.1s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home__outlet-wrap .all-games__games .game-card,
  .home__outlet-wrap .games-collection__games .game-card {
    transform: none;
    transition: none;
  }
}
.join-us {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  width: 100%;
  height: 550px;
  padding: 96px 120px 24px;
  margin-bottom: 120px;
  margin-top: 80px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .join-us {
    padding: 64px 48px 24px;
  }
}
@media (max-width: 768px) {
  .join-us {
    padding: 48px 24px 24px;
  }
}
@media (max-width: 480px) {
  .join-us {
    height: 310px;
    padding: 24px 16px 0;
    align-items: flex-start;
    justify-content: center;
  }
}
.join-us__bg {
  position: absolute;
  inset: -2px;
  z-index: 0;
  background-image:
    linear-gradient(0deg, #00055500 75%, #040850 97%),
    linear-gradient(180deg, #00055500 75%, #040850 97%),
    url(/geo-block/images/join-bg.png);
  background-size:
    100% 170px,
    100% 170px,
    cover;
  background-position:
    center top,
    center bottom,
    center center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .join-us__bg {
    background-image:
      linear-gradient(0deg, #00055500 75%, #040850 97%),
      linear-gradient(180deg, #00055500 75%, #040850 97%),
      url(/geo-block/images/join-bg-mob.png);
  }
}
.join-us__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 900px;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}
.join-us__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.join-us__title,
.join-us__subtitle,
.join-us__button {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.join-us--in-view .join-us__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
.join-us--in-view .join-us__subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}
.join-us--in-view .join-us__button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.75s;
}
.join-us__title {
  margin: 0;
  font-family: Fredoka, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  color: transparent;
}
@media (max-width: 480px) {
  .join-us__title {
    font-size: 24px;
    font-weight: 700;
  }
}
.join-us__subtitle {
  margin: 0;
  font-family: Fredoka, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: transparent;
  text-transform: uppercase;
  padding-bottom: 24px;
}
@media (max-width: 480px) {
  .join-us__subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    padding-bottom: 0;
  }
}
.join-us__button.button {
  margin-top: 12px;
  min-width: 280px;
  width: 280px;
  height: 64px;
  font-size: 32px;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .join-us__button.button {
    min-width: 164px;
    width: 164px;
    height: 40px;
    font-size: 16px;
    margin-top: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .join-us__title,
  .join-us__subtitle,
  .join-us__button {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@keyframes benefits-fade-in {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes benefits-fade-in-opacity {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.benefits__title {
  animation: benefits-fade-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0s;
}
.benefits__card {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.benefits--in-view .benefits__card {
  opacity: 1;
  transform: translateY(0);
}
.benefits--in-view .benefits__card:nth-child(1) {
  transition-delay: 0s;
}
.benefits--in-view .benefits__card:nth-child(2) {
  transition-delay: 0.25s;
}
.benefits--in-view .benefits__card:nth-child(3) {
  transition-delay: 0.5s;
}
.benefits--in-view .benefits__card:nth-child(4) {
  transition-delay: 0.75s;
}
.benefits__illustration-main,
.benefits__illustration-cards,
.benefits__illustration-tokens {
  animation: benefits-fade-in-opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.benefits__illustration-main {
  animation-delay: 0.55s;
}
.benefits__illustration-cards {
  animation-delay: 0.75s;
}
.benefits__illustration-tokens {
  animation-delay: 0.95s;
}
@media (prefers-reduced-motion: reduce) {
  .benefits__title,
  .benefits__illustration-main,
  .benefits__illustration-cards,
  .benefits__illustration-tokens {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .benefits__card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.benefits {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0;
  gap: 24px;
  font-family: Fredoka, sans-serif;
  z-index: 2;
  overflow: visible;
}
.benefits .benefits__deco {
  position: absolute;
  top: 200px;
  height: calc(100% - 48px);
  width: 120px;
  background-image: url(/geo-block/images/decorations.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.benefits .benefits__deco--left {
  left: calc(-50vw + 49.5%);
  transform: scaleX(-1) translateY(var(--parallax-y, 0));
}
.benefits .benefits__deco--right {
  right: calc(-50vw + 49.5%);
  transform: translateY(var(--parallax-y, 0));
}
@media (max-width: 768px) {
  .benefits {
    padding: 24px 16px;
    gap: 24px;
  }
  .benefits .benefits__deco {
    width: 96px;
    max-height: 560px;
  }
  .benefits .benefits__deco--left {
    left: -20px;
    right: auto;
  }
  .benefits .benefits__deco--right {
    right: -20px;
    left: auto;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .benefits .benefits__deco {
    max-height: 320px;
  }
  .benefits .benefits__deco--left {
    left: -26px;
    right: auto;
  }
  .benefits .benefits__deco--right {
    right: -26px;
    left: auto;
  }
}
.benefits__title {
  margin: 0;
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 3px 5.5px rgba(0, 0, 0, 0.25);
  z-index: 1;
}
@media (max-width: 768px) {
  .benefits__title {
    font-size: 24px;
    font-weight: 700;
  }
}
.benefits__body {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 24px;
  gap: clamp(24px, 4vw, 40px);
  width: 100%;
  max-width: 1440px;
  min-height: 490px;
  z-index: 1;
  overflow: visible;
}
@media (max-width: 1024px) {
  .benefits__body {
    padding: 0 16px 24px;
    flex-direction: column;
    align-items: center;
    min-height: 0;
    gap: 48px;
  }
}
.benefits__illustration {
  position: relative;
  flex: 0 1 50%;
  min-width: 0;
  max-width: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.benefits__illustration:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 75%;
  transform: translate(-50%, -45%);
  width: 140%;
  height: 100%;
  max-width: 900px;
  max-height: 440px;
  background: radial-gradient(
    ellipse 65% 50% at 50% 50%,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(200, 220, 255, 0.38) 20%,
    rgba(150, 180, 255, 0.2) 45%,
    rgba(100, 150, 255, 0.06) 65%,
    rgba(80, 130, 255, 0.02) 80%,
    transparent 100%
  );
  mix-blend-mode: plus-lighter;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .benefits__illustration:before {
    top: 55%;
  }
}
.benefits__illustration:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 75%;
  transform: translate(-50%, -42%);
  width: 100%;
  height: 65%;
  max-width: 620px;
  max-height: 320px;
  background: radial-gradient(
    ellipse 65% 48% at 50% 50%,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(180, 200, 255, 0.2) 30%,
    rgba(120, 160, 255, 0.08) 55%,
    rgba(100, 140, 255, 0.02) 75%,
    transparent 100%
  );
  mix-blend-mode: plus-lighter;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .benefits__illustration:after {
    top: 55%;
  }
}
@media (max-width: 768px) {
  .benefits__illustration {
    flex: none;
    width: 361px;
    order: 1;
  }
}
.benefits__illustration-fade {
  display: none;
}
@media (min-width: 768px) {
  .benefits__illustration-fade {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 118px;
    background: linear-gradient(to bottom, transparent 0%, #040850 100%);
    pointer-events: none;
    z-index: 3;
  }
}
.benefits__illustration-main {
  position: relative;
  z-index: 2;
  max-height: 560px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}
@media (max-width: 768px) {
  .benefits__illustration-main {
    max-height: 281px;
    max-width: 100%;
    object-position: center;
  }
}
.benefits__illustration-cards {
  position: absolute;
  right: 185px;
  bottom: -45px;
  width: 180px;
  max-width: 242px;
  height: auto;
  object-fit: contain;
  object-position: bottom right;
  z-index: 2;
}
@media (max-width: 768px) {
  .benefits__illustration-cards {
    right: auto;
    left: 160px;
    bottom: 80px;
    width: 28%;
    max-width: 96px;
    z-index: 2;
  }
}
@media (max-width: 1024px) {
  .benefits__illustration-cards {
    right: auto;
    left: 160px;
    bottom: -24px;
    width: 28%;
    max-width: 96px;
  }
}
.benefits__illustration-tokens {
  position: absolute;
  left: 65px;
  bottom: -35px;
  width: 205px;
  max-width: 242px;
  height: auto;
  object-fit: contain;
  object-position: left bottom;
  z-index: 3;
}
@media (max-width: 768px) {
  .benefits__illustration-tokens {
    left: 125px;
    bottom: 85px;
    transform: translate(-50%);
    width: 32%;
    max-width: 120px;
    z-index: 2;
  }
}
@media (max-width: 768px) {
  .benefits__illustration-tokens {
    left: 110px;
    bottom: -25px;
    transform: translate(-50%);
    width: 32%;
    max-width: 120px;
  }
}
.benefits__cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  flex: 1 1 300px;
  min-width: 0;
  max-width: 650px;
}
@media (min-width: 1024px) {
  .benefits__cards {
    max-width: 450px;
  }
  .benefits__cards .benefits__card:nth-child(odd) {
    margin-right: min(78px, 8vw);
  }
  .benefits__cards .benefits__card:nth-child(2n) {
    margin-left: min(78px, 8vw);
  }
}
@media (max-width: 1024px) {
  .benefits__cards {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .benefits__cards {
    flex: none;
    width: 100%;
    max-width: 361px;
    gap: 16px;
    order: 2;
  }
}
.benefits__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  min-height: 80px;
  border: 1px solid #0270c7;
  border-radius: 18px;
  background: linear-gradient(178.38deg, #0096e5 6.06%, #003097 92.4%);
  box-shadow: 0 6px 7.8px #1121529c;
}
@media (max-width: 768px) {
  .benefits__card {
    padding: 8px 16px;
    min-height: 64px;
    gap: 16px;
  }
}
.benefits__card-icon-wrap {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 320px;
}
@media (max-width: 768px) {
  .benefits__card-icon-wrap {
    width: 40px;
    height: 40px;
    perspective: 240px;
  }
}
.benefits__card-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotateY(0);
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
  backface-visibility: visible;
}
.benefits__card:hover .benefits__card-icon {
  transform: rotateY(360deg);
}
.benefits__card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
@media (max-width: 768px) {
  .benefits__card-text {
    gap: 2px;
  }
}
.benefits__card-title {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .benefits__card-title {
    font-size: 16px;
    line-height: 24px;
  }
}
.benefits__card-desc {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff1cb;
}
@media (max-width: 768px) {
  .benefits__card-desc {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -0.3125px;
  }
}
.benefits__learn-more {
  margin-top: 0;
  text-decoration: none;
  color: #3cd7ff;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  border-bottom: 1px solid #3cd7ff;
}
.about-us {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 640px;
  padding: 64px 220px;
}
@media (max-width: 1024px) {
  .about-us {
    padding: 48px 24px 64px;
  }
}
@media (max-width: 480px) {
  .about-us {
    padding: 40px 16px 56px;
    margin-bottom: 48px;
    min-height: auto;
  }
}
.about-us__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.about-us__illus {
  position: absolute;
  z-index: 0;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-us--in-view .about-us__illus {
  opacity: 1;
}
@media (max-width: 1024px) {
  .about-us__illus {
    display: none;
  }
}
.about-us__illus--left {
  width: 250px;
  bottom: 64px;
  left: 0;
  transform: translate(-80px);
  background-image: url(/geo-block/images/about-left.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% auto;
}
.about-us--in-view .about-us__illus--left {
  transform: translate(0);
  transition-delay: 0.7s;
}
.about-us__illus--right {
  width: 500px;
  bottom: 34px;
  right: 0;
  transform: translate(80px);
  background-image: url(/geo-block/images/about-right.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100% auto;
}
.about-us--in-view .about-us__illus--right {
  transform: translate(0);
  transition-delay: 0.85s;
}
.about-us__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 900px;
}
@media (max-width: 480px) {
  .about-us__container {
    gap: 24px;
    max-width: 100%;
  }
}
.about-us__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-us--in-view .about-us__top {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.about-us__section-label {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  .about-us__section-label {
    font-size: 14px;
  }
}
.about-us__main-title {
  margin: 0;
  text-align: center;
  line-height: 1.1;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .about-us__main-title {
    line-height: 1.15;
    background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.about-us__text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 840px;
}
.about-us__info {
  margin: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-us--in-view .about-us__info {
  opacity: 1;
  transform: translateY(0);
}
.about-us--in-view .about-us__info:nth-child(1) {
  transition-delay: 0.3s;
}
.about-us--in-view .about-us__info:nth-child(2) {
  transition-delay: 0.5s;
}
.faq {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px;
}
@media (max-width: 1024px) {
  .faq {
    padding: 40px 24px 48px;
  }
}
@media (max-width: 480px) {
  .faq {
    padding: 32px 16px;
  }
}
.faq__title {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .faq__title {
    margin-bottom: 24px;
  }
}
.faq__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .faq__list {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}
@media (max-width: 480px) {
  .faq__list {
    gap: 12px;
    max-width: 100%;
  }
}
.faq__item {
  padding: 0;
  background: transparent;
  overflow: hidden;
  gap: 0;
  border-radius: 18px;
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq--in-view .faq__item {
  opacity: 1;
  transform: translateY(0);
}
.faq--in-view .faq__item:nth-child(1) {
  transition-delay: 0.15s;
}
.faq--in-view .faq__item:nth-child(2) {
  transition-delay: 0.3s;
}
.faq--in-view .faq__item:nth-child(3) {
  transition-delay: 0.45s;
}
.faq--in-view .faq__item:nth-child(4) {
  transition-delay: 0.6s;
}
.faq--in-view .faq__item:nth-child(5) {
  transition-delay: 0.75s;
}
.faq--in-view .faq__item:nth-child(6) {
  transition-delay: 0.9s;
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  min-height: 56px;
  background: linear-gradient(180deg, #0096e5 6.06%, #003097 92.4%);
  border: none;
  border-radius: 18px;
  cursor: pointer;
  text-align: left;
  transition:
    filter 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.faq__question:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 16px #00399759;
}
.faq__question:active {
  background: linear-gradient(180deg, #00a6ff 6.06%, #003097 92.4%);
}
@media (max-width: 480px) {
  .faq__question {
    padding: 16px 20px;
    min-height: 52px;
  }
}
.faq__question-text {
  flex: 1;
  color: #fd0;
  text-align: left;
}
.faq__question-icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid #ffdd00;
  border-bottom: 2px solid #ffdd00;
  transform: rotate(45deg);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__question-icon--open {
  transform: rotate(-135deg);
}
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  min-height: 0;
  overflow: hidden;
  transition:
    grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    margin-top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.2s 0s;
  position: relative;
  z-index: 0;
  margin-top: 0;
}
.faq__answer--open {
  grid-template-rows: 1fr;
  margin-top: -18px;
  transition-delay: 0.2s 0s;
}
.faq__answer-inner {
  min-height: 0;
  overflow: hidden;
  background-color: #3b97e3;
  border-radius: 0 0 18px 18px;
  padding: 0 24px;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__answer--open .faq__answer-inner {
  grid-template-rows: 1fr;
  transition-delay: 0s;
}
@media (max-width: 480px) {
  .faq__answer-inner {
    padding: 0 20px;
  }
}
.faq__answer-content {
  min-height: 0;
  overflow: hidden;
}
.faq__answer-content p {
  margin: 0;
  padding: 34px 0 20px;
  color: #fff1cb;
}
@media (max-width: 480px) {
  .faq__answer-content p {
    padding: 30px 0 16px;
  }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in-up 0.5s ease-out forwards;
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.how-it-works {
  position: relative;
  overflow: visible;
}
.how-it-works:after {
  content: "";
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(836px, 85vw);
  height: min(440px, 53vw);
  border-radius: 50%;
  background: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    rgb(60, 215, 255) 0%,
    rgb(60, 215, 255) 30%,
    rgba(60, 215, 255, 0.12) 100%,
    transparent 65%
  );
  filter: blur(60px);
  opacity: 1;
  mix-blend-mode: lighten;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 1024px) {
  .how-it-works:after {
    top: 500px;
    width: 100%;
    height: 240px;
  }
}
@media (max-width: 480px) {
  .how-it-works:after {
    top: 400px;
    width: 100%;
    height: 180px;
  }
}
.how-it-works__deco-light {
  position: absolute;
  top: -75%;
  width: 45%;
  max-width: 45%;
  height: clamp(500px, 85vh, 995px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: screen;
  filter: brightness(1.15) contrast(0.92);
}
.how-it-works__deco-light--left {
  left: calc(-50vw + 50%);
  background-image: url(/geo-block/images/light.svg);
  background-position: top left;
}
.how-it-works__deco-light--right {
  right: calc(100% - 100vw);
  background-image: url(/geo-block/images/light-right.svg);
  background-position: top right;
}
@media (max-width: 480px) {
  .how-it-works__deco-light {
    height: clamp(500px, 60vh, 995px);
    top: -40px;
  }
}
.how-it-works__bg {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image: url(/geo-block/images/how-it-work.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 820px;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .how-it-works__bg {
    background-size: 720px;
    background-position: center 220px;
  }
}
@media (max-width: 480px) {
  .how-it-works__bg {
    display: block;
    background-image: url(/geo-block/images/how-it-work-mob.png);
    background-size: 400px;
    background-position: center 210px;
  }
}
.how-it-works__inner {
  position: relative;
  z-index: 3;
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 0;
}
@media (max-width: 1280px) {
  .how-it-works__inner {
    padding: 48px 24px;
  }
}
@media (max-width: 480px) {
  .how-it-works__inner {
    padding: 24px 16px 32px;
  }
}
.how-it-works__heading {
  text-align: center;
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .how-it-works__heading {
    margin-bottom: 8px;
  }
}
.how-it-works__subtext {
  text-align: center;
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .how-it-works__subtext {
    margin-bottom: 8px;
  }
}
.how-it-works__subtext.subtitle {
  text-align: center;
}
.how-it-works__disclaimer {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
@media (max-width: 480px) {
  .how-it-works__disclaimer {
    margin-bottom: 0;
    padding: 0 8px;
  }
}
.how-it-works__illus-mob {
  display: none;
}
@media (max-width: 1024px) {
  .how-it-works__illus-mob {
    display: block;
    min-height: 400px;
    width: 100%;
    pointer-events: none;
  }
}
@media (max-width: 480px) {
  .how-it-works__illus-mob {
    min-height: 220px;
  }
}
.how-it-works__cards {
  display: flex;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 140px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .how-it-works__cards {
    flex-direction: row;
    flex-wrap: nowrap;
    margin-top: 48px;
    gap: 16px;
    width: 100%;
  }
  .how-it-works__cards .how-it-works__card {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }
}
@media (max-width: 480px) {
  .how-it-works__cards {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 120px;
    width: 100%;
  }
  .how-it-works__cards .how-it-works__card {
    flex: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}
.how-it-works__card {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
@media (max-width: 480px) {
  .how-it-works__card.card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    overflow: visible;
  }
}
.how-it-works__card--left {
  max-width: 384px;
}
@media (max-width: 480px) {
  .how-it-works__card--left {
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }
}
.how-it-works__card--right {
  max-width: 284px;
}
@media (max-width: 480px) {
  .how-it-works__card--right {
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }
}
.how-it-works__card-header {
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .how-it-works__card-header {
    margin-bottom: 16px;
  }
}
.how-it-works__card-label {
  text-align: center;
  color: #ffe100;
}
.how-it-works__card-body {
  flex: 1;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .how-it-works__card-body {
    margin-bottom: 16px;
  }
}
.how-it-works__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 480px) {
  .how-it-works__list {
    gap: 8px;
  }
}
.how-it-works__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.how-it-works__list-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-image: url(/geo-block/images/icons/check-1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.how-it-works__list-text {
  text-align: left;
  flex: 1;
}
.how-it-works__card-text {
  text-align: left;
  margin: 0;
}
.how-it-works__button {
  min-width: 140px;
}
.action-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 96px 0;
}
@media (max-width: 1280px) {
  .action-section {
    padding: 48px 24px;
  }
}
@media (max-width: 480px) {
  .action-section {
    padding: 32px 16px;
  }
}
.action-section__content {
  width: 100%;
  max-width: 1200px;
}
@media (max-width: 1024px) {
  .action-section__content {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .action-section__content {
    padding: 0;
  }
}
.action-section__cards {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .action-section__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: calc(100% + 48px);
    margin-inline: -24px;
  }
  .action-section__cards .action-section__card--slot {
    grid-column: 1/-1;
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .action-section__cards {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    width: 100%;
    margin-inline: 0;
    gap: 16px;
  }
  .action-section__cards .action-section__card--slot {
    grid-column: unset;
  }
}
.action-section__card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex: 1;
  min-width: 0;
  max-width: 420px;
  min-height: 214px;
  border-radius: 32px;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position:
    left bottom,
    left bottom,
    0 0;
  box-shadow: 0 4px 24px #00000040;
  cursor: pointer;
  overflow: hidden;
  z-index: 2;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1.2s ease-out,
    transform 1.2s ease-out,
    box-shadow 0.25s ease;
}
.action-section__card--slot {
  background-image:
    url(/geo-block/images/action/slot-up.png),
    radial-gradient(
      ellipse 120% 120% at 15% 85%,
      rgba(60, 215, 255, 0.5) 0%,
      rgba(60, 215, 255, 0.08) 45%,
      transparent 70%
    ),
    linear-gradient(170.99deg, #0096e5 6.06%, #003097 92.4%);
  background-size:
    230px auto,
    260px 260px,
    auto;
}
@media (max-width: 480px) {
  .action-section__card--slot {
    background-size:
      175px auto,
      260px 260px,
      auto;
  }
}
.action-section__card--play {
  background-image:
    url(/geo-block/images/action/play-up.png),
    radial-gradient(
      ellipse 120% 120% at 15% 85%,
      rgba(60, 215, 255, 0.5) 0%,
      rgba(60, 215, 255, 0.08) 45%,
      transparent 70%
    ),
    linear-gradient(170.99deg, #0096e5 6.06%, #003097 92.4%);
  background-size:
    210px auto,
    260px 260px,
    auto;
}
@media (max-width: 480px) {
  .action-section__card--play {
    background-size:
      155px auto,
      260px 260px,
      auto;
  }
}
.action-section__card--reward {
  background-image:
    url(/geo-block/images/action/reward-up.png),
    radial-gradient(
      ellipse 120% 120% at 15% 85%,
      rgba(60, 215, 255, 0.5) 0%,
      rgba(60, 215, 255, 0.08) 45%,
      transparent 70%
    ),
    linear-gradient(170.99deg, #0096e5 6.06%, #003097 92.4%);
  background-size:
    320px auto,
    260px 260px,
    auto;
}
@media (max-width: 480px) {
  .action-section__card--reward {
    background-size:
      220px auto,
      260px 260px,
      auto;
  }
}
.action-section__card:hover {
  box-shadow: 0 8px 16px #00d7ff59;
  transform: translateY(-2px);
}
@media (max-width: 1024px) {
  .action-section__card {
    max-width: 100%;
    width: 100%;
    padding: 0;
    border-radius: 32px;
  }
}
@media (max-width: 480px) {
  .action-section__card {
    min-height: 164px;
    padding: 0;
    border-radius: 24px;
  }
  .action-section__card--slot {
    background-image:
      url(/geo-block/images/action/slot.png),
      radial-gradient(
        ellipse 120% 120% at 15% 85%,
        rgba(60, 215, 255, 0.5) 0%,
        rgba(60, 215, 255, 0.08) 45%,
        transparent 70%
      ),
      linear-gradient(170.99deg, #0096e5 6.06%, #003097 92.4%);
  }
  .action-section__card--play {
    background-image:
      url(/geo-block/images/action/play.png),
      radial-gradient(
        ellipse 120% 120% at 15% 85%,
        rgba(60, 215, 255, 0.5) 0%,
        rgba(60, 215, 255, 0.08) 45%,
        transparent 70%
      ),
      linear-gradient(170.99deg, #0096e5 6.06%, #003097 92.4%);
  }
  .action-section__card--reward {
    background-image:
      url(/geo-block/images/action/reward.png),
      radial-gradient(
        ellipse 120% 120% at 15% 85%,
        rgba(60, 215, 255, 0.5) 0%,
        rgba(60, 215, 255, 0.08) 45%,
        transparent 70%
      ),
      linear-gradient(170.99deg, #0096e5 6.06%, #003097 92.4%);
  }
}
.action-section--in-view .action-section__card {
  opacity: 1;
  transform: translateY(0);
}
.action-section--in-view .action-section__card:nth-child(1) {
  transition-delay: 0s;
}
.action-section--in-view .action-section__card:nth-child(2) {
  transition-delay: 0.3s;
}
.action-section--in-view .action-section__card:nth-child(3) {
  transition-delay: 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .action-section__card {
    opacity: 1;
    transform: none;
    transition: box-shadow 0.25s ease;
  }
}
.action-section__card-figure {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.action-section__card-body {
  flex: 1;
  min-width: 0;
  max-width: 200px;
  margin-left: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 24px 20px 20px;
  gap: 6px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .action-section__card-body {
    padding: 16px 20px 16px 16px;
  }
}
@media (max-width: 480px) {
  .action-section__card-body {
    padding: 12px 16px 12px 12px;
    gap: 4px;
  }
}
.action-section__card-title {
  margin-top: 16px;
}
.action-section__card-subtitle {
  margin: 0;
  text-align: right;
}
.action-section__card-btn {
  margin-top: 8px;
}
@media (max-width: 480px) {
  .action-section__card-btn {
    margin-top: 6px;
  }
}
@keyframes hero-fireworks-burst {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  70% {
    opacity: 0;
    transform: scale(0);
  }
  82% {
    opacity: 1;
    transform: scale(1);
  }
  92% {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}
.hero {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  margin-bottom: 32px;
  background:
    linear-gradient(0deg, #04085000, #040850 90%),
    linear-gradient(180deg, #04085000, #040850 90%),
    url(/geo-block/images/home-bg-notx2.png);
  background-size:
    auto 200px,
    auto 200px,
    cover;
  background-position:
    center top,
    center bottom,
    center center;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .hero {
    background-image:
      linear-gradient(0deg, #00055500, #040850 90%),
      linear-gradient(180deg, #00055500, #040850 90%),
      url(/geo-block/images/home-bg-tabl.png);
    background-size:
      100% 60px,
      auto 200px,
      cover;
    padding-inline: 16px;
    align-items: end;
    overflow: hidden;
  }
}
@media (max-width: 480px) {
  .hero {
    background-image:
      linear-gradient(0deg, #00055500, #040850 90%),
      linear-gradient(180deg, #00055500, #040850 90%),
      url(/geo-block/images/home-bg-mob-notx2.png);
  }
}
.hero__fireworks {
  position: absolute;
  top: -30px;
  right: 260px;
  width: 420px;
  height: 420px;
  z-index: 0;
  pointer-events: none;
  background-image: url(/geo-block/images/hero/fireworks-outdoors.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  transform-origin: center center;
  animation: hero-fireworks-burst 4.5s ease-out 2s infinite;
}
@media (max-width: 1024px) {
  .hero__fireworks {
    top: -50px;
    right: -20px;
    width: 320px;
    height: 320px;
  }
}
@media (max-width: 480px) {
  .hero__fireworks {
    top: -30px;
    right: -20px;
    width: 220px;
    height: 220px;
    animation-duration: 4s;
  }
}
.hero__fireworks--left {
  right: auto;
  top: -30px;
  left: 280px;
  width: 200px;
  height: 200px;
  animation-delay: 3.4s;
}
@media (max-width: 1024px) {
  .hero__fireworks--left {
    top: -40px;
    left: 60px;
    width: 200px;
    height: 200px;
    animation-delay: 3.2s;
  }
}
@media (max-width: 480px) {
  .hero__fireworks--left {
    top: -30px;
    left: -20px;
    width: 140px;
    height: 140px;
    animation-delay: 3s;
  }
}
.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 760px;
  padding: 40px;
  margin-top: 220px;
}
@media (max-width: 1024px) {
  .hero__content {
    padding: 24px;
  }
}
@media (max-width: 480px) {
  .hero__content {
    padding: 16px 0;
  }
}
.hero .hero__text.card {
  z-index: 2;
  width: 100%;
  height: auto;
  min-height: 0;
  gap: 20px;
  border: 5px solid #fdc700;
}
@media (max-width: 480px) {
  .hero .hero__text.card {
    border: 3px solid #fdc700;
    border-radius: 24px;
  }
}
.hero__text-top {
  margin-top: 32px;
}
@media (max-width: 1024px) {
  .hero__text-top {
    margin-top: 18px;
  }
}
@media (max-width: 480px) {
  .hero__text-top {
    margin-top: 8px;
  }
}
.hero__text-bottom {
  text-align: center;
}
@media (min-width: 768px) {
  .hero__text-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 4px;
    row-gap: 0;
    justify-content: center;
    text-align: center;
  }
}
.hero__eyebrow,
.hero__title {
  line-height: 60px;
}
@media (max-width: 480px) {
  .hero__eyebrow,
  .hero__title {
    line-height: 28px;
  }
}
.hero__subtitle {
  line-height: 24px;
}
@media (max-width: 480px) {
  .hero__subtitle {
    line-height: 20px;
  }
}
.hero__cta {
  z-index: 3;
  min-width: 280px;
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .hero__cta {
    margin-top: 24px;
  }
}
@media (max-width: 480px) {
  .hero__cta {
    display: none;
    margin-top: 24px;
  }
}
.hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 3;
  margin-top: 100px;
  position: relative;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1024px) {
  .hero__badges {
    margin-top: 32px;
  }
}
@media (max-width: 480px) {
  .hero__badges {
    gap: 6px;
  }
}
.hero__badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 480px) {
  .hero__badges-row {
    gap: 8px;
  }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
@media (min-width: 480px) {
  .hero__badge {
    width: 36px;
    height: 36px;
  }
}
.hero__badge-icon {
  width: 20px;
  height: 20px;
}
@media (min-width: 480px) {
  .hero__badge-icon {
    width: 36px;
    height: 36px;
  }
}
.hero__coin {
  position: absolute;
  z-index: 5;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}
.hero__coin--left-top {
  width: 243px;
  height: 162px;
  top: -24px;
  left: -80px;
  background-image: url(/geo-block/images/hero/coin.png);
}
@media (max-width: 480px) {
  .hero__coin--left-top {
    width: 97px;
    height: 64px;
    top: -10px;
    left: -40px;
  }
}
.hero__coin--right-bottom {
  width: 125px;
  height: 103px;
  top: 240px;
  right: -20px;
  left: auto;
  background-image: url(/geo-block/images/hero/brilliant.png);
}
@media (max-width: 1024px) {
  .hero__coin--right-bottom {
    right: -30px;
    top: 210px;
  }
}
@media (max-width: 480px) {
  .hero__coin--right-bottom {
    width: 66px;
    height: 54px;
    top: 160px;
    right: -30px;
  }
}
.lobby {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .lobby {
    padding-inline: 24px;
  }
}
@media (max-width: 480px) {
  .lobby {
    padding-inline: 0;
  }
}
.lobby__bg {
  position: absolute;
  z-index: 1;
}
.lobby__brand {
  padding: 42px 0;
}
@media (max-width: 480px) {
  .lobby__brand {
    padding: 36px 28px;
  }
}
.lobby__more-games {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 106px;
}
@media (max-width: 1024px) {
  .lobby__more-games {
    margin-bottom: 64px;
  }
}
@media (max-width: 480px) {
  .lobby__more-games {
    margin-bottom: 24px;
  }
}
.lobby__more-games-btn {
  text-transform: uppercase;
  min-width: 200px;
}
@media (max-width: 1024px) {
  .lobby__more-games-btn {
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .lobby__more-games-btn {
    max-width: 100%;
    height: 48px;
  }
}
@media (max-width: 480px) {
  .million {
    max-width: 330px;
    height: auto;
  }
}
.top-slots__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 24px;
}
.top-slots__title {
  text-transform: uppercase;
}
.top-slots__buttons {
  display: flex;
  gap: 16px;
}
.top-slots__button {
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
}
.top-slots__button.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
  cursor: default;
}
.top-slots__button-icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
}
.top-slots__button-icon--prev {
  background-image: url(/geo-block/images/icons/icon-left.svg);
}
.top-slots__button-icon--next {
  background-image: url(/geo-block/images/icons/icon-right.svg);
}
.top-slots__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .top-slots__inner {
    padding: 0;
  }
}
.top-slots__more {
  color: #c859ff;
}
.gamesSlider {
  width: 100%;
}
.gamesSlider .swiper-slide {
  width: auto;
  flex-shrink: 0;
}
:root {
  --swiper-theme-color: #007aff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: #00000026;
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, #00000080, #0000);
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, #00000080, #0000);
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, #00000080, #0000);
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, #00000080, #0000);
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
:is(
    .swiper:not(.swiper-watch-progress),
    .swiper-watch-progress .swiper-slide-visible
  )
  .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translateZ(0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
:is(
    .swiper-vertical > .swiper-pagination-bullets,
    .swiper-pagination-vertical.swiper-pagination-bullets
  )
  .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
:is(
  .swiper-vertical > .swiper-pagination-bullets,
  .swiper-pagination-vertical.swiper-pagination-bullets
).swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
:is(
    .swiper-vertical > .swiper-pagination-bullets,
    .swiper-pagination-vertical.swiper-pagination-bullets
  ).swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition:
    0.2s transform,
    0.2s top;
}
:is(
    .swiper-horizontal > .swiper-pagination-bullets,
    .swiper-pagination-horizontal.swiper-pagination-bullets
  )
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
:is(
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-horizontal.swiper-pagination-bullets
).swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translate(-50%);
  white-space: nowrap;
}
:is(
    .swiper-horizontal > .swiper-pagination-bullets,
    .swiper-pagination-horizontal.swiper-pagination-bullets
  ).swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s left;
}
.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s right;
}
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
.swiper-pagination-progressbar {
  background: var(
    --swiper-pagination-progressbar-bg-color,
    rgba(0, 0, 0, 0.25)
  );
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
:is(.swiper-button-prev, .swiper-button-next).swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
:is(.swiper-button-prev, .swiper-button-next).swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled :is(.swiper-button-prev, .swiper-button-next) {
  display: none !important;
}
:is(.swiper-button-prev, .swiper-button-next) svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  fill: currentColor;
  pointer-events: none;
}
.swiper-button-lock {
  display: none;
}
.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
}
.swiper-button-prev .swiper-navigation-icon {
  transform: rotate(180deg);
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal .swiper-button-prev,
.swiper-horizontal .swiper-button-next,
.swiper-horizontal ~ .swiper-button-prev,
.swiper-horizontal ~ .swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  margin-left: 0;
}
.swiper-horizontal .swiper-button-prev,
.swiper-horizontal ~ .swiper-button-prev,
.swiper-horizontal.swiper-rtl .swiper-button-next,
.swiper-horizontal.swiper-rtl ~ .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
}
.swiper-horizontal .swiper-button-next,
.swiper-horizontal ~ .swiper-button-next,
.swiper-horizontal.swiper-rtl .swiper-button-prev,
.swiper-horizontal.swiper-rtl ~ .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
:is(
    .swiper-horizontal .swiper-button-prev,
    .swiper-horizontal ~ .swiper-button-prev,
    .swiper-horizontal.swiper-rtl .swiper-button-next,
    .swiper-horizontal.swiper-rtl ~ .swiper-button-next
  )
  .swiper-navigation-icon {
  transform: rotate(180deg);
}
:is(
    .swiper-horizontal.swiper-rtl .swiper-button-prev,
    .swiper-horizontal.swiper-rtl ~ .swiper-button-prev
  )
  .swiper-navigation-icon {
  transform: rotate(0);
}
.swiper-vertical .swiper-button-prev,
.swiper-vertical .swiper-button-next,
.swiper-vertical ~ .swiper-button-prev,
.swiper-vertical ~ .swiper-button-next {
  left: var(--swiper-navigation-top-offset, 50%);
  right: auto;
  margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
  margin-top: 0;
}
.swiper-vertical .swiper-button-prev,
.swiper-vertical ~ .swiper-button-prev {
  top: var(--swiper-navigation-sides-offset, 4px);
  bottom: auto;
}
:is(
    .swiper-vertical .swiper-button-prev,
    .swiper-vertical ~ .swiper-button-prev
  )
  .swiper-navigation-icon {
  transform: rotate(-90deg);
}
.swiper-vertical .swiper-button-next,
.swiper-vertical ~ .swiper-button-next {
  bottom: var(--swiper-navigation-sides-offset, 4px);
  top: auto;
}
:is(
    .swiper-vertical .swiper-button-next,
    .swiper-vertical ~ .swiper-button-next
  )
  .swiper-navigation-icon {
  transform: rotate(90deg);
}
.game-card {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  display: flex;
  cursor: pointer;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 4px 16px #0003;
}
.game-card:hover .game-card__overlay {
  opacity: 1;
}
@media (max-width: 1024px) {
  .game-card {
    border-radius: 16px;
  }
}
@media (max-width: 480px) {
  .game-card {
    border-radius: 16px;
  }
}
.game-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 32px;
  height: 35px;
  pointer-events: none;
  z-index: 2;
}
.game-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: linear-gradient(180deg, #3cd7ffb3, #3cd7ff80, #3cd7ff00);
  box-shadow: inset 0 0 20px #ffe066;
  mix-blend-mode: plus-lighter;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.game-card__play {
  width: 56px;
  height: 56px;
}
.game-card__play-icon {
  width: 56px;
  height: 56px;
  pointer-events: none;
}
.game-card__info {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  bottom: 8px;
  text-align: center;
  width: 100%;
}
.game-card__title {
  font-family: Fredoka, sans-serif;
  color: #3cd7ff;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
}
.game-card__provider {
  font-family: Fredoka, sans-serif;
  color: #3cd7ff;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
}
.games-collection {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .games-collection {
    padding: 0 16px;
  }
}
.games-collection__games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  z-index: 2;
}
@media (min-width: 768px) {
  .games-collection__games {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .games-collection__games {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
}
.brand-new__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 24px;
}
.brand-new__title {
  text-transform: uppercase;
}
.brand-new__buttons {
  display: flex;
  gap: 16px;
}
.brand-new__button {
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
}
.brand-new__button.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
  cursor: default;
}
.brand-new__button-icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
}
.brand-new__button-icon--prev {
  background-image: url(/geo-block/images/icons/icon-left.svg);
}
.brand-new__button-icon--next {
  background-image: url(/geo-block/images/icons/icon-right.svg);
}
.brand-new__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .brand-new__inner {
    padding: 0;
  }
}
.brand-new__more {
  color: #c859ff;
}
.slots-provider__content {
  padding: 40px 0;
  max-width: 1220px;
  margin: 0 auto;
  box-sizing: border-box;
}
.slots-provider__subtitle {
  color: #fff;
}
.not-found-page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 72px;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .not-found-page {
    padding: 100px 24px 60px;
  }
}
@media (max-width: 480px) {
  .not-found-page {
    padding: 88px 16px 40px;
  }
}
.not-found-page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, #00055500 85%, #000338 99%), url(/geo-block/images/404-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 480px) {
  .not-found-page__bg {
    background-image:
      linear-gradient(180deg, #00055500 85%, #000338 99%),
      url(/geo-block/images/404-bg-mob.png);
    background-position: center center;
  }
}
.not-found-page__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 560px;
  text-align: center;
}
@media (max-width: 480px) {
  .not-found-page__content {
    gap: 16px;
  }
}
.not-found-page__img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 480px) {
  .not-found-page__img {
    max-width: 280px;
  }
}
.not-found-page__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.not-found-page__title {
  margin: 0;
  font-family: Fredoka, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}
@media (max-width: 480px) {
  .not-found-page__title {
    font-size: 24px;
  }
}
.not-found-page__sub {
  margin: 0;
  font-family: Fredoka, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #fff1cb;
}
@media (max-width: 480px) {
  .not-found-page__sub {
    font-size: 14px;
  }
}
.not-found-page__cta {
  margin-top: 8px;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.not-found-page__cta:hover {
  transform: translateY(-1px);
}
.not-found-page__cta:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .not-found-page__cta {
    padding: 14px 32px;
    font-size: 13px;
  }
}
.all-games {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 0 24px;
}
@media (max-width: 480px) {
  .all-games {
    padding: 0 0 16px;
  }
}
.all-games__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .all-games__content {
    gap: 18px;
    padding: 0 16px;
  }
}
.all-games__title {
  margin: 0;
  padding: 0;
  text-align: center;
}
.all-games__games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  z-index: 2;
}
@media (min-width: 768px) {
  .all-games__games {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .all-games__games {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
}
.all-games__cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
}
.all-games__cta-btn {
  text-transform: uppercase;
  min-width: 282px;
  height: 64px;
}
@media (max-width: 480px) {
  .all-games__cta-btn {
    width: 100%;
    height: 48px;
  }
}
@media (max-width: 480px) {
  .game-page__frame-wrapper--fullscreen {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    aspect-ratio: auto;
    margin: 0;
    z-index: 9999;
    border-radius: 0;
    background: #000;
  }
  .game-page__frame-wrapper--fullscreen iframe {
    width: 100%;
    height: 100%;
  }
}
.game-page {
  min-height: 100vh;
  background-color: #040850;
  padding-bottom: 48px;
  padding-top: 160px;
  font-family: Fredoka, sans-serif;
}
@media (max-width: 480px) {
  .game-page {
    padding-top: 120px;
  }
}
.game-page__hero {
  position: relative;
  width: 100%;
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .game-page__hero {
    padding: 32px 24px 40px;
    gap: 20px;
  }
}
.game-page__hero-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .game-page__hero-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
  }
}
.game-page__hero-title {
  font-family: Fredoka, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .game-page__hero-title {
    font-weight: 600;
    font-size: 16px;
  }
}
.game-page__hero-banner {
  width: 100%;
  max-width: 1198px;
  aspect-ratio: 16/9;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width: 480px) {
  .game-page__hero-banner {
    border-radius: 12px;
    aspect-ratio: 4/3;
  }
}
.game-page__frame-wrapper {
  position: relative;
  width: 100%;
  max-width: 1198px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 1;
}
@media (max-width: 480px) {
  .game-page__frame-wrapper {
    padding: 0 16px;
    margin-top: 8px;
  }
}
.game-page__frame {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 0 0 21px 21px;
  background-color: #2a3045;
  display: block;
}
@media (max-width: 480px) {
  .game-page__frame {
    border-radius: 0 0 12px 12px;
    aspect-ratio: 16/10;
  }
}
.game-page__frame-settings {
  display: flex;
  gap: 12px;
  padding: 14px 24px;
  width: 100%;
  max-width: 1198px;
  margin: 0 auto;
  background-color: #11142e;
  border-radius: 0 0 21px 21px;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .game-page__frame-settings {
    padding: 12px 16px;
    border-radius: 0 0 12px 12px;
  }
}
.game-page__frame-icon {
  width: 42px;
  height: 42px;
  background-color: #2a3045;
  border-radius: 10.5px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.game-page__frame-icon:hover {
  opacity: 0.9;
}
.game-page__frame-icon--full-screen {
  background-image: url(/geo-block/images/icons/icon-full-screen.svg);
}
.game-page__frame-icon--like {
  background-image: url(/geo-block/images/icons/icon-like.svg);
}
.game-page__bottom {
  margin-top: 64px;
}
@media (max-width: 480px) {
  .game-page__bottom {
    margin-top: 32px;
  }
}
.game-page--centered {
  min-height: 100vh;
  background-color: #040850;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.game-page__frame-wrapper--centered {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  color: #fff;
  font-family: Fredoka, sans-serif;
}
.game-page__status {
  font-size: 18px;
  color: #fff;
}
.game-page__error-msg {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 24px 20px;
}
.game-page__error-btn {
  min-width: 150px;
}
h1,
h2,
h3 {
  font-family: Fredoka, sans-serif;
  font-weight: 700;
  color: #fff;
}
h1 {
  font-size: 56px;
  line-height: 64px;
}
h2 {
  font-size: 32px;
  line-height: 40px;
}
h3 {
  font-size: 18px;
  line-height: 26px;
}
p {
  font-family: Fredoka, sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
}
.title {
  font-family: Fredoka, sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .title {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
  }
}
.text {
  font-family: Fredoka, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  color: #fff1cb;
}
@media (max-width: 480px) {
  .text {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.31px;
    text-align: center;
    color: #fff1cb;
  }
}
.text--left {
  text-align: left;
}
@media (max-width: 480px) {
  .text--left {
    text-align: left;
  }
}
.text--right {
  text-align: right;
}
@media (max-width: 480px) {
  .text--right {
    text-align: right;
  }
}
.text-sm {
  font-family: Fredoka, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.31px;
  text-align: center;
  vertical-align: middle;
  color: #ffe7a6;
}
@media (max-width: 480px) {
  .text-sm {
    font-size: 10px;
    line-height: 100%;
    letter-spacing: -0.31px;
    text-align: center;
    vertical-align: middle;
    color: #ffe7a6;
  }
}
.text-nav {
  font-family: Fredoka, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
}
.text-nav--active {
  font-family: Fredoka, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.31px;
  text-align: center;
  color: #ffe100;
}
.menu {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 4px;
  min-height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0096e5, #003097);
  border: 2px solid #fdc700;
  box-shadow: 0 4px 12px #00000040;
}
.menu__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.menu__link:hover:not(.menu__link--active) .text-nav {
  color: #ffffffe6;
}
.menu__link--active {
  background: #0065bff0;
  border-color: #ffe100;
  box-shadow: 0 2px 6px #0003;
}
.menu__link--active .text-nav {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.31px;
  color: #ffe100;
}
.subtitle {
  font-family: Fredoka, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: right;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .subtitle {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: right;
    vertical-align: middle;
    background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.card {
  padding: 24px 16px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(170.99deg, #0096e5 6.06%, #003097 92.4%);
  box-shadow: 0 6px 7.8px #1121529c;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .card {
    gap: 16px;
    padding: 16px;
    border-radius: 32px;
    border-width: 1px;
  }
}
.card--md {
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(170.99deg, #0096e5 6.06%, #003097 92.4%);
}
@media (max-width: 480px) {
  .card--md {
    gap: 16px;
    padding: 8px;
    border-radius: 18px;
    border-width: 1px;
  }
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  height: 40px;
  padding: 0 20px;
  border: 0;
  border-radius: 100px;
  overflow: hidden;
  cursor: pointer;
  color: #fff1cb;
  font-family: Fredoka, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 155%;
  transition:
    background 0.12s ease-out,
    box-shadow 0.12s ease-out,
    transform 80ms ease-out;
}
.button:active:not(.button--disabled):not(.button--gold) {
  transform: translateY(1px);
}
@media (max-width: 480px) {
  .button {
    font-size: 14px;
    padding: 0 16px;
  }
}
.button--sm {
  height: 32px;
  padding: 0 16px;
  font-size: 14px;
}
.button--lg {
  height: 72px;
  padding: 0 28px;
  font-size: 18px;
}
@media (max-width: 480px) {
  .button--lg {
    font-size: 16px;
  }
}
.button--green {
  background: linear-gradient(180deg, #37ef37, #129c00);
  border: 3px solid #62e551;
  box-shadow:
    0 3px 4.2px #1022498c,
    inset 0 1px #ffffff1f;
}
.button--green:hover:not(.button--disabled) {
  box-shadow:
    0 10px 22px #1022498c,
    0 6px 14px #0000002e,
    inset 0 2px #ffffff80;
}
.button--green:active:not(.button--disabled) {
  background: linear-gradient(180deg, #129c00, #37ef37);
  box-shadow:
    0 1px 2px #1022498c,
    inset 0 2px 4px #0003;
}
.button--blue {
  background: linear-gradient(180deg, #00fafff5, #006bcbf5);
  border: 3px solid #05cefb;
  box-shadow:
    0 3px 4.2px #1022498c,
    inset 0 1px #fff3;
}
.button--blue:hover:not(.button--disabled) {
  box-shadow:
    0 10px 24px #1022498c,
    0 6px 16px #0003,
    inset 0 2px #ffffff8c;
}
.button--blue:active:not(.button--disabled) {
  background: linear-gradient(180deg, #006bcbf5, #00fafff5);
  box-shadow:
    0 1px 2px #1022498c,
    inset 0 2px 4px #00000040;
}
.button--gold {
  background: linear-gradient(180deg, #ffae00, #ff3b00);
  border: 2px solid rgba(254, 240, 138, 0.5019607843);
  box-shadow:
    0 8px 10px #0000004d,
    0 4px #991b1b,
    inset 0 6px 10.6px #fcd0bb,
    inset 0 1px #fff3;
}
.button--gold:hover:not(.button--disabled) {
  box-shadow:
    0 16px 28px #0000004d,
    0 6px #991b1b,
    inset 0 6px 10.6px #fcd0bb,
    inset 0 2px #ffffff8c;
}
.button--gold:active:not(.button--disabled) {
  background: linear-gradient(180deg, #ff3b00, #ffae00);
  box-shadow:
    0 4px 6px #0000004d,
    0 2px #991b1b,
    inset 0 4px 8px #fcd0bb,
    inset 0 2px 6px #00000040;
  transform: translateY(2px);
}
.button--nav {
  background: linear-gradient(170.99deg, #0096e5 6.06%, #003097 92.4%);
  border: 3px solid #fdc700;
  color: #ffe100;
  box-shadow:
    0 6px 7.8px #1121529c,
    inset 0 1px #ffffff26;
}
.button--nav:hover:not(.button--disabled) {
  box-shadow:
    0 12px 24px #1121529c,
    0 6px 12px #0003,
    inset 0 2px #ffffff73;
}
.button--nav:active:not(.button--disabled) {
  background: linear-gradient(170.99deg, #003097 6.06%, #0096e5 92.4%);
  box-shadow:
    0 3px 5px #1121529c,
    inset 0 2px 4px #00000040;
}
.button--nav .button__label-sec {
  color: #fff1cb;
}
.button--disabled,
.button:disabled {
  background: #51566c !important;
  color: #2a3045 !important;
  border-color: #51566c !important;
  box-shadow: none !important;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
}
.button--yellow {
  background: linear-gradient(180deg, #f9fab2, #ffd30f, #ed9d27);
  color: #2a3045;
  box-shadow:
    0 2px 4px #0000001a,
    inset 0 1px #fff6;
}
.button--yellow:hover:not(.button--disabled) {
  box-shadow:
    0 10px 22px #0003,
    0 5px 12px #0000001f,
    inset 0 2px #fff9;
}
.button--yellow:active:not(.button--disabled) {
  background: linear-gradient(180deg, #ed9d27, #ffd30f, #f9fab2);
  box-shadow:
    0 1px 3px #0000001a,
    inset 0 2px 4px #00000026;
  transform: translateY(1px);
}
.gold-fade {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  height: 40px;
  border: 0;
  border-radius: 100px;
  box-shadow: 0 2px 4px #0000001a;
  overflow: hidden;
  font-family: Fredoka, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 155%;
  background: linear-gradient(180deg, #f9fab2, #ffd30f, #ed9d27);
  color: #2a3045;
}
.gold-fade:before {
  box-shadow: inset 2px 2px 8px #c3ff0073;
}
.gold-fade:after {
  box-shadow: inset 1px 1px 2px #ffffff9e;
}
.gold-fade:active {
  background: linear-gradient(180deg, #f9fab2, #ffd30f, #ed9d27);
  transform: translateY(1px);
}
.gold-fade:active:before {
  box-shadow: inset 2px 2px 8px #c3ff0073;
  opacity: 1;
}
.gold-fade:active:after {
  box-shadow: inset -1px -1px 2px #ffffff9e;
  opacity: 1;
}
.button-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 43px;
  background: #5115a9;
  color: #fff;
  border: 1px solid #c859ff;
  border-radius: 100px;
  cursor: pointer;
}
.button-modal:hover {
  background: #c859ff 50%;
  border: 1px solid #5115a9;
  box-shadow: 0 0 10px #b8a1ff33;
}
.button-modal:active {
  background-color: #852df6;
  border-color: #5115a9;
  box-shadow: 0 0 10px #b8a1ff33;
}
.button-modal--disabled {
  background-color: #51566c;
  border-color: #51566c;
  color: #2a3045;
  cursor: not-allowed;
  pointer-events: none;
}
.button-modal--disabled:hover,
.button-modal--disabled:active {
  background-color: #51566c;
  border-color: #51566c;
  box-shadow: none;
}
a {
  text-decoration: none;
  font-family: Fredoka, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}
.gradient-text {
  display: inline-block;
  background: linear-gradient(90deg, #852df6, #c859ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.error-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #ff4d4d26;
  border: 1px solid #ff4d4d;
  font-family: Fredoka, sans-serif;
  max-width: 100%;
}
.error-message__icon {
  font-size: 20px;
  line-height: 1;
  color: #ff4d4d;
  margin-top: 2px;
}
.error-message__text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
.realtime-rtp__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 24px;
}
.realtime-rtp__title {
  margin: 0;
  font-family: Fredoka, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  padding-bottom: 8px;
  position: relative;
}
@media (max-width: 480px) {
  .realtime-rtp__title {
    font-weight: 600;
    font-size: 16px;
  }
}
.realtime-rtp__buttons {
  display: flex;
  gap: 16px;
}
.realtime-rtp__button {
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.realtime-rtp__button.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}
.realtime-rtp__button-icon {
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(1.15);
}
.realtime-rtp__button-icon--prev {
  background-image: url(/geo-block/images/icons/icon-left.svg);
}
.realtime-rtp__button-icon--next {
  background-image: url(/geo-block/images/icons/icon-right.svg);
}
.realtime-rtp__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 100vh;
  max-height: 100dvh;
  -webkit-overflow-scrolling: touch;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
}
@media (max-width: 480px) {
  .modal {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    height: 100vh;
    height: 100dvh;
    max-height: none;
  }
}
.modal__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #0009;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.modal__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  .modal__content {
    align-items: flex-start;
    justify-content: flex-start;
    min-height: min-content;
    padding: 16px 0 32px;
    flex-shrink: 0;
  }
}
.register-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  font-family: Fredoka, sans-serif;
  box-shadow: 0 24px 48px -12px #0006;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .register-modal {
    max-width: 100%;
    border-radius: 12px;
  }
}
.register-modal__top {
  position: relative;
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
@media (max-width: 480px) {
  .register-modal__top {
    height: 160px;
    border-radius: 12px 12px 0 0;
  }
}
.register-modal__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, #00055500 75%, #040850 99%),
    url(/geo-block/images/sing-in-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.register-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: transparent;
  background-image: url(/geo-block/images/icons/icon-close.svg);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  filter: brightness(0) invert(1);
  transition: background-color 0.2s ease;
}
.register-modal__close:hover {
  background-color: #ffffff40;
}
.register-modal__body {
  flex: 1;
  padding: 28px 24px 32px;
  background: #040850;
  border-radius: 0 0 16px 16px;
}
@media (max-width: 480px) {
  .register-modal__body {
    padding: 24px 20px 28px;
    border-radius: 0 0 12px 12px;
  }
}
.register-modal .modal-window__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}
.register-modal .modal-window__title {
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  background: var(
    --Text-color-accent-text,
    linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .register-modal .modal-window__title {
    font-size: 20px;
  }
}
.register-modal .modal-window__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.register-modal .modal-window__field {
  width: 100%;
}
.register-modal .modal-window__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}
.register-modal .modal-window__input-icon {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: opacity 0.2s ease;
}
.register-modal
  .modal-window__input-wrapper:has(.modal-window__input:placeholder-shown)
  .modal-window__input-icon {
  opacity: 0.6;
}
.register-modal .modal-window__input-icon-right {
  position: absolute;
  right: 14px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  filter: brightness(0) invert(1);
  opacity: 1;
}
.register-modal .modal-window__input-toggle {
  position: absolute;
  right: 12px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: opacity 0.2s ease;
}
.register-modal .modal-window__input-toggle img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
}
.register-modal .modal-window__input-toggle:hover {
  opacity: 0.85;
}
.register-modal
  .modal-window__input-wrapper:has(.modal-window__input-icon-right)
  .modal-window__input-toggle {
  right: 40px;
}
.register-modal .modal-window__input {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  padding: 0 44px;
  color: #fff1cb;
  border: none;
  background: linear-gradient(180deg, #2b6ff9, #4f9aff);
  font-size: 14px;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.312px;
  outline: none;
  box-shadow:
    0 4px 16px #00000040,
    0 2px 8px #2b6ff933;
  transition: box-shadow 0.2s ease;
}
.register-modal .modal-window__input::placeholder {
  color: #fff1cb99;
}
.register-modal .modal-window__input:focus {
  border-radius: 8px;
  border: 1px solid var(--stroke, #fdc700);
  outline: none;
  box-shadow:
    0 4px 16px #00000040,
    0 2px 8px #2b6ff933;
}
.register-modal .modal-window__input--error {
  box-shadow:
    0 4px 16px #00000040,
    0 0 0 2px #e53e3e99;
}
.register-modal .modal-window__input:-webkit-autofill,
.register-modal .modal-window__input:-webkit-autofill:hover,
.register-modal .modal-window__input:-webkit-autofill:focus,
.register-modal .modal-window__input:-webkit-autofill:active {
  -webkit-text-fill-color: rgb(255, 241, 203);
  -webkit-box-shadow: 0 0 0 1000px #3b82f9 inset;
  box-shadow: 0 0 0 1000px #3b82f9 inset;
  transition: background-color 5000s ease-in-out 0s;
}
.register-modal .modal-window__error {
  margin: 4px 0 0;
  font-size: 12px;
  color: #feb2b2;
}
.register-modal .modal-window__submit {
  width: auto;
  min-width: 170px;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  margin-top: 12px;
  padding: 0 20px;
  border: 0;
  border-radius: 100px;
  overflow: hidden;
  cursor: pointer;
  color: #fff1cb;
  font-family: Fredoka, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 155%;
  transition:
    background 0.12s ease-out,
    box-shadow 0.12s ease-out,
    transform 80ms ease-out;
  background: linear-gradient(180deg, #37ef37, #129c00);
  border: 3px solid #62e551;
  box-shadow:
    0 3px 4.2px #1022498c,
    inset 0 1px #fff3;
}
.register-modal
  .modal-window__submit:hover:not(:disabled):not(.button--disabled) {
  transform: translateY(-1px);
  box-shadow:
    0 10px 24px #1022498c,
    0 6px 16px #0003,
    inset 0 2px #ffffff8c;
}
.register-modal
  .modal-window__submit:active:not(:disabled):not(.button--disabled) {
  transform: translateY(0);
  background: linear-gradient(180deg, #129c00, #37ef37);
  box-shadow:
    0 1px 2px #1022498c,
    inset 0 2px 4px #00000040;
}
.register-modal .modal-window__submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.register-modal .modal-window__bottom-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--Text-color-body, #fff1cb);
  font-size: 14px;
  margin-top: 12px;
}
.register-modal .modal-window__bottom-link {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.312px;
  color: inherit;
  cursor: pointer;
  background-image: var(
    --Text-color-accent-text,
    linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.2s ease;
}
.register-modal .modal-window__bottom-link:hover {
  text-decoration: underline;
  opacity: 0.9;
}
.register-modal .modal-window__server {
  margin: 8px 0 0;
  font-size: 13px;
  text-align: center;
}
.register-modal .modal-window__server--success {
  color: #68d391;
}
.register-modal .modal-window__server--error {
  color: #feb2b2;
}
.register-modal__field-dob {
  display: flex;
  gap: 8px;
}
.register-modal__input-dob {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  padding: 0 8px !important;
}
.register-modal__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.register-modal__checkbox--age {
  margin-bottom: 4px;
}
.register-modal__checkbox-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.register-modal__checkbox-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255, 241, 203, 0.85);
  background: transparent;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.register-modal__checkbox-box:after {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2.5px solid #fff1cb;
  border-bottom: 2.5px solid #fff1cb;
  border-radius: 1px;
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.register-modal__checkbox-input:checked + .register-modal__checkbox-box {
  border-color: transparent;
  background: linear-gradient(145deg, #4f9aff, #2b6ff9);
  box-shadow: 0 1px 3px #0003;
}
.register-modal__checkbox-input:checked + .register-modal__checkbox-box:after {
  opacity: 1;
}
.register-modal__checkbox-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--Text-color-body, #fff1cb);
}
.register-modal__checkbox-title {
  font-weight: 600;
}
.register-modal__checkbox-sub {
  color: #fff1cbe6;
}
.login-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  font-family: Fredoka, sans-serif;
  box-shadow: 0 24px 48px -12px #0006;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .login-modal {
    max-width: 100%;
    border-radius: 12px;
  }
}
.login-modal__top {
  position: relative;
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
@media (max-width: 480px) {
  .login-modal__top {
    height: 160px;
    border-radius: 12px 12px 0 0;
  }
}
.login-modal__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, #00055500 75%, #040850 99%),
    url(/geo-block/images/sing-in-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.login-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: transparent;
  background-image: url(/geo-block/images/icons/icon-close.svg);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  filter: brightness(0) invert(1);
  transition: background-color 0.2s ease;
}
.login-modal__close:hover {
  background-color: #ffffff40;
}
.login-modal__body {
  flex: 1;
  padding: 28px 24px 32px;
  background: #040850;
  border-radius: 0 0 16px 16px;
}
@media (max-width: 480px) {
  .login-modal__body {
    padding: 24px 20px 28px;
    border-radius: 0 0 12px 12px;
  }
}
.login-modal .modal-window__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}
.login-modal .modal-window__title {
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  background: var(
    --Text-color-accent-text,
    linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .login-modal .modal-window__title {
    font-size: 20px;
  }
}
.login-modal .modal-window__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.login-modal .modal-window__field {
  width: 100%;
}
.login-modal .modal-window__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}
.login-modal .modal-window__input-icon {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: opacity 0.2s ease;
}
.login-modal
  .modal-window__input-wrapper:has(.modal-window__input:placeholder-shown)
  .modal-window__input-icon {
  opacity: 0.6;
}
.login-modal .modal-window__input-icon-right {
  position: absolute;
  right: 14px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  filter: brightness(0) invert(1);
  opacity: 1;
}
.login-modal .modal-window__input-toggle {
  position: absolute;
  right: 12px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: opacity 0.2s ease;
}
.login-modal .modal-window__input-toggle img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
}
.login-modal .modal-window__input-toggle:hover {
  opacity: 0.85;
}
.login-modal
  .modal-window__input-wrapper:has(.modal-window__input-icon-right)
  .modal-window__input-toggle {
  right: 40px;
}
.login-modal .modal-window__input {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  padding: 0 44px;
  color: #fff1cb;
  border: none;
  background: linear-gradient(180deg, #2b6ff9, #4f9aff);
  font-size: 14px;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.312px;
  outline: none;
  box-shadow:
    0 4px 16px #00000040,
    0 2px 8px #2b6ff933;
  transition: box-shadow 0.2s ease;
}
.login-modal .modal-window__input::placeholder {
  color: #fff1cb99;
}
.login-modal .modal-window__input:focus {
  border-radius: 8px;
  border: 1px solid var(--stroke, #fdc700);
  outline: none;
  box-shadow:
    0 4px 16px #00000040,
    0 2px 8px #2b6ff933;
}
.login-modal .modal-window__input--error {
  box-shadow:
    0 4px 16px #00000040,
    0 0 0 2px #e53e3e99;
}
.login-modal .modal-window__input:-webkit-autofill,
.login-modal .modal-window__input:-webkit-autofill:hover,
.login-modal .modal-window__input:-webkit-autofill:focus,
.login-modal .modal-window__input:-webkit-autofill:active {
  -webkit-text-fill-color: rgb(255, 241, 203);
  -webkit-box-shadow: 0 0 0 1000px #3b82f9 inset;
  box-shadow: 0 0 0 1000px #3b82f9 inset;
  transition: background-color 5000s ease-in-out 0s;
}
.login-modal .modal-window__error {
  margin: 4px 0 0;
  font-size: 12px;
  color: #feb2b2;
}
.login-modal .modal-window__link {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: var(--Text-color-body, #fff1cb);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.312px;
  cursor: pointer;
  text-align: right;
  transition:
    opacity 0.2s ease,
    text-decoration 0.2s ease;
}
.login-modal .modal-window__link:hover {
  text-decoration: underline;
  opacity: 0.9;
}
.login-modal .modal-window__submit {
  width: auto;
  min-width: 170px;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  height: 40px;
  margin-top: 12px;
  padding: 0 20px;
  border: 0;
  border-radius: 100px;
  overflow: hidden;
  cursor: pointer;
  color: #fff1cb;
  font-family: Fredoka, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 155%;
  transition:
    background 0.12s ease-out,
    box-shadow 0.12s ease-out,
    transform 80ms ease-out;
  background: linear-gradient(180deg, #00fafff5, #006bcbf5);
  border: 3px solid #05cefb;
  box-shadow:
    0 3px 4.2px #1022498c,
    inset 0 1px #fff3;
}
.login-modal .modal-window__submit:hover:not(:disabled):not(.button--disabled) {
  transform: translateY(-1px);
  box-shadow:
    0 10px 24px #1022498c,
    0 6px 16px #0003,
    inset 0 2px #ffffff8c;
}
.login-modal
  .modal-window__submit:active:not(:disabled):not(.button--disabled) {
  transform: translateY(0);
  background: linear-gradient(180deg, #006bcbf5, #00fafff5);
  box-shadow:
    0 1px 2px #1022498c,
    inset 0 2px 4px #00000040;
}
.login-modal .modal-window__submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.login-modal .modal-window__bottom-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--Text-color-body, #fff1cb);
  font-size: 14px;
  margin-top: 12px;
}
.login-modal .modal-window__bottom-link {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.312px;
  color: inherit;
  cursor: pointer;
  background-image: var(
    --Text-color-accent-text,
    linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.2s ease;
}
.login-modal .modal-window__bottom-link:hover {
  text-decoration: underline;
  opacity: 0.9;
}
.login-modal .modal-window__server {
  margin: 8px 0 0;
  font-size: 13px;
  text-align: center;
}
.login-modal .modal-window__server--success {
  color: #68d391;
}
.login-modal .modal-window__server--error {
  color: #feb2b2;
}
.request-password-modal {
  position: relative;
  width: 100%;
  max-width: 448px;
  border-radius: 16px;
  background: #040850;
  color: #fff;
  font-family: Fredoka, sans-serif;
  box-shadow: 0 24px 48px -12px #0006;
}
@media (max-width: 480px) {
  .request-password-modal {
    max-width: 100%;
    border-radius: 12px;
  }
}
.request-password-modal__inner {
  position: relative;
  padding: 24px 24px 28px;
}
@media (max-width: 480px) {
  .request-password-modal__inner {
    padding: 20px 20px 24px;
  }
}
.request-password-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  background-image: url(/geo-block/images/icons/icon-close.svg);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  filter: brightness(0) invert(1);
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}
.request-password-modal__close:hover {
  background-color: #fff3;
}
.request-password-modal__close:active {
  opacity: 0.85;
}
.request-password-modal .modal-window__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4px 0 20px;
}
.request-password-modal .modal-window__title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .request-password-modal .modal-window__title {
    font-size: 20px;
  }
}
.request-password-modal .modal-window__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.request-password-modal .modal-window__field {
  width: 100%;
}
.request-password-modal .modal-window__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}
.request-password-modal .modal-window__input-icon {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: opacity 0.2s ease;
}
.request-password-modal
  .modal-window__input-wrapper:has(.modal-window__input:placeholder-shown)
  .modal-window__input-icon {
  opacity: 0.6;
}
.request-password-modal .modal-window__input-icon-right {
  position: absolute;
  right: 14px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  filter: brightness(0) invert(1);
  opacity: 1;
}
.request-password-modal .modal-window__input {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  padding: 0 44px;
  color: #fff1cb;
  border: none;
  background: linear-gradient(180deg, #2b6ff9, #4f9aff);
  font-size: 14px;
  font-family: inherit;
  font-weight: 400;
  letter-spacing: -0.312px;
  outline: none;
  box-shadow:
    0 4px 16px #00000040,
    0 2px 8px #2b6ff933;
  transition: box-shadow 0.2s ease;
}
.request-password-modal .modal-window__input::placeholder {
  color: #fff1cb99;
}
.request-password-modal .modal-window__input:focus {
  border-radius: 8px;
  border: 1px solid var(--stroke, #fdc700);
  outline: none;
  box-shadow:
    0 4px 16px #00000040,
    0 2px 8px #2b6ff933;
}
.request-password-modal .modal-window__input--error {
  box-shadow:
    0 4px 16px #00000040,
    0 0 0 2px #e53e3e99;
}
.request-password-modal .modal-window__error {
  margin: 4px 0 0;
  font-size: 12px;
  color: #feb2b2;
}
.request-password-modal .modal-window__submit {
  width: auto;
  min-width: 170px;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  margin-top: 16px;
  padding: 0 32px;
  border: 0;
  border-radius: 100px;
  overflow: hidden;
  cursor: pointer;
  color: #fff1cb;
  font-family: Fredoka, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 155%;
  transition:
    background 0.12s ease-out,
    box-shadow 0.12s ease-out,
    transform 80ms ease-out;
  background: linear-gradient(180deg, #00fafff5, #006bcbf5);
  border: 3px solid #05cefb;
  box-shadow:
    0 3px 4.2px #1022498c,
    inset 0 1px #fff3;
}
.request-password-modal
  .modal-window__submit:hover:not(:disabled):not(.button--disabled) {
  transform: translateY(-1px);
  box-shadow:
    0 10px 24px #1022498c,
    0 6px 16px #0003,
    inset 0 2px #ffffff8c;
}
.request-password-modal
  .modal-window__submit:active:not(:disabled):not(.button--disabled) {
  transform: translateY(0);
  background: linear-gradient(180deg, #006bcbf5, #00fafff5);
  box-shadow:
    0 1px 2px #1022498c,
    inset 0 2px 4px #00000040;
}
.request-password-modal .modal-window__submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.request-password-modal .modal-window__server {
  margin: 8px 0 0;
  font-size: 13px;
  text-align: center;
}
.request-password-modal .modal-window__server--success {
  color: #68d391;
}
.request-password-modal .modal-window__server--error {
  color: #feb2b2;
}
.profile-modal {
  position: relative;
  width: 100%;
  max-width: 960px;
  border-radius: 16px;
  background: #040850;
  color: #fff;
  font-family: Fredoka, sans-serif;
  box-shadow: 0 24px 48px -12px #0006;
}
@media (max-width: 480px) {
  .profile-modal {
    max-width: 100%;
    border-radius: 12px;
  }
}
.profile-modal__inner {
  position: relative;
  margin-top: 36px;
  padding: 24px 24px 32px;
  min-height: 520px;
  transition: min-height 0.4s ease;
}
@media (max-width: 480px) {
  .profile-modal__inner {
    padding: 20px 16px 24px;
    min-height: 420px;
  }
}
.profile-modal__inner--profile {
  min-height: 560px;
}
@media (max-width: 480px) {
  .profile-modal__inner--profile {
    min-height: 460px;
  }
}
.profile-modal__inner--transactions {
  min-height: 380px;
}
@media (max-width: 480px) {
  .profile-modal__inner--transactions {
    min-height: 320px;
  }
}
.profile-modal__close {
  position: absolute;
  top: -20px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  background-image: url(/geo-block/images/icons/icon-close.svg);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  filter: brightness(0) invert(1);
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}
.profile-modal__close:hover {
  background-color: #fff3;
}
.profile-modal__close:active {
  opacity: 0.85;
}
.profile-modal__balance {
  border-radius: 999px;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.profile-modal__top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: ) {
  .profile-modal__top {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .profile-modal__top {
    flex-wrap: wrap;
  }
}
.profile-modal__head {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.profile-modal__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2b6ff9, #4f9aff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.profile-modal__avatar-icon {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.profile-modal__head-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.profile-modal__name {
  font-size: 14px;
  font-weight: 400;
  color: #fff1cb;
}
.profile-modal__uid {
  font-size: 12px;
  color: #ffffffb3;
}
.profile-modal__nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  min-width: 0;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.profile-modal__nav::-webkit-scrollbar {
  height: 6px;
}
.profile-modal__nav::-webkit-scrollbar-thumb {
  background: #fff3;
  border-radius: 3px;
}
.profile-modal__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 10px 16px;
  border-radius: 30px;
  border: 1px solid var(--Stroke, #0270c7);
  background: linear-gradient(180deg, #0096e5 6.06%, #003097 92.4%);
  color: #fff1cbf2;
  font-family: Fredoka, sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.profile-modal__tab img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.profile-modal__tab:hover {
  opacity: 0.95;
}
.profile-modal__tab--active {
  border-color: #fdc700;
  color: #fdc700;
}
.profile-modal__tab--active img {
  filter: brightness(0) invert(1);
  opacity: 1;
}
.profile-modal__info {
  font-size: 14px;
  color: #fffc;
  margin-bottom: 12px;
}
.profile-modal__transactions {
  min-width: 0;
  animation: profile-modal-tab-in 0.35s ease;
}
.profile-modal__table-head {
  display: grid;
  grid-template-columns: 1.6fr 0.6fr 0.6fr;
  column-gap: 24px;
  padding: 0 16px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff1cb;
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .profile-modal__table-head {
    grid-template-columns: 0.9fr 0.6fr 0.6fr;
    padding: 0 12px 12px;
    column-gap: 16px;
    font-size: 12px;
  }
}
.profile-modal__table-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.profile-modal__table-row {
  display: grid;
  grid-template-columns: 1.6fr 0.6fr 0.6fr;
  column-gap: 24px;
  align-items: center;
  padding: 0 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #0096e5 6.06%, #003097 92.4%);
  min-height: 72px;
}
@media (max-width: 480px) {
  .profile-modal__table-row {
    grid-template-columns: 0.9fr 0.6fr 0.6fr;
    padding: 0 12px;
    column-gap: 16px;
  }
}
.profile-modal__table-cell {
  font-size: 16px;
  color: #fff1cb;
}
@media (max-width: 480px) {
  .profile-modal__table-cell {
    font-size: 12px;
  }
}
.profile-modal__table-cell--head {
  font-weight: 600;
}
.profile-modal__table-cell--product {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid var(--Stroke, #0270c7);
  background: #040850;
}
.profile-modal__table-cell--price {
  text-align: center;
}
.profile-modal__table-cell--date {
  text-align: right;
  color: #fff1cb;
}
.profile-modal__table-coin {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-image: url(/geo-block/images/shop/coin-balance.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.profile-modal__table-product-name {
  font-weight: 400;
  color: #fff1cb;
}
.profile-modal__table-placeholder {
  padding: 32px 24px;
  text-align: center;
  font-size: 14px;
  color: #fffc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.profile-modal__table-placeholder--error {
  color: #feb2b2;
}
.profile-modal__loader {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff1cb;
  border-radius: 50%;
  animation: profile-modal-spin 0.8s linear infinite;
}
.profile-modal__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  animation: profile-modal-tab-in 0.35s ease;
}
@media (max-width: 768px) {
  .profile-modal__content {
    grid-template-columns: 1fr;
  }
}
.profile-modal__section {
  min-width: 0;
}
.profile-modal__section-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff1cb;
  margin: 0 0 16px;
}
.profile-modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.profile-modal__label {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #fff1cb;
  margin-bottom: 6px;
}
.profile-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) {
  .profile-modal__row {
    grid-template-columns: 1fr;
  }
}
.profile-modal__field-dob .profile-modal__dob-inputs {
  display: flex;
  gap: 8px;
}
.profile-modal__input-dob {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 0 8px !important;
}
.profile-modal__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.profile-modal__checkbox-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.profile-modal__checkbox-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255, 241, 203, 0.85);
  background: transparent;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.profile-modal__checkbox-box:after {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2.5px solid #fff1cb;
  border-bottom: 2.5px solid #fff1cb;
  border-radius: 1px;
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.profile-modal__checkbox-input:checked + .profile-modal__checkbox-box {
  border-color: transparent;
  background: linear-gradient(145deg, #4f9aff, #2b6ff9);
  box-shadow: 0 1px 3px #0003;
}
.profile-modal__checkbox-input:checked + .profile-modal__checkbox-box:after {
  opacity: 1;
}
.profile-modal__checkbox-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--Text-color-body, #fff1cb);
}
.profile-modal__submit {
  margin-top: 8px;
  align-self: flex-start;
  min-width: 180px;
}
@media (max-width: 480px) {
  .profile-modal__submit {
    width: 100%;
    min-width: 0;
  }
}
.profile-modal__submit--orange {
  background: linear-gradient(180deg, #fff392, #ffa100) !important;
  border-color: #fdc700 !important;
  color: #040850 !important;
  box-shadow: 0 2px 8px #ffa1004d;
}
.profile-modal__submit--orange:hover:not(:disabled) {
  box-shadow: 0 4px 12px #ffa10066;
}
.profile-modal__server {
  margin-top: 8px;
  font-size: 13px;
}
.profile-modal__server--success {
  color: #68d391;
}
.profile-modal__server--error {
  color: #feb2b2;
}
.profile-modal .modal-window__field {
  width: 100%;
}
.profile-modal .modal-window__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}
.profile-modal .modal-window__input-icon {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: opacity 0.2s ease;
}
.profile-modal
  .modal-window__input-wrapper:has(.modal-window__input:placeholder-shown)
  .modal-window__input-icon {
  opacity: 0.6;
}
.profile-modal .modal-window__input-toggle {
  position: absolute;
  right: 12px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: opacity 0.2s ease;
}
.profile-modal .modal-window__input-toggle img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
}
.profile-modal .modal-window__input-toggle:hover {
  opacity: 0.85;
}
.profile-modal .modal-window__input {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  padding: 0 44px;
  color: #fff1cb;
  border: none;
  background: linear-gradient(180deg, #0096e5 6.06%, #003097 92.4%);
  font-size: 14px;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.312px;
  outline: none;
  box-shadow:
    0 4px 16px #00000040,
    0 2px 8px #2b6ff933;
  transition: box-shadow 0.2s ease;
}
.profile-modal .modal-window__input::placeholder {
  color: #fff1cb99;
}
.profile-modal .modal-window__input:focus {
  border-radius: 8px;
  border: 1px solid var(--stroke, #fdc700);
  outline: none;
  box-shadow:
    0 4px 16px #00000040,
    0 2px 8px #2b6ff933;
}
.profile-modal .modal-window__input--error {
  box-shadow:
    0 4px 16px #00000040,
    0 0 0 2px #e53e3e99;
}
.profile-modal .modal-window__input:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}
.profile-modal .profile-modal__double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
.profile-modal .modal-window__error {
  margin: 4px 0 0;
  font-size: 12px;
  color: #feb2b2;
}
.profile-modal .modal-window__submit {
  width: 100%;
  min-width: 170px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 28px;
  border: 0;
  cursor: pointer;
  color: #fff1cb;
  font-family: Fredoka, sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition:
    opacity 0.2s ease,
    transform 0.1s ease,
    box-shadow 0.2s ease;
  border-radius: 9999px;
  border: 2px solid rgba(254, 240, 138, 0.5);
  background: var(
    --Buttons-button-1,
    linear-gradient(180deg, #ffae00 0%, #ff3b00 100%)
  );
  box-shadow:
    0 6px 10.6px #fcd0bb inset,
    0 4px #991b1b,
    0 8px 10px #0000004d;
}
.profile-modal .modal-window__submit:hover:not(:disabled) {
  opacity: 0.95;
  transform: translateY(-1px);
}
.profile-modal .modal-window__submit:active:not(:disabled) {
  transform: translateY(0);
}
.profile-modal .modal-window__submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
@keyframes profile-modal-tab-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes profile-modal-spin {
  to {
    transform: rotate(360deg);
  }
}
.shop-modal {
  position: relative;
  width: 100%;
  max-width: 963px;
  min-height: 560px;
  padding: 48px 32px 24px;
  color: #fff;
  font-family: Fredoka, sans-serif;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #040850;
  border-radius: 16px;
}
@media (max-width: 1024px) {
  .shop-modal {
    padding: 24px 20px 20px;
    min-height: auto;
    max-height: 95vh;
    overflow-y: auto;
  }
}
.shop-modal__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 80% 60% at 50% 20%,
    rgba(56, 189, 248, 0.15) 0%,
    rgba(30, 58, 138, 0.08) 40%,
    transparent 70%
  );
  border-radius: inherit;
  z-index: 0;
}
.shop-modal__light {
  position: absolute;
  top: -140px;
  bottom: 0;
  width: 40%;
  max-width: 280px;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: screen;
  opacity: 0.7;
}
.shop-modal__light--left {
  left: 0;
  background-image: url(/geo-block/images/light.png);
  background-position: left center;
}
.shop-modal__light--right {
  right: 0;
  background-image: url(/geo-block/images/light-right.svg);
  background-position: right center;
}
@media (max-width: 1024px) {
  .shop-modal__light {
    width: 35%;
    max-width: 160px;
    opacity: 0.7;
  }
}
.shop-modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  cursor: pointer;
  background: url(/geo-block/images/icons/icon-close.svg) center/contain no-repeat;
  color: #fff;
  z-index: 2;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .shop-modal__close {
    right: 16px;
    top: 16px;
  }
}
.shop-modal__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .shop-modal__header {
    margin-bottom: 14px;
  }
}
.shop-modal__title {
  margin: 0 0 4px;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: var(
    --Text-color-accent-text,
    linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1024px) {
  .shop-modal__title {
    font-size: 24px;
  }
}
.shop-modal__subtitle {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .shop-modal__subtitle {
    font-size: 11px;
    margin-bottom: 8px;
  }
}
.shop-modal__disclaimer {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #fff1cb;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.shop-modal__custom-block {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  border: 2px solid var(--Stroke, #0270c7);
  background: var(
    --frame-hover,
    linear-gradient(0deg, #0096e5 0%, #003097 95.09%)
  );
  padding: 2px 16px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .shop-modal__custom-block {
    padding: 6px 14px;
    margin-bottom: 14px;
  }
}
.shop-modal__custom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .shop-modal__custom-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.shop-modal__custom-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.shop-modal__custom-treasure {
  display: block;
  flex-shrink: 0;
  width: 137px;
  height: 99px;
  background: url(/geo-block/images/shop/treasure.png) center/contain no-repeat;
}
@media (max-width: 768px) {
  .shop-modal__custom-treasure {
    display: none;
    width: 122px;
    height: 83px;
  }
}
.shop-modal__custom-treasure--sec {
  display: none;
}
@media (max-width: 768px) {
  .shop-modal__custom-treasure--sec {
    display: flex;
  }
}
.shop-modal__custom-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.shop-modal__custom-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .shop-modal__custom-title {
    font-size: 18px;
  }
}
.shop-modal__custom-rate {
  font-size: 12px;
  color: #fff1cb;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .shop-modal__custom-rate {
    font-size: 10px;
  }
}
.shop-modal__custom-right {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 16px;
}
@media (max-width: 768px) {
  .shop-modal__custom-right {
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    gap: 8px;
  }
}
.shop-modal__custom-controls {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
@media (max-width: 768px) {
  .shop-modal__custom-controls {
    display: none;
    margin-left: 0;
  }
}
.shop-modal__custom-controls--mob {
  display: none;
}
@media (max-width: 768px) {
  .shop-modal__custom-controls--mob {
    display: flex;
    margin-bottom: 8px;
    margin-top: 16px;
  }
}
.shop-modal__custom-input {
  width: 120px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  border: 0.8px solid #0270c7;
  background: linear-gradient(180deg, #0096e5 6.06%, #003097 92.4%);
  box-shadow: 0 4px 40px #1e02214d;
  color: #fff;
  font-family: Fredoka, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}
.shop-modal__custom-input::placeholder {
  color: #ffffff80;
}
.shop-modal__custom-input:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow:
    0 4px 40px #1e02214d,
    0 0 0 2px #38bdf84d;
}
@media (max-width: 1024px) {
  .shop-modal__custom-input {
    width: 100px;
    height: 36px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .shop-modal__custom-input {
    width: 100%;
  }
}
.shop-modal__custom-total-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.shop-modal__custom-total-label {
  font-size: 14px;
  color: #fff1cb;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.shop-modal__custom-total-value {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .shop-modal__custom-total-value {
    font-size: 18px;
    text-align: center;
    margin: 0 auto 4px;
  }
}
.shop-modal__custom-warn {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  font-size: 11px;
  color: #fbbf24;
  max-width: 220px;
  text-align: right;
}
@media (max-width: 768px) {
  .shop-modal__custom-warn {
    top: 25%;
  }
}
.shop-modal__packages-block {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .shop-modal__packages-block {
    padding: 14px;
    margin-bottom: 14px;
  }
}
.shop-modal__placeholder {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: 185px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #fffc;
}
.shop-modal__placeholder--error {
  color: #f87171;
}
.shop-modal__packages-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .shop-modal__packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .shop-modal__packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.shop-modal__card-wrapper {
  padding: 0;
  min-height: 185px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 32px;
  transition:
    transform 0.18s ease,
    box-shadow 0.22s ease;
  box-shadow:
    0 4px #0003,
    0 6px 16px #00000026;
}
.shop-modal__card-wrapper:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px #00000026,
    0 14px 28px #0003;
}
.shop-modal__card-wrapper:active {
  transform: translateY(2px);
  box-shadow:
    0 2px #00000040,
    0 2px 8px #0003;
}
.shop-modal__card-wrapper--active {
  box-shadow:
    0 4px #0003,
    0 6px 16px #00000026;
  border-radius: 32px;
}
.shop-modal__card-wrapper--active:hover {
  box-shadow:
    0 8px #00000026,
    0 14px 28px #0003;
}
.shop-modal__card-wrapper--active:active {
  box-shadow:
    0 2px #00000040,
    0 2px 8px #0003;
}
.shop-modal__footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shop-modal__payment-text {
  margin: 0;
  font-size: 16px;
  color: #fff1cb;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .shop-modal__payment-text {
    text-align: center;
    font-size: 11px;
  }
}
.shop-modal__footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}
@media (max-width: 1024px) {
  .shop-modal__footer-row {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
}
.shop-modal__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  flex: 1 1 0;
  min-width: 0;
}
.shop-modal__checkbox-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.shop-modal__checkbox-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255, 241, 203, 0.85);
  background: transparent;
  box-sizing: border-box;
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
@media (max-width: 1024px) {
  .shop-modal__checkbox-box {
    margin-bottom: 32px;
  }
}
.shop-modal__checkbox-box:after {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2.5px solid #fff1cb;
  border-bottom: 2.5px solid #fff1cb;
  border-radius: 1px;
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.shop-modal__checkbox-input:checked + .shop-modal__checkbox-box {
  border-color: transparent;
  background: linear-gradient(145deg, #4f9aff, #2b6ff9);
  box-shadow: 0 1px 3px #0003;
}
.shop-modal__checkbox-input:checked + .shop-modal__checkbox-box:after {
  opacity: 1;
}
.shop-modal__checkbox-text {
  font-size: 14px;
  line-height: 1.35;
  color: var(--Text-color-body, #fff1cb);
}
@media (max-width: 1024px) {
  .shop-modal__checkbox-text {
    font-size: 10px;
  }
}
.shop-modal__footer-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .shop-modal__footer-actions {
    width: 100%;
    justify-content: stretch;
  }
}
.shop-modal__total-desk {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
@media (max-width: 1024px) {
  .shop-modal__total-desk {
    display: none;
  }
}
.shop-modal__total-label {
  font-size: 11px;
  color: #fffc;
  text-transform: uppercase;
}
.shop-modal__total-value {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.shop-modal__confirm {
  height: 56px;
  width: 260px;
  margin: -20px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  color: #fff1cb;
  border-radius: 9999px;
  border: 2px solid rgba(254, 240, 138, 0.5);
  background: var(
    --Buttons-button-1,
    linear-gradient(180deg, #ffae00 0%, #ff3b00 100%)
  );
  box-shadow:
    0 6px 10.6px #fcd0bb inset,
    0 4px #991b1b,
    0 8px 10px #0000004d;
}
.shop-modal__confirm:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px #f9731680;
}
.shop-modal__confirm:disabled,
.shop-modal__confirm--disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
@media (max-width: 1024px) {
  .shop-modal__confirm {
    width: 260px;
    height: 44px;
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.shop-modal__payment-error,
.shop-modal__warning {
  margin: 0;
  font-size: 13px;
  color: #f87171;
  font-weight: 500;
}
.shop-modal__total-mob {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(251, 191, 36, 0.5);
  background: #0e4e8c33;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .shop-modal__total-mob {
    display: flex;
  }
}
.shop-modal__total-label-mob {
  color: #ffffffd9;
  font-size: 12px;
}
.shop-modal__total-value-mob {
  color: #fff;
}
.shop-modal__info {
  margin: 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
  color: #fff1cb99;
}
@media (max-width: 1024px) {
  .shop-modal__info {
    font-size: 10px;
  }
}
.shop-modal__info-link {
  color: #fff1cb99;
  text-decoration: none;
}
.shop-modal__info-link:hover {
  text-decoration: underline;
}
.shop-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-width: 0;
  flex: 1;
  height: 185px;
  min-height: 185px;
  border-radius: 16px;
  background-repeat: no-repeat, no-repeat;
  background-position:
    left bottom,
    0 0;
  box-shadow: 0 2px 8px #0003;
  cursor: pointer;
  transition:
    box-shadow 0.22s ease,
    transform 0.18s ease;
  overflow: visible;
  pointer-events: none;
}
.shop-card--20,
.shop-card--50,
.shop-card--100,
.shop-card--250,
.shop-card--500,
.shop-card--1000 {
  background-image:
    radial-gradient(
      ellipse 120% 120% at 15% 85%,
      rgba(60, 215, 255, 0.5) 0%,
      rgba(60, 215, 255, 0.08) 45%,
      transparent 70%
    ),
    linear-gradient(170.99deg, #0096e5 6.06%, #003097 92.4%);
  background-size:
    200px 200px,
    auto;
}
.shop-card__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.shop-card__deco img {
  display: block;
  max-width: none;
  height: auto;
  object-fit: contain;
}
.shop-card__deco--top1 {
  left: -10px;
  bottom: 60px;
  width: 60px;
  z-index: 1;
}
.shop-card__deco--top1 img {
  width: 60px;
  height: auto;
}
.shop-card__deco--top2 {
  left: 95px;
  bottom: 60px;
  width: 60px;
  z-index: 0;
}
.shop-card__deco--top2 img {
  width: 60px;
  height: auto;
}
.shop-card__character {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 135px;
  height: auto;
  object-fit: contain;
  object-position: left bottom;
  pointer-events: none;
  z-index: 1;
  transform: translateY(-18px);
}
.shop-card__character--50 {
  width: 155px;
}
.shop-card__character--100 {
  width: 170px;
  bottom: 40px;
  left: -15px;
}
.shop-card__character--500 {
  width: 165px;
  left: -15px;
}
.shop-card__body {
  flex: 1;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 8px;
  gap: 8px;
  z-index: 2;
}
@media (max-width: 1024px) {
  .shop-card__body {
    padding: 8px;
    gap: 5px;
  }
}
.shop-card__title {
  margin: 0 auto;
  text-align: right;
  font-size: 16px;
  font-family: Fredoka, sans-serif;
  order: 2;
}
.shop-card__title .shop-card__title-number {
  font-weight: 700;
  font-size: 16px;
}
.shop-card__price {
  order: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 6px 12px;
  margin: 0 auto;
  font-family: Fredoka, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #ffe100;
  border-radius: 30px;
  border: 2px solid var(--stroke, #fdc700);
  background: #0065bf;
  box-shadow: 0 3px 4.2px #1022498c;
}
@media (max-width: 1024px) {
  .shop-card__price {
    min-width: 56px;
    padding: 4px 10px;
    font-size: 11px;
  }
}
.currency {
  position: relative;
  margin-left: 0;
}
.currency__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  min-width: 72px;
  height: 40px;
  border-radius: 8px;
  border: 0.8px solid #0270c7;
  background: linear-gradient(171deg, #0096e5 6.06%, #003097 92.4%);
  box-shadow: 0 4px 40px #1e02214d;
  padding: 0 12px 0 14px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.currency__content:hover {
  border-color: #38bdf8cc;
}
.currency__content:focus-within {
  outline: none;
  border-color: #38bdf8;
  box-shadow:
    0 4px 40px #1e02214d,
    0 0 0 2px #38bdf84d;
}
@media (max-width: 1024px) {
  .currency__content {
    min-width: 60px;
    height: 36px;
    padding: 0 10px;
  }
}
.currency__button {
  display: flex;
  align-items: center;
}
.currency__select-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff1cb;
  font-family: Fredoka, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1024px) {
  .currency__select-flag {
    font-size: 12px;
  }
}
.currency__arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid rgba(255, 241, 203, 0.9);
  transition: transform 0.2s ease;
}
@media (max-width: 1024px) {
  .currency__arrow {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(255, 241, 203, 0.9);
  }
}
.currency__arrow--open {
  transform: rotate(180deg);
}
.currency__dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 100%;
  border-radius: 8px;
  border: 0.8px solid #0270c7;
  background: linear-gradient(171deg, #0096e5 6.06%, #003097 92.4%);
  box-shadow: 0 4px 40px #1e02214d;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 100;
}
@media (max-width: 1024px) {
  .currency__dropdown {
    top: calc(100% + 4px);
    padding: 4px;
  }
}
.currency__item {
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}
.currency__item:hover {
  background: #38bdf833;
}
@media (max-width: 1024px) {
  .currency__item {
    padding: 6px 10px;
  }
}
.currency__item-flag {
  color: #fff1cb;
  font-family: Fredoka, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1024px) {
  .currency__item-flag {
    font-size: 12px;
  }
}
.bet-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bet-modal__content-top {
  display: flex;
  flex-direction: column;
  gap: 37px;
  padding: 12px 20px 0;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bet-modal__content-bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 20px 48px;
  background:
    linear-gradient(180deg, #11142e, #11142e63 190%),
    url(/geo-block/images/shop/shop-bg.png);
  background-size: cover;
}
.bet-modal__backdrop {
  position: absolute;
  inset: 0;
  background: #000000b3;
}
.bet-modal__content {
  position: relative;
  width: 471px;
  max-width: 100%;
  max-height: 640px;
  border-radius: 11px;
  background: #11142e;
  border: 1px solid #852df6;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-sizing: border-box;
}
.bet-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.bet-modal__close:before,
.bet-modal__close:after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  transform-origin: center;
}
.bet-modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.bet-modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.bet-modal__header {
  display: flex;
  gap: 23px;
  align-items: end;
}
.bet-modal__game-cover {
  width: 106px;
  height: 106px;
}
.bet-modal__game-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bet-modal__game-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bet-modal__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 40px;
}
.bet-modal__provider {
  width: fit-content;
  align-items: center;
  padding: 6px 8px;
  border-radius: 999px;
  font-family: Fredoka, sans-serif;
  background: #5115a9;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
}
.bet-modal__section {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bet-modal__section-title {
  font-family: Fredoka, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.bet-modal__section-subtitle {
  font-family: Fredoka, sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #d9d9ea;
}
.bet-modal__controls {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.bet-modal__round-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(180deg, #ffcb3b, #ff8c00);
  box-shadow:
    inset 1px 1px 2px #dafb009e,
    0 0 9px #ffb7009c;
  font-size: 22px;
  font-weight: 700;
  color: #5c1a00;
}
.bet-modal__bet-value {
  width: 100%;
  max-width: 114px;
  height: 40px;
  border-radius: 999px;
  background: #5115a9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.bet-modal__presets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.bet-modal__preset {
  border-radius: 16px;
  border: 1px solid #6a3bff;
  background: #060420e6;
  padding: 8px 8px 10px;
  width: 107px;
  height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: 0.15s ease;
}
.bet-modal__preset:hover {
  box-shadow: 0 0 10px #8445ff99;
}
.bet-modal__preset--5 {
  border-color: #852df6;
}
.bet-modal__preset--50 {
  border-color: #3cd7ff;
}
.bet-modal__preset--100 {
  border-color: #ffcb3b;
}
.bet-modal__preset--200 {
  border-color: #40ffb4;
}
.bet-modal__preset--500 {
  width: 230px;
  border-color: #ff4f8a;
}
.bet-modal__preset--active {
  border-color: #ffcb3b;
  box-shadow: 0 0 10px #ffcb3bb3;
}
.bet-modal__preset-image {
  width: 81px;
  height: 31px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.bet-modal__preset-text {
  font-size: 14px;
  font-weight: 700;
  color: #ffcb3b;
}
.bet-modal__play {
  width: 145px;
  align-self: center;
}
.bet-modal__play:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.bet-modal__play:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px #753dff80;
}
.age-gate-modal {
  position: relative;
  width: 100%;
  max-width: 448px;
  border-radius: 16px;
  background: #0f1737;
  color: #fff;
  font-family: Fredoka, sans-serif;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid rgba(240, 240, 240, 0.15);
  box-shadow: 0 24px 48px -12px #0006;
}
@media (max-width: 480px) {
  .age-gate-modal {
    max-width: 100%;
    border-radius: 12px;
  }
}
.age-gate-modal__inner {
  position: relative;
  padding: 48px 24px 32px;
}
@media (max-width: 480px) {
  .age-gate-modal__inner {
    padding: 44px 20px 28px;
  }
}
.age-gate-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  background-image: url(/geo-block/images/icons/icon-close.svg);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  filter: brightness(0) invert(1);
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}
.age-gate-modal__close:hover {
  background-color: #fff3;
}
.age-gate-modal__close:active {
  opacity: 0.85;
}
.age-gate-modal__icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.age-gate-modal__icon {
  width: 163px;
  height: auto;
  display: block;
}
.age-gate-modal__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0 0 16px;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .age-gate-modal__title {
    font-size: 24px;
  }
}
.age-gate-modal__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
  color: #fff1cb;
  max-width: 384px;
  margin: 0 auto 28px;
}
.age-gate-modal__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.age-gate-modal__btn {
  min-width: 120px;
  height: 44px;
  padding: 0 28px;
  border-radius: 30px;
  border: 2px solid transparent;
  color: #fff1cb;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.1s ease;
}
.age-gate-modal__btn:hover {
  opacity: 0.95;
}
.age-gate-modal__btn:active {
  transform: scale(0.98);
}
.age-gate-modal__btn--no,
.age-gate-modal__btn--yes {
  border: 2px solid transparent;
  background:
    linear-gradient(#0f1737, #0f1737) padding-box,
    linear-gradient(180deg, #fff392, #ffa100) border-box;
  box-shadow: 0 2px 8px #ffa10033;
}
.reset-password-modal {
  position: relative;
  width: 100%;
  max-width: 448px;
  border-radius: 16px;
  background: #040850;
  color: #fff;
  font-family: Fredoka, sans-serif;
  box-shadow: 0 24px 48px -12px #0006;
}
@media (max-width: 480px) {
  .reset-password-modal {
    max-width: 100%;
    border-radius: 12px;
  }
}
.reset-password-modal__inner {
  position: relative;
  padding: 24px 24px 28px;
}
@media (max-width: 480px) {
  .reset-password-modal__inner {
    padding: 20px 20px 24px;
  }
}
.reset-password-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  background-image: url(/geo-block/images/icons/icon-close.svg);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  filter: brightness(0) invert(1);
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}
.reset-password-modal__close:hover {
  background-color: #fff3;
}
.reset-password-modal__close:active {
  opacity: 0.85;
}
.reset-password-modal .modal-window__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4px 0 20px;
}
.reset-password-modal .modal-window__title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .reset-password-modal .modal-window__title {
    font-size: 20px;
  }
}
.reset-password-modal .modal-window__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reset-password-modal .modal-window__field {
  width: 100%;
}
.reset-password-modal .modal-window__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}
.reset-password-modal .modal-window__input-icon {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: opacity 0.2s ease;
}
.reset-password-modal
  .modal-window__input-wrapper:has(.modal-window__input:placeholder-shown)
  .modal-window__input-icon {
  opacity: 0.6;
}
.reset-password-modal .modal-window__input-icon-right {
  position: absolute;
  right: 14px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  filter: brightness(0) invert(1);
  opacity: 1;
}
.reset-password-modal .modal-window__input-toggle {
  position: absolute;
  right: 12px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: opacity 0.2s ease;
}
.reset-password-modal .modal-window__input-toggle img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
}
.reset-password-modal .modal-window__input-toggle:hover {
  opacity: 0.85;
}
.reset-password-modal
  .modal-window__input-wrapper:has(.modal-window__input-icon-right)
  .modal-window__input-toggle {
  right: 40px;
}
.reset-password-modal .modal-window__input {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  padding: 0 44px;
  color: #fff1cb;
  border: none;
  background: linear-gradient(180deg, #2b6ff9, #4f9aff);
  font-size: 14px;
  font-family: inherit;
  font-weight: 400;
  letter-spacing: -0.312px;
  outline: none;
  box-shadow:
    0 4px 16px #00000040,
    0 2px 8px #2b6ff933;
  transition: box-shadow 0.2s ease;
}
.reset-password-modal .modal-window__input::placeholder {
  color: #fff1cb99;
}
.reset-password-modal .modal-window__input:focus {
  border-radius: 8px;
  border: 1px solid var(--stroke, #fdc700);
  outline: none;
  box-shadow:
    0 4px 16px #00000040,
    0 2px 8px #2b6ff933;
}
.reset-password-modal .modal-window__input--error {
  box-shadow:
    0 4px 16px #00000040,
    0 0 0 2px #e53e3e99;
}
.reset-password-modal .modal-window__error {
  margin: 4px 0 0;
  font-size: 12px;
  color: #feb2b2;
}
.reset-password-modal .modal-window__submit {
  width: auto;
  min-width: 170px;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  margin-top: 16px;
  padding: 0 32px;
  border: 0;
  border-radius: 100px;
  overflow: hidden;
  cursor: pointer;
  color: #fff1cb;
  font-family: Fredoka, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 155%;
  transition:
    background 0.12s ease-out,
    box-shadow 0.12s ease-out,
    transform 80ms ease-out;
  background: linear-gradient(180deg, #00fafff5, #006bcbf5);
  border: 3px solid #05cefb;
  box-shadow:
    0 3px 4.2px #1022498c,
    inset 0 1px #fff3;
}
.reset-password-modal
  .modal-window__submit:hover:not(:disabled):not(.button--disabled) {
  transform: translateY(-1px);
  box-shadow:
    0 10px 24px #1022498c,
    0 6px 16px #0003,
    inset 0 2px #ffffff8c;
}
.reset-password-modal
  .modal-window__submit:active:not(:disabled):not(.button--disabled) {
  transform: translateY(0);
  background: linear-gradient(180deg, #006bcbf5, #00fafff5);
  box-shadow:
    0 1px 2px #1022498c,
    inset 0 2px 4px #00000040;
}
.reset-password-modal .modal-window__submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.reset-password-modal .modal-window__server {
  margin: 8px 0 0;
  font-size: 13px;
  text-align: center;
}
.reset-password-modal .modal-window__server--success {
  color: #68d391;
}
.reset-password-modal .modal-window__server--error {
  color: #feb2b2;
}
.new-password-modal {
  position: relative;
  width: 100%;
  max-width: 448px;
  border-radius: 16px;
  background: #040850;
  color: #fff;
  font-family: Fredoka, sans-serif;
  box-shadow: 0 24px 48px -12px #0006;
}
@media (max-width: 480px) {
  .new-password-modal {
    max-width: 100%;
    border-radius: 12px;
  }
}
.new-password-modal__inner {
  position: relative;
  padding: 24px 24px 28px;
}
@media (max-width: 480px) {
  .new-password-modal__inner {
    padding: 20px 20px 24px;
  }
}
.new-password-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  background-image: url(/geo-block/images/icons/icon-close.svg);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  filter: brightness(0) invert(1);
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}
.new-password-modal__close:hover {
  background-color: #fff3;
}
.new-password-modal__close:active {
  opacity: 0.85;
}
.new-password-modal .modal-window__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4px 0 20px;
}
.new-password-modal .modal-window__title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .new-password-modal .modal-window__title {
    font-size: 20px;
  }
}
.new-password-modal .modal-window__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.new-password-modal .modal-window__field {
  width: 100%;
}
.new-password-modal .modal-window__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}
.new-password-modal .modal-window__input-icon {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: opacity 0.2s ease;
}
.new-password-modal
  .modal-window__input-wrapper:has(.modal-window__input:placeholder-shown)
  .modal-window__input-icon {
  opacity: 0.6;
}
.new-password-modal .modal-window__input-icon-right {
  position: absolute;
  right: 14px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  filter: brightness(0) invert(1);
  opacity: 1;
}
.new-password-modal .modal-window__input-toggle {
  position: absolute;
  right: 12px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: opacity 0.2s ease;
}
.new-password-modal .modal-window__input-toggle img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
}
.new-password-modal .modal-window__input-toggle:hover {
  opacity: 0.85;
}
.new-password-modal
  .modal-window__input-wrapper:has(.modal-window__input-icon-right)
  .modal-window__input-toggle {
  right: 40px;
}
.new-password-modal .modal-window__input {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  padding: 0 44px;
  color: #fff1cb;
  border: none;
  background: linear-gradient(180deg, #2b6ff9, #4f9aff);
  font-size: 14px;
  font-family: inherit;
  font-weight: 400;
  letter-spacing: -0.312px;
  outline: none;
  box-shadow:
    0 4px 16px #00000040,
    0 2px 8px #2b6ff933;
  transition: box-shadow 0.2s ease;
}
.new-password-modal .modal-window__input::placeholder {
  color: #fff1cb99;
}
.new-password-modal .modal-window__input:focus {
  border-radius: 8px;
  border: 1px solid var(--stroke, #fdc700);
  outline: none;
  box-shadow:
    0 4px 16px #00000040,
    0 2px 8px #2b6ff933;
}
.new-password-modal .modal-window__input--error {
  box-shadow:
    0 4px 16px #00000040,
    0 0 0 2px #e53e3e99;
}
.new-password-modal .modal-window__error {
  margin: 4px 0 0;
  font-size: 12px;
  color: #feb2b2;
}
.new-password-modal .modal-window__submit {
  width: auto;
  min-width: 170px;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  margin-top: 16px;
  padding: 0 32px;
  border: 0;
  border-radius: 100px;
  overflow: hidden;
  cursor: pointer;
  color: #fff1cb;
  font-family: Fredoka, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 155%;
  transition:
    background 0.12s ease-out,
    box-shadow 0.12s ease-out,
    transform 80ms ease-out;
  background: linear-gradient(180deg, #00fafff5, #006bcbf5);
  border: 3px solid #05cefb;
  box-shadow:
    0 3px 4.2px #1022498c,
    inset 0 1px #fff3;
}
.new-password-modal
  .modal-window__submit:hover:not(:disabled):not(.button--disabled) {
  transform: translateY(-1px);
  box-shadow:
    0 10px 24px #1022498c,
    0 6px 16px #0003,
    inset 0 2px #ffffff8c;
}
.new-password-modal
  .modal-window__submit:active:not(:disabled):not(.button--disabled) {
  transform: translateY(0);
  background: linear-gradient(180deg, #006bcbf5, #00fafff5);
  box-shadow:
    0 1px 2px #1022498c,
    inset 0 2px 4px #00000040;
}
.new-password-modal .modal-window__submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.new-password-modal .modal-window__server {
  margin: 8px 0 0;
  font-size: 13px;
  text-align: center;
}
.new-password-modal .modal-window__server--success {
  color: #68d391;
}
.new-password-modal .modal-window__server--error {
  color: #feb2b2;
}
.text-gradient-gold {
  background: linear-gradient(180deg, #ffcb3b, #ff8c00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.daily-rewards {
  position: relative;
  width: 100%;
  max-width: 963px;
  min-height: 560px;
  padding: 48px 32px 24px;
  color: #fff;
  font-family: Fredoka, sans-serif;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #040850;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .daily-rewards {
    padding: 24px 0 20px;
    min-height: auto;
    max-height: 95vh;
    overflow-y: auto;
  }
}
.daily-rewards__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.daily-rewards__light {
  position: absolute;
  top: -500px;
  bottom: 0;
  width: 40%;
  max-width: 280px;
  pointer-events: none;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: screen;
  opacity: 0.7;
}
.daily-rewards__light--left {
  left: 0;
  background-image: url(/geo-block/images/light.png);
  background-position: left center;
}
.daily-rewards__light--right {
  right: 0;
  background-image: url(/geo-block/images/light-right.svg);
  background-position: right center;
}
@media (max-width: 768px) {
  .daily-rewards__light {
    width: 35%;
    max-width: 160px;
    opacity: 0.7;
  }
}
.daily-rewards__close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  cursor: pointer;
  background: url(/geo-block/images/icons/icon-close.svg) center/contain no-repeat;
  color: #fff;
  z-index: 2;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .daily-rewards__close {
    right: 16px;
    top: 16px;
  }
}
.daily-rewards__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .daily-rewards__header {
    margin-bottom: 12px;
  }
}
.daily-rewards__title {
  margin: 0 0 4px;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: var(
    --Text-color-accent-text,
    linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .daily-rewards__title {
    font-size: 24px;
  }
}
.daily-rewards__subtitle {
  margin: 0 0 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #fff1cb;
  text-transform: none;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .daily-rewards__subtitle {
    font-size: 12px;
    margin-bottom: 4px;
  }
}
.daily-rewards__streak {
  font-size: 16px;
  line-height: 1.3;
  color: #fff1cb;
  margin: 0 auto 16px;
}
@media (max-width: 768px) {
  .daily-rewards__streak {
    font-size: 11px;
  }
}
.daily-rewards__hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  z-index: 3;
}
.daily-rewards__error {
  margin: 12px 0;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  background: #ff00001f;
  border: 1px solid rgba(255, 0, 0, 0.35);
  z-index: 3;
}
.daily-rewards__map {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 435px;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  overflow: hidden;
}
.daily-rewards__map:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(/geo-block/images/reward/reward-bg.png) center/cover no-repeat;
  border-radius: 14px;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .daily-rewards__map:before {
    background-image: url(/geo-block/images/reward/reward-bg-mob.png);
  }
}
@media (max-width: 768px) {
  .daily-rewards__map {
    min-height: 540px;
  }
}
.daily-rewards__map-edges {
  position: absolute;
  inset: -2px;
  z-index: 1;
  pointer-events: none;
  border-radius: 14px;
  background-image:
    linear-gradient(0deg, #00055500, #040850 95%),
    linear-gradient(180deg, #00055500, #040850 95%),
    linear-gradient(270deg, #00055500, #040850 95%),
    linear-gradient(90deg, #00055500, #040850 95%);
  background-size:
    100% 36px,
    100% 36px,
    36px 100%,
    36px 100%;
  background-position:
    0 0,
    0 100%,
    0 0,
    100% 0;
  background-repeat: no-repeat;
}
.daily-rewards__days {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 350px;
}
.daily-rewards__day {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 110px;
}
@media (max-width: 768px) {
  .daily-rewards__day {
    width: 90px;
  }
}
.daily-rewards__day--pos-1 {
  top: 8%;
  left: 17%;
}
.daily-rewards__day--pos-2 {
  top: 48%;
  left: 3%;
}
.daily-rewards__day--pos-3 {
  top: 64%;
  left: 33%;
}
.daily-rewards__day--pos-4 {
  top: 74%;
  left: 70%;
  transform: translate(-50%);
}
.daily-rewards__day--pos-5 {
  top: 50%;
  right: 4%;
  left: auto;
}
.daily-rewards__day--pos-6 {
  top: 6%;
  right: 4%;
  left: auto;
}
.daily-rewards__day--pos-7 {
  top: 15%;
  right: 42%;
  left: auto;
}
@media (max-width: 768px) {
  .daily-rewards__day--pos-1 {
    top: 0%;
    left: 60%;
  }
  .daily-rewards__day--pos-2 {
    top: 2%;
    left: 34%;
    transform: translate(-50%);
  }
  .daily-rewards__day--pos-3 {
    top: 37%;
    right: -2%;
    left: auto;
  }
  .daily-rewards__day--pos-4 {
    top: 38%;
    left: 2%;
    transform: none;
  }
  .daily-rewards__day--pos-5 {
    top: 60%;
    left: 60%;
    right: auto;
    transform: translate(-50%);
  }
  .daily-rewards__day--pos-6 {
    top: 76%;
    right: 58%;
    left: auto;
    transform: none;
  }
  .daily-rewards__day--pos-7 {
    inset: auto auto -35% 70%;
    transform: translate(-50%);
  }
}
.daily-rewards__day-label {
  display: flex;
  padding: 2px 8px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffe100;
  margin-bottom: 6px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  border: 2px solid var(--stroke, #fdc700);
  background: #0065bff0;
  box-shadow: 0 3px 4.2px #1022498c;
}
@media (max-width: 768px) {
  .daily-rewards__day-label {
    font-size: 10px;
    margin-bottom: 4px;
  }
}
.daily-rewards__day-icon {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.daily-rewards__day-icon-claim,
.daily-rewards__day-icon-item {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.daily-rewards__day-icon-claim {
  background-image: url(/geo-block/images/reward/reward-claim.png);
  max-width: 75px;
  max-height: 75px;
}
.daily-rewards__day-icon-item {
  background-image: url(/geo-block/images/reward/reward-item.png);
  max-width: 75px;
  max-height: 75px;
}
.daily-rewards__day-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 24px;
  padding: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 9999px;
  border: 2px solid rgba(254, 240, 138, 0.5);
  background: linear-gradient(180deg, #ffae00, #ff3b00);
  box-shadow:
    0 6px 10.6px #fcd0bb inset,
    0 4px #991b1b,
    0 8px 10px #0000004d;
  cursor: default;
  font-family: Fredoka, sans-serif;
}
@media (max-width: 768px) {
  .daily-rewards__day-badge {
    font-size: 10px;
  }
}
.daily-rewards__day-badge--claimed {
  color: #fff1cb;
}
.daily-rewards__day-badge--amount {
  position: relative;
  cursor: pointer;
  color: #fff1cb;
  padding-left: 18px;
}
.daily-rewards__day-badge--amount .daily-rewards__day-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.daily-rewards__day-badge--amount .daily-rewards__day-badge-coin {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url(/geo-block/images/game/coin.png) center/contain no-repeat;
}
.daily-rewards__day-badge--amount.daily-rewards__day-badge--amount:disabled,
.daily-rewards__day-badge--amount.daily-rewards__day-badge--amount[disabled] {
  cursor: not-allowed;
  pointer-events: none;
}
.daily-rewards__day-badge--amount:hover:not(:disabled) {
  filter: brightness(1.08);
}
.daily-rewards__progress {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .daily-rewards__progress {
    margin-bottom: 12px;
  }
}
.daily-rewards__progress-track {
  height: 24px;
  border: 2px solid rgba(2, 112, 199, 0.4);
  border-radius: 999px;
  overflow: hidden;
  margin-inline: 80px;
}
@media (max-width: 768px) {
  .daily-rewards__progress-track {
    margin-inline: 16px;
  }
}
.daily-rewards__progress-bar {
  height: 100%;
  background: var(
    --frame-hover,
    linear-gradient(180deg, #0096e5 0%, #003097 95.09%)
  );
  border-radius: 999px;
  transition: width 0.3s ease;
}
.daily-rewards__progress-text {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 400;
  color: #fff1cb;
  text-align: center;
}
.daily-rewards__mob-collect {
  display: none;
  margin-top: 12px;
  z-index: 3;
  width: 100%;
  max-width: 310px;
  align-self: center;
  height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: Fredoka, sans-serif;
  border: none;
  cursor: pointer;
  color: #1a1a1a;
  background: linear-gradient(180deg, #ffd95a, #f7b500);
}
@media (max-width: 1024px) {
  .daily-rewards__mob-collect {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.daily-rewards__mob-collect:disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}
.logout-confirm-modal {
  position: relative;
  width: 100%;
  max-width: 448px;
  border-radius: 16px;
  background: #0f1737;
  color: #fff;
  font-family: Fredoka, sans-serif;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid rgba(240, 240, 240, 0.15);
  box-shadow: 0 24px 48px -12px #0006;
}
@media (max-width: 480px) {
  .logout-confirm-modal {
    max-width: 100%;
    border-radius: 12px;
  }
}
.logout-confirm-modal__inner {
  position: relative;
  padding: 48px 24px 32px;
}
@media (max-width: 480px) {
  .logout-confirm-modal__inner {
    padding: 44px 20px 28px;
  }
}
.logout-confirm-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  background-image: url(/geo-block/images/icons/icon-close.svg);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  filter: brightness(0) invert(1);
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}
.logout-confirm-modal__close:hover {
  background-color: #fff3;
}
.logout-confirm-modal__close:active {
  opacity: 0.85;
}
.logout-confirm-modal__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0 0 16px;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .logout-confirm-modal__title {
    font-size: 24px;
  }
}
.logout-confirm-modal__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
  color: #fff1cb;
  max-width: 384px;
  margin: 0 auto 28px;
}
.logout-confirm-modal__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.logout-confirm-modal__btn {
  min-width: 120px;
  height: 44px;
  padding: 0 28px;
  border-radius: 30px;
  border: 2px solid transparent;
  color: #fff1cb;
  font-family: Fredoka, sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.1s ease;
}
.logout-confirm-modal__btn:hover {
  opacity: 0.95;
}
.logout-confirm-modal__btn:active {
  transform: scale(0.98);
}
.logout-confirm-modal__btn--no,
.logout-confirm-modal__btn--yes {
  border: 2px solid transparent;
  background:
    linear-gradient(#0f1737, #0f1737) padding-box,
    linear-gradient(180deg, #fff392, #ffa100) border-box;
  box-shadow: 0 2px 8px #ffa10033;
}
.contact {
  position: relative;
  min-height: 100vh;
  background-color: #040850;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 192px 20px 72px;
  box-sizing: border-box;
  color: #fff;
  font-family: Fredoka, sans-serif;
}
@media (min-width: 768px) {
  .contact {
    justify-content: flex-end;
    padding-left: 24px;
    padding-right: 5%;
  }
}
@media (max-width: 480px) {
  .contact {
    padding: 142px 16px 40px;
  }
}
.contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg, #00055500 85%, #000338 99%),
    url(/geo-block/images/contact-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 480px) {
  .contact__bg {
    background-image: url(/geo-block/images/contact-bg-mob.png);
  }
}
.contact__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
}
.contact__title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .contact__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.contact__text {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .contact__text {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact__field {
  width: 100%;
}
.contact__field--textarea {
  margin-bottom: 4px;
}
.contact__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}
.contact__input-icon {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: opacity 0.2s ease;
}
.contact__input-wrapper:has(.contact__input:placeholder-shown)
  .contact__input-icon {
  opacity: 0.6;
}
.contact__input {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  padding: 0 44px;
  color: #fff1cb;
  border: none;
  background: linear-gradient(180deg, #2b6ff9, #4f9aff);
  font-size: 14px;
  font-family: inherit;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.312px;
  outline: none;
  box-shadow:
    0 4px 16px #00000040,
    0 2px 8px #2b6ff933;
  transition: box-shadow 0.2s ease;
}
.contact__input::placeholder {
  color: #fff1cb99;
}
.contact__input:focus {
  border-radius: 8px;
  border: 1px solid #fdc700;
  outline: none;
  box-shadow:
    0 4px 16px #00000040,
    0 2px 8px #2b6ff933;
}
.contact__input:-webkit-autofill,
.contact__input:-webkit-autofill:hover,
.contact__input:-webkit-autofill:focus,
.contact__input:-webkit-autofill:active {
  -webkit-text-fill-color: rgb(255, 241, 203);
  -webkit-box-shadow: 0 0 0 1000px #3b82f9 inset;
  box-shadow: 0 0 0 1000px #3b82f9 inset;
  transition: background-color 5000s ease-in-out 0s;
}
.contact__textarea {
  width: 100%;
  min-height: 120px;
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff1cb;
  border: none;
  background: linear-gradient(180deg, #2b6ff9, #4f9aff);
  font-size: 14px;
  font-family: inherit;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.312px;
  outline: none;
  resize: none;
  box-sizing: border-box;
  box-shadow:
    0 4px 16px #00000040,
    0 2px 8px #2b6ff933;
  transition: box-shadow 0.2s ease;
}
.contact__textarea::placeholder {
  color: #fff1cb99;
}
.contact__textarea:focus {
  border-radius: 8px;
  border: 1px solid #fdc700;
  outline: none;
  box-shadow:
    0 4px 16px #00000040,
    0 2px 8px #2b6ff933;
}
.contact__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 8px;
  padding: 8px;
  background: #040850;
  box-shadow: 0 4px 16px #00000040;
}
.contact__checkbox-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contact__checkbox-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255, 241, 203, 0.85);
  background: transparent;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.contact__checkbox-box:after {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2.5px solid #fff1cb;
  border-bottom: 2.5px solid #fff1cb;
  border-radius: 1px;
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.contact__checkbox-input:checked + .contact__checkbox-box {
  border-color: transparent;
  background: linear-gradient(145deg, #4f9aff, #2b6ff9);
  box-shadow: 0 1px 3px #0003;
}
.contact__checkbox-input:checked + .contact__checkbox-box:after {
  opacity: 1;
}
.contact__checkbox-text {
  font-size: 14px;
  line-height: 1.35;
  color: var(--Text-color-body, #fff1cb);
}
.contact__message {
  margin: 4px 0 0;
  font-size: 13px;
  text-align: center;
}
.contact__message--success {
  color: #68d391;
}
.contact__message--error {
  color: #feb2b2;
}
.contact__actions {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.contact__button {
  width: 100%;
  max-width: 280px;
  height: 72px;
  padding: 0 24px;
  border: none;
  cursor: pointer;
  color: #fff1cb;
  font-family: Fredoka, sans-serif;
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition:
    box-shadow 0.2s ease,
    transform 0.1s ease;
  border-radius: 9999px;
  border: 2px solid rgba(254, 240, 138, 0.5);
  background: var(
    --Buttons-button-1,
    linear-gradient(180deg, #ffae00 0%, #ff3b00 100%)
  );
  box-shadow:
    0 6px 10.6px #fcd0bb inset,
    0 4px #991b1b,
    0 8px 10px #0000004d;
}
.contact__button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow:
    0 6px 20px #00000040,
    0 3px 10px #ffa10066;
}
.contact__button:active:not(:disabled) {
  transform: translateY(0);
}
.contact__button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
@media (max-width: 480px) {
  .contact__button {
    width: 100%;
    height: 40px;
    font-size: 16px;
    max-width: none;
  }
}
.games-header-page {
  position: relative;
  background-color: #040850;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 0 72px;
  box-sizing: border-box;
  color: #fff;
}
.games-header-page__deco-light {
  position: absolute;
  top: -260px;
  bottom: 0;
  width: 320px;
  max-width: 28vw;
  min-height: 100%;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  mix-blend-mode: screen;
  background-image: url(/geo-block/images/light.png);
}
.games-header-page__deco-light--left {
  left: calc(-50vw + 50%);
  background-position: top left;
  transform: none;
}
.games-header-page__deco-light--right {
  right: calc(-50vw + 50%);
  background-position: top right;
  transform: scaleX(-1);
}
@media (max-width: 480px) {
  .games-header-page__deco-light {
    top: -160px;
    max-width: 40vw;
  }
}
@media (max-width: 1280px) {
  .games-header-page {
    padding: 24px 24px 56px;
  }
}
@media (max-width: 480px) {
  .games-header-page {
    padding: 24px 16px 40px;
    width: 100%;
    justify-content: center;
  }
}
.games-header-page .menu__link {
  height: 40px;
  padding-inline: 8px;
  min-width: 80px;
}
@media (max-width: 480px) {
  .games-header-page .menu__link {
    flex: 1;
  }
}
.games-header-page__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 52px;
  max-width: 1200px;
  gap: 0;
}
@media (max-width: 1024px) {
  .games-header-page__container {
    margin-top: 24px;
  }
}
.games-header-page__tabs {
  margin-right: 0;
}
.games-header-page__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-bottom: 71px;
}
@media (max-width: 1024px) {
  .games-header-page__top-row {
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .games-header-page__top-row {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 32px;
  }
}
.games-header-page__top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 423px;
}
@media (max-width: 480px) {
  .games-header-page__top {
    max-width: 100%;
    text-align: center;
  }
}
.games-header-page__title {
  margin: 0;
  font-family: Fredoka, sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 3px 5.5px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1024px) {
  .games-header-page__title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .games-header-page__title {
    font-size: 22px;
    text-align: center;
  }
}
.games-header-page__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 64px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .games-header-page__icons {
    gap: 16px;
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .games-header-page__icons {
    gap: 12px;
    margin-bottom: 32px;
  }
}
.games-header-page__icons .games-header-page__icon-card {
  opacity: 0;
  transform: translateY(28px);
  animation: none;
}
.games-header-page__icons--in-view .games-header-page__icon-card {
  animation: games-header-page-icon-card-float-in 0.5s ease-out forwards;
}
.games-header-page__icons--in-view .games-header-page__icon-card:nth-child(1) {
  animation-delay: 0s;
}
.games-header-page__icons--in-view .games-header-page__icon-card:nth-child(2) {
  animation-delay: 0.1s;
}
.games-header-page__icons--in-view .games-header-page__icon-card:nth-child(3) {
  animation-delay: 0.2s;
}
.games-header-page__icons--in-view .games-header-page__icon-card:nth-child(4) {
  animation-delay: 0.3s;
}
@keyframes games-header-page-icon-card-float-in {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.games-header-page__icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 282px;
  max-width: 100%;
  flex: 1 1 200px;
}
@media (max-width: 480px) {
  .games-header-page__icon-card {
    flex: 1 1 140px;
    min-width: 0;
    gap: 12px;
  }
}
.games-header-page__icon-img-wrap {
  position: relative;
  width: 198px;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .games-header-page__icon-img-wrap {
    width: 120px;
    height: 88px;
  }
}
.games-header-page__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.games-header-page__icon-card:first-child .games-header-page__icon-img {
  transform: scale(0.85);
}
.games-header-page__icon-label {
  margin: 0;
  font-family: Fredoka, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  color: transparent;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 3px 5.5px rgba(0, 0, 0, 0.25);
}
@media (max-width: 480px) {
  .games-header-page__icon-label {
    font-size: 14px;
  }
}
.games-header-page__outlet-wrap {
  width: 100vw;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px 48px;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .games-header-page__outlet-wrap {
    padding: 0 16px 20px;
  }
}
@media (max-width: 480px) {
  .games-header-page__outlet-wrap {
    padding: 0 16px 12px;
  }
}
.games-header-page__outlet-wrap .game-card {
  opacity: 0;
  transform: translateY(24px);
  animation: none;
}
.games-header-page__outlet-wrap--in-view .game-card {
  animation: games-header-page-game-card-float-in 0.45s ease-out forwards;
}
.games-header-page__outlet-wrap--in-view .game-card:nth-child(-n + 5) {
  animation-delay: 0s;
}
.games-header-page__outlet-wrap--in-view
  .game-card:nth-child(n + 6):nth-child(-n + 10) {
  animation-delay: 0.2s;
}
.games-header-page__outlet-wrap--in-view
  .game-card:nth-child(n + 11):nth-child(-n + 15) {
  animation-delay: 0.4s;
}
.games-header-page__outlet-wrap--in-view
  .game-card:nth-child(n + 16):nth-child(-n + 20) {
  animation-delay: 0.6s;
}
.games-header-page__outlet-wrap--in-view
  .game-card:nth-child(n + 21):nth-child(-n + 25) {
  animation-delay: 0.8s;
}
.games-header-page__outlet-wrap--in-view
  .game-card:nth-child(n + 26):nth-child(-n + 30) {
  animation-delay: 1s;
}
.games-header-page__outlet-wrap--in-view
  .game-card:nth-child(n + 31):nth-child(-n + 35) {
  animation-delay: 1.2s;
}
.games-header-page__outlet-wrap--in-view
  .game-card:nth-child(n + 36):nth-child(-n + 40) {
  animation-delay: 1.4s;
}
.games-header-page__outlet-wrap--in-view
  .game-card:nth-child(n + 41):nth-child(-n + 45) {
  animation-delay: 1.6s;
}
.games-header-page__outlet-wrap--in-view .game-card:nth-child(n + 46) {
  animation-delay: 1.8s;
}
@keyframes games-header-page-game-card-float-in {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.games-header-page__games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .games-header-page__games {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .games-header-page__games {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .games-header-page__games {
    gap: 16px;
  }
}
.games-header-page__reminder-section {
  position: relative;
  margin-top: 80px;
  width: 100vw;
  left: 50%;
  transform: translate(-50%);
  height: 540px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .games-header-page__reminder-section {
    margin-top: 48px;
    height: 480px;
  }
}
@media (max-width: 480px) {
  .games-header-page__reminder-section {
    margin-top: 32px;
    height: 420px;
  }
}
.games-header-page__reminder-section .games-header-page__reminder {
  opacity: 0;
  transform: translateY(40px);
  animation: none;
}
.games-header-page__reminder-section--in-view .games-header-page__reminder {
  animation: games-header-page-reminder-float-in 0.6s ease-out 0.25s forwards;
}
@keyframes games-header-page-reminder-float-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.games-header-page__reminder-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(0deg, #00055500 75%, #040850 97%),
    linear-gradient(180deg, #00055500 75%, #040850 97%),
    url(/geo-block/images/game/games-bg-extra-posib.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .games-header-page__reminder-bg {
    background-image:
      linear-gradient(0deg, #00055500 75%, #040850 97%),
      linear-gradient(180deg, #00055500 75%, #040850 97%),
      url(/geo-block/images/game/games-bg-extra-posib-mob.png);
  }
}
.games-header-page__reminder-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}
@media (max-width: 768px) {
  .games-header-page__reminder-inner {
    padding: 0 28px 16px;
    align-items: flex-start;
    justify-content: center;
  }
}
.games-header-page__reminder {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 28px 28px;
  border-radius: 50px;
  border: 5px solid #fdc700;
  background: linear-gradient(171deg, #0096e5 6.06%, #003097 92.4%);
  box-shadow:
    0 0 20px #fdc70026,
    0 8px 24px #00000059;
}
@media (max-width: 768px) {
  .games-header-page__reminder {
    width: 100%;
    border-radius: 24px;
    padding: 16px 8px;
  }
}
.games-header-page__cards-section {
  width: 100%;
  max-width: 1200px;
  padding: 80px 0 48px;
}
@media (max-width: 768px) {
  .games-header-page__cards-section {
    padding: 80px 0 64px;
  }
}
.games-header-page__cards-section .games-header-page__card {
  opacity: 0;
  transform: translateY(32px);
  animation: none;
}
.games-header-page__cards-section--in-view .games-header-page__card {
  animation: games-header-page-card-float-in 0.55s ease-out forwards;
}
.games-header-page__cards-section--in-view
  .games-header-page__card:nth-child(1) {
  animation-delay: 0s;
}
.games-header-page__cards-section--in-view
  .games-header-page__card:nth-child(2) {
  animation-delay: 0.2s;
}
@keyframes games-header-page-card-float-in {
  0% {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.games-header-page__cards {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
@media (max-width: 900px) {
  .games-header-page__cards {
    flex-direction: column;
    align-items: center;
    align-items: stretch;
  }
}
.games-header-page__card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: end;
  flex: 1;
  min-width: 0;
  min-height: 214px;
  border-radius: 32px;
  padding: 32px;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position:
    left bottom,
    left bottom,
    0 0;
  box-shadow: 0 4px 24px #00000040;
  cursor: pointer;
  transition:
    box-shadow 0.25s ease,
    transform 0.2s ease;
  overflow: hidden;
  z-index: 2;
}
.games-header-page__card--card--1 {
  overflow: visible;
  background-image:
    radial-gradient(
      ellipse 120% 120% at 15% 85%,
      rgba(60, 215, 255, 0.7) 0%,
      rgba(60, 215, 255, 0.08) 60%,
      transparent 70%
    ),
    linear-gradient(170.99deg, #0096e5 6.06%, #003097 92.4%);
  background-size:
    260px 260px,
    auto;
}
@media (max-width: 480px) {
  .games-header-page__card--card--1 {
    background-size:
      260px 260px,
      auto;
  }
}
.games-header-page__card--card--2 {
  overflow: visible;
  background-image:
    url(/geo-block/images/game/right-img.png),
    radial-gradient(
      ellipse 120% 120% at 15% 85%,
      rgba(60, 215, 255, 0.7) 0%,
      rgba(60, 215, 255, 0.08) 60%,
      transparent 70%
    ),
    linear-gradient(170.99deg, #0096e5 6.06%, #003097 92.4%);
  background-size:
    234px auto,
    260px 260px,
    auto;
}
@media (max-width: 480px) {
  .games-header-page__card--card--2 {
    background-size:
      214px auto,
      260px 260px,
      auto;
  }
}
.games-header-page__card:hover {
  box-shadow: 0 8px 16px #00d7ff59;
  transform: translateY(-2px);
}
@media (max-width: 1024px) {
  .games-header-page__card {
    max-width: 100%;
    width: 100%;
    border-radius: 32px;
  }
}
@media (max-width: 480px) {
  .games-header-page__card {
    min-height: 152px;
    border-radius: 24px;
    padding: 24px;
  }
  .games-header-page__card--card--1 {
    background-image:
      radial-gradient(
        ellipse 120% 120% at 15% 85%,
        rgba(60, 215, 255, 0.7) 0%,
        rgba(60, 215, 255, 0.08) 60%,
        transparent 70%
      ),
      linear-gradient(170.99deg, #0096e5 6.06%, #003097 92.4%);
  }
  .games-header-page__card--card--2 {
    background-image:
      url(/geo-block/images/game/right-img.png),
      radial-gradient(
        ellipse 120% 120% at 15% 85%,
        rgba(60, 215, 255, 0.7) 0%,
        rgba(60, 215, 255, 0.08) 60%,
        transparent 70%
      ),
      linear-gradient(170.99deg, #0096e5 6.06%, #003097 92.4%);
  }
}
.games-header-page__card-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.games-header-page__card-deco img {
  display: block;
  max-width: none;
  height: auto;
  object-fit: contain;
}
.games-header-page__card-deco--main {
  left: -10px;
  bottom: -16px;
  width: 270px;
  height: auto;
  z-index: 2;
}
.games-header-page__card-deco--main img {
  width: 270px;
  height: auto;
}
@media (max-width: 480px) {
  .games-header-page__card-deco--main {
    left: -12px;
    bottom: -10px;
    width: 180px;
  }
  .games-header-page__card-deco--main img {
    width: 180px;
  }
}
.games-header-page__card-deco--top1 {
  left: -30px;
  bottom: 0;
  width: 120px;
  height: auto;
  z-index: 3;
}
.games-header-page__card-deco--top1 img {
  width: 120px;
  height: auto;
}
@media (max-width: 480px) {
  .games-header-page__card-deco--top1 {
    left: -16px;
    bottom: 0;
    width: 80px;
    z-index: 1;
  }
  .games-header-page__card-deco--top1 img {
    width: 80px;
  }
}
.games-header-page__card-deco--top2 {
  left: 190px;
  bottom: 0;
  width: 120px;
  height: auto;
  z-index: 0;
}
.games-header-page__card-deco--top2 img {
  width: 120px;
  height: auto;
}
@media (max-width: 480px) {
  .games-header-page__card-deco--top2 {
    left: 90px;
    bottom: 0;
    width: 80px;
  }
  .games-header-page__card-deco--top2 img {
    width: 80px;
  }
}
.games-header-page__card-deco--right-top1 {
  left: 50px;
  bottom: 94px;
  width: 200px;
  height: auto;
  z-index: 3;
}
.games-header-page__card-deco--right-top1 img {
  width: 200px;
  height: auto;
}
@media (max-width: 480px) {
  .games-header-page__card-deco--right-top1 {
    left: 40px;
    bottom: 64px;
    width: 160px;
  }
  .games-header-page__card-deco--right-top1 img {
    width: 160px;
    height: auto;
  }
}
.games-header-page__card-deco--right-top2 {
  left: 100px;
  bottom: -10px;
  width: 160px;
  height: auto;
  z-index: 0;
}
.games-header-page__card-deco--right-top2 img {
  width: 160px;
  height: auto;
}
@media (max-width: 480px) {
  .games-header-page__card-deco--right-top2 {
    left: 75px;
    bottom: -10px;
    width: 120px;
  }
  .games-header-page__card-deco--right-top2 img {
    width: 120px;
    height: auto;
  }
}
.games-header-page__card-content {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 290px;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  flex: 1;
}
@media (max-width: 480px) {
  .games-header-page__card-content {
    max-width: 180px;
  }
}
.games-header-page__card-title {
  line-height: 1.3;
}
.games-header-page__card-button {
  height: 40px;
  padding: 0 24px;
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 480px) {
  .games-header-page__card-button {
    font-size: 14px;
  }
}
.hero-million {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #040850;
  padding: 100px 24px 24px;
  overflow: hidden;
  display: flex;
  align-items: end;
  justify-content: center;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .hero-million {
    padding: 80px 24px 24px;
  }
}
@media (max-width: 480px) {
  .hero-million {
    padding: 72px 16px 40px;
  }
}
.hero-million__bg-casino {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80vh;
  height: 80dvh;
  z-index: 0;
  background:
    linear-gradient(0deg, #04085000, #040850 90%),
    linear-gradient(180deg, #04085000, #040850), url(/geo-block/images/game-bg.png);
  background-size:
    auto 200px,
    auto 200px,
    cover;
  background-position:
    center top,
    center bottom,
    center center;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .hero-million__bg-casino {
    height: 90vh;
    height: 90dvh;
  }
}
@media (max-width: 480px) {
  .hero-million__bg-casino {
    height: 100vh;
    height: 100dvh;
    background-image:
      linear-gradient(0deg, #04085000, #040850 90%),
      linear-gradient(180deg, #04085000, #040850 90%),
      url(/geo-block/images/games-bg-mob.png);
    background-size:
      auto 200px,
      auto 200px,
      cover;
    background-position:
      center top,
      center bottom,
      center bottom;
  }
}
.hero-million__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-million__pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 8px;
  padding: 32px 24px;
  border: 5px solid #fdc700;
  border-radius: 50px;
  background: linear-gradient(178deg, #0096e5 6%, #003097 92%);
  box-sizing: border-box;
  animation: hero-million-pill-appear 0.65s ease-out 0.2s both;
}
@media (max-width: 480px) {
  .hero-million__pill {
    border-radius: 24px;
    padding: 24px 16px;
    border-width: 4px;
  }
}
@keyframes hero-million-pill-appear {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.hero-million__title-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 80px;
}
@media (max-width: 1024px) {
  .hero-million__title-wrap {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .hero-million__title-wrap {
    padding: 0;
  }
}
.hero-million__title {
  margin: 0;
  font-family: Fredoka, sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  color: transparent;
  background: linear-gradient(180deg, #fff392 24%, #ffa100 68%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 3px 5.5px rgba(0, 0, 0, 0.25);
}
@media (max-width: 480px) {
  .hero-million__title {
    font-size: 18px;
  }
}
.hero-million__coin {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  height: 81px;
  object-fit: contain;
  filter: drop-shadow(0 5px 10.7px rgba(0, 0, 0, 0.25));
  pointer-events: none;
}
.hero-million__coin--left {
  left: 0;
}
.hero-million__coin--right {
  right: 0;
}
@media (max-width: 768px) {
  .hero-million__coin {
    display: none;
  }
}
.hero-million__disclaimer {
  margin: 0;
  font-family: Fredoka, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #fff1cb;
}
@media (max-width: 480px) {
  .hero-million__disclaimer {
    font-size: 14px;
    line-height: 20px;
  }
}
.hero-million__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 3;
  margin-top: 100px;
  margin-bottom: 24px;
  position: relative;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1024px) {
  .hero-million__badges {
    margin-top: 20px;
    margin-bottom: 0;
    gap: 6px;
  }
}
.hero-million__badges--desktop {
  display: flex;
}
@media (max-width: 1024px) {
  .hero-million__badges--desktop {
    display: none;
  }
}
.hero-million__badges--mobile {
  display: flex;
}
@media (min-width: 1024px) {
  .hero-million__badges--mobile {
    display: none;
  }
}
.hero-million__badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 480px) {
  .hero-million__badges-row {
    gap: 8px;
  }
}
.hero-million__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
@media (min-width: 480px) {
  .hero-million__badge {
    width: 36px;
    height: 36px;
  }
}
.hero-million__badge-icon {
  width: 20px;
  height: 20px;
}
@media (min-width: 480px) {
  .hero-million__badge-icon {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 480px) {
  .hero-million__badge-text {
    font-size: 12px;
  }
}
.politic-page {
  position: relative;
  background-color: #040850;
  display: flex;
  justify-content: center;
  padding: 192px 120px 72px;
  box-sizing: border-box;
  color: #fff;
  min-height: 100vh;
}
@media (max-width: 1024px) {
  .politic-page {
    padding: 142px 24px 60px;
  }
}
@media (max-width: 480px) {
  .politic-page {
    padding: 100px 16px 40px;
  }
}
.politic-page:before,
.politic-page:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 320px;
  max-width: 28vw;
  min-height: 100%;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  pointer-events: none;
  mix-blend-mode: screen;
}
.politic-page:before {
  left: 0;
  background-image: url(/geo-block/images/light.png);
  background-position: top left;
}
.politic-page:after {
  right: 0;
  background-image: url(/geo-block/images/light.png);
  background-position: top right;
  transform: scaleX(-1);
}
.politic-page__bg {
  position: absolute;
  top: 0;
  width: 100%;
}
.politic-page__container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 1180px;
  z-index: 2;
}
.politic-page__title {
  font-family: Fredoka, sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 32px;
}
@media (max-width: 480px) {
  .politic-page__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
  }
}
.politic-page__text {
  font-family: Fredoka, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
  color: #fff1cb;
}
@media (max-width: 480px) {
  .politic-page__text {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.31px;
    text-align: left;
    color: #fff1cb;
  }
}
.support-email {
  margin-right: auto;
}
.promotions {
  position: relative;
  background-color: #040850;
  display: flex;
  justify-content: center;
  padding: 184px 52px 64px;
  box-sizing: border-box;
  min-height: 100vh;
}
@media (max-width: 1024px) {
  .promotions {
    padding: 118px 24px 40px;
  }
}
@media (max-width: 480px) {
  .promotions {
    padding: 118px 16px 40px;
  }
}
.promotions__bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 646px;
  background:
    linear-gradient(0deg, #0a0d2200, #0a0d22 98%),
    linear-gradient(180deg, #0a0d2200, #0a0d22 98%), url(/geo-block/images/hero-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .promotions__bg {
    height: 472px;
  }
}
@media (max-width: 480px) {
  .promotions__bg {
    height: 472px;
  }
}
.promotions__content {
  z-index: 2;
  color: #fff;
  font-family: Fredoka, sans-serif;
}
.promotions__top {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 120px;
}
.promotions__text {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.promotions__title {
  text-transform: uppercase;
  font-size: 76px;
}
.promotions__sub {
  font-size: 24px;
  font-weight: 600;
}
.promotions__info {
  width: 100%;
  max-width: 585px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  align-self: end;
}
.promotions__cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}
.promotions__card {
  display: flex;
  flex-direction: column;
  max-width: 393px;
  height: 448px;
  border-radius: 10px;
  border: 1px solid #2a3045;
  background-color: #11142e;
}
.promotions__card-ch {
  width: 370px;
  height: 319px;
  position: absolute;
  bottom: 0;
  right: auto;
  left: auto;
}
.promotions__card-top {
  position: relative;
  width: 100%;
  height: 224px;
  background-color: #5115a9;
  border-radius: 10px;
}
.promotions__card-top--1 {
  background-image: url(/geo-block/images/prom-1.png);
}
.promotions__card-top--2 {
  background-image: url(/geo-block/images/prom-2.png);
}
.promotions__card-top--3 {
  bottom: -4px;
  background-image: url(/geo-block/images/prom-3.png);
}
.promotions__card-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px 24px;
}
.games-header-page__disclaimer--promotions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.games-header-page__disclaimer-sub--promotions {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.verify-email {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 72px;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .verify-email {
    padding: 100px 24px 60px;
  }
}
@media (max-width: 480px) {
  .verify-email {
    padding: 88px 16px 40px;
  }
}
.verify-email__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, #00055500 85%, #000338 99%),
    url(/geo-block/images/forbidden-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 480px) {
  .verify-email__bg {
    background-image:
      linear-gradient(180deg, #00055500 85%, #000338 99%),
      url(/geo-block/images/forbidden-bg-mob.png);
    background-position: center center;
  }
}
.verify-email__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 700px;
  text-align: center;
  padding: 16px 6px;
  border-radius: 50px;
  border: 5px solid var(--stroke, #fdc700);
  background: var(
    --frame-default,
    linear-gradient(171deg, #0096e5 6.06%, #003097 92.4%)
  );
}
@media (max-width: 1024px) {
  .verify-email__content {
    max-width: 555px;
  }
}
.verify-email__img {
  display: block;
  max-width: 260px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .verify-email__img {
    max-width: 200px;
  }
}
@media (max-width: 480px) {
  .verify-email__img {
    max-width: 200px;
  }
}
.verify-email__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.verify-email__title {
  font-family: Fredoka, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1024px) {
  .verify-email__title {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (max-width: 480px) {
  .verify-email__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
  }
}
.verify-email__message {
  font-family: Fredoka, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.31px;
  text-align: center;
  vertical-align: middle;
  color: #ffe7a6;
  max-width: 360px;
  margin: 0;
}
@media (max-width: 480px) {
  .verify-email__message {
    font-size: 10px;
    line-height: 100%;
    letter-spacing: -0.31px;
    max-width: 220px;
  }
}
.verify-email__message--success {
  color: #ffcb3b;
  font-weight: 600;
}
.verify-email__message--error {
  color: #ff7171;
  font-weight: 600;
}
.verify-email__cta {
  margin-top: 8px;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.verify-email__cta:hover:not(:disabled) {
  transform: translateY(-1px);
}
.verify-email__cta:active {
  transform: translateY(0);
}
.verify-email__cta:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}
@media (max-width: 480px) {
  .verify-email__cta {
    padding: 14px 32px;
    font-size: 13px;
  }
}
.forbidden-page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 72px;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .forbidden-page {
    padding: 100px 24px 60px;
  }
}
@media (max-width: 480px) {
  .forbidden-page {
    padding: 88px 16px 40px;
  }
}
.forbidden-page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, #00055500 85%, #000338 99%),
    url(/geo-block/images/forbidden-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 480px) {
  .forbidden-page__bg {
    background-image:
      linear-gradient(180deg, #00055500 85%, #000338 99%),
      url(/geo-block/images/forbidden-bg-mob.png);
    background-position: center center;
  }
}
.forbidden-page__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 700px;
  text-align: center;
  padding: 16px 6px;
  gap: 8px;
  border-radius: 50px;
  border: 5px solid var(--stroke, #fdc700);
  background: var(
    --frame-default,
    linear-gradient(171deg, #0096e5 6.06%, #003097 92.4%)
  );
}
.forbidden-page__img {
  display: block;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 480px) {
  .forbidden-page__img {
    max-width: 200px;
  }
}
.forbidden-page__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.forbidden-page__title {
  font-family: Fredoka, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .forbidden-page__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
  }
}
.forbidden-page__sub {
  font-family: Fredoka, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.31px;
  text-align: center;
  vertical-align: middle;
  color: #ffe7a6;
  max-width: 360px;
}
@media (max-width: 480px) {
  .forbidden-page__sub {
    font-size: 10px;
    line-height: 100%;
    letter-spacing: -0.31px;
    max-width: 220px;
  }
}
.forbidden-page__cta {
  margin-top: 8px;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.forbidden-page__cta:hover {
  transform: translateY(-1px);
}
.forbidden-page__cta:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .forbidden-page__cta {
    padding: 14px 32px;
    font-size: 13px;
  }
}
.toast-root {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  font-family: Fredoka, sans-serif;
}
@media (max-width: 480px) {
  .toast-root {
    right: 12px;
    left: 12px;
    bottom: 12px;
    align-items: center;
  }
}
.toast-root .toast {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #0a0d22eb;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 60px #0000008c;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  pointer-events: auto;
  animation: toast-in 0.26s ease-out;
  width: 320px;
  padding: 14px 44px 14px 14px;
}
@media (max-width: 480px) {
  .toast-root .toast {
    max-width: 320px;
    width: 100%;
    height: fit-content;
  }
}
.toast-root .toast:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  opacity: 0.95;
}
.toast-root .toast:after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.35;
  pointer-events: none;
}
.toast-root .toast--success:before {
  background: linear-gradient(180deg, #5115a9, #3cd7ff);
}
.toast-root .toast--success:after {
  background: radial-gradient(circle, #3cd7ff, transparent 70%);
}
.toast-root .toast__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0.75;
}
.toast-root .toast__close:before,
.toast-root .toast__close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #ffffffe6;
}
.toast-root .toast__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.toast-root .toast__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.toast-root .toast__close:hover {
  opacity: 1;
}
.toast-root .toast__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.toast-root .toast__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.toast-root .toast__top {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.toast-root .toast__title {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffffb8;
}
.toast-root .toast__message {
  font-size: 14px;
  line-height: 1.3;
  color: #ffffffc7;
  max-width: 280px;
}
@media (max-width: 480px) {
  .toast-root .toast__message {
    font-size: 13px;
    max-width: 210px;
  }
}
.toast-root .toast--reward {
  display: flex;
  align-items: center;
  width: 460px;
  min-height: 180px;
  padding: 20px 22px 18px;
}
@media (max-width: 480px) {
  .toast-root .toast--reward {
    max-width: 320px;
    width: 100%;
    height: fit-content;
  }
}
.toast-root .toast--reward .toast__message {
  max-width: 260px;
}
.toast-root .toast__amount {
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #ffcb3b;
}
@media (max-width: 480px) {
  .toast-root .toast__amount {
    font-size: 34px;
  }
}
.toast-root .toast__amount-unit {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.08em;
  opacity: 0.9;
}
@media (max-width: 480px) {
  .toast-root .toast__amount-unit {
    font-size: 16px;
  }
}
.toast-root .toast__right {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .toast-root .toast__right {
    width: 96px;
    height: 96px;
  }
}
.toast-root .toast__icon {
  width: 140px;
  height: 140px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 480px) {
  .toast-root .toast__icon {
    width: 96px;
    height: 96px;
  }
}
.toast-root .toast__icon--5000 {
  background-image: url(/geo-block/images/shop/daily-rewards/coin-5000.png);
}
.toast-root .toast__icon--10000 {
  background-image: url(/geo-block/images/shop/daily-rewards/coin-10000.png);
}
.toast-root .toast__icon--20000 {
  background-image: url(/geo-block/images/shop/daily-rewards/coin-20000.png);
}
.toast-root .toast__icon--35000 {
  background-image: url(/geo-block/images/shop/daily-rewards/coin-35000.png);
}
.toast-root .toast__icon--60000 {
  background-image: url(/geo-block/images/shop/daily-rewards/coin-60000.png);
}
.toast-root .toast__icon--100000 {
  background-image: url(/geo-block/images/shop/daily-rewards/coin-100000.png);
}
.toast-root .toast__icon--200000 {
  background-image: url(/geo-block/images/shop/daily-rewards/coin-200000.png);
}
@keyframes toast-in {
  0% {
    opacity: 0;
    transform: translateY(10px) translate(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translate(0);
  }
}
.region-restricted-page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 72px;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .region-restricted-page {
    padding: 100px 24px 60px;
  }
}
@media (max-width: 480px) {
  .region-restricted-page {
    padding: 88px 16px 40px;
  }
}
.region-restricted-page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, #00055500 85%, #000338 99%),
    url(/geo-block/images/forbidden-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 480px) {
  .region-restricted-page__bg {
    background-image:
      linear-gradient(180deg, #00055500 85%, #000338 99%),
      url(/geo-block/images/forbidden-bg-mob.png);
    background-position: center center;
  }
}
.region-restricted-page__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 700px;
  text-align: center;
  padding: 16px 6px;
  gap: 8px;
  border-radius: 50px;
  border: 5px solid var(--stroke, #fdc700);
  background: var(
    --frame-default,
    linear-gradient(171deg, #0096e5 6.06%, #003097 92.4%)
  );
}
.region-restricted-page__img {
  display: block;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 480px) {
  .region-restricted-page__img {
    max-width: 200px;
  }
}
.region-restricted-page__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.region-restricted-page__title {
  font-family: Fredoka, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff392 24.14%, #ffa100 68.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .region-restricted-page__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
  }
}
.region-restricted-page__sub {
  font-family: Fredoka, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.31px;
  text-align: center;
  vertical-align: middle;
  color: #ffe7a6;
  max-width: 360px;
}
@media (max-width: 480px) {
  .region-restricted-page__sub {
    font-size: 10px;
    line-height: 100%;
    letter-spacing: -0.31px;
    max-width: 220px;
  }
}
.region-restricted-page__cta {
  margin-top: 8px;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.region-restricted-page__cta:hover {
  transform: translateY(-1px);
}
.region-restricted-page__cta:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .region-restricted-page__cta {
    padding: 14px 32px;
    font-size: 13px;
  }
}
