.footer {
  box-sizing: border-box;
  width: 100%;
  padding: 24px 15px 20px;
}
@media (max-width: 576px) {
  .footer {
    padding: 20px 10px 16px;
  }
}
.footer .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.footer__menu {
  padding: 24px 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 576px) {
  .footer__menu {
    padding: 16px 0 8px;
  }
}
.footer__nav {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
  flex-wrap: wrap;
  gap: 4px 0;
}
.footer__nav li {
  margin: 6px 10px;
}
@media (max-width: 576px) {
  .footer__nav li {
    margin: 4px 8px;
  }
}
.footer__nav a {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  transition: opacity 0.2s ease;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
@media (max-width: 576px) {
  .footer__nav a {
    font-size: 14px;
  }
}
.footer__nav a:hover {
  opacity: 0.8;
}
.footer__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}
@media (max-width: 576px) {
  .footer__icons {
    gap: 10px;
    padding: 16px 0;
  }
}
.footer__icons--crypto {
  gap: 16px;
}
.footer__icons--payment {
  padding-top: 0;
  gap: 20px;
}
.footer__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer__icon img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.footer__icons--crypto .footer__icon img {
  max-width: 100px;
  border-radius: 50%;
  height: 50px;
}
.footer__icons--payment .footer__icon img {
  width: auto;
  opacity: 1;
  max-width: 100%;
  filter: grayscale(1);
  height: 50px;
}
.footer__description {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 0 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
@media (max-width: 576px) {
  .footer__description {
    padding: 8px 0 12px;
    font-size: 13px;
    line-height: 20px;
  }
}
.footer__description p {
  margin: 0 0 12px;
}
.footer__description p:last-child {
  margin-bottom: 0;
}
.footer__legal {
  max-width: 900px;
  margin: 0 auto 16px;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.footer__wrap {
  padding: 15px 0 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 990px) {
  .footer__wrap {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .footer__wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding: 15px 0;
  }
}
.footer__logo {
  max-width: 100%;
  height: 45px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .footer__logo {
    margin: 0 auto;
  }
}
.footer__text {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 22px;
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
@media (max-width: 990px) {
  .footer__text {
    text-align: center;
  }
}

.modal-bg {
  opacity: 0.6;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  z-index: 99;
  background: #000;
  visibility: hidden;
}

.modal-game {
  position: fixed;
  max-width: 700px;
  width: 95%;
  margin: 0 auto;
  padding: 40px 15px 15px 15px;
  border-radius: 10px;
  background: #fff;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  z-index: 9999;
  height: 450px;
  visibility: hidden;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.0784313725);
}
@media (max-width: 990px) {
  .modal-game {
    max-width: 900px;
    height: 390px;
  }
}
.modal-game__close {
  position: absolute;
  right: 10px;
  top: 7px;
  cursor: pointer;
}
.modal-game__wrap {
  display: flex;
}
.modal-game iframe {
  width: 100%;
  box-sizing: border-box;
  height: 390px;
  object-fit: cover;
}
@media (max-width: 990px) {
  .modal-game iframe {
    height: 390px;
  }
}

.modal-active {
  visibility: visible;
}

.btn-up {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9;
  background: #cf222d;
}

/*# sourceMappingURL=footer.css.map */
