body {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.03em;
  background: #06080D;
  overflow-x: hidden;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

@media (min-width: 1200px) {
  main {
    gap: 60px;
  }
}

.container {
  width: 100%;
  padding: 0 12px;
  margin: 0 auto;
  max-width: 430px;
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 24px;
  }
}

.t1 {
  font-weight: 800;
  font-size: 32px;
  line-height: 90%;
}

@media (min-width: 1200px) {
  .t1 {
    font-size: 72px;
  }
}

.t2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: -0.03em;
}

.link {
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.03em;
}

.link:hover, .link:focus {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  color: #3a79e9;
}

.link:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  color: #0baeff;
}

.btn {
  font-family: inherit;
  width: 100%;
  border-radius: 10px;
  padding: 20px 25px;
  border: none;
  background: #3a79e9;
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.btn:hover, .btn:focus {
  background: #0baeff;
}

.btn:active {
  color: #3a79e9;
}

.btn.w-full {
  max-width: 100%;
}

.header__pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}

.hero {
  padding-top: 12px;
}

@media (min-width: 1200px) {
  .hero {
    padding-top: 24px;
  }
}

.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 12px;
  border-radius: 60px;
  padding: 24px 12px 12px;
  background: #101724;
  background-image: url("../img/hero.png");
  background-position: bottom -110px center;
  background-repeat: no-repeat;
  background-size: 500px;
  padding-bottom: 240px;
}

@media (min-width: 1200px) {
  .hero__content {
    gap: 24px;
    padding: 24px 40px 43px;
    padding-bottom: 310px;
    background-size: 650px;
    background-position: bottom -170px center;
  }
}

.hero__title, .hero__descr {
  max-width: 760px;
  width: 100%;
  margin: auto;
}

.hero__logo {
  font-weight: 800;
  font-size: 24px;
  line-height: 80%;
  letter-spacing: -0.03em;
  text-align: center;
}

@media (min-width: 1200px) {
  .hero__logo {
    margin-bottom: 30px;
  }
}

.platforms__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

@media (min-width: 1200px) {
  .platforms__content {
    gap: 32px;
  }
}

.platforms__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  justify-items: center;
  gap: 12px;
  border-radius: 24px;
  padding: 24px;
  -webkit-box-shadow: 0 0 30px 0 #3a79e9;
          box-shadow: 0 0 30px 0 #3a79e9;
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 1200px) {
  .platforms__item {
    padding: 24px;
    gap: 40px;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.platforms__logo {
  width: 100%;
  height: 100%;
  max-width: 210px;
  max-height: 120px;
  padding: 20px;
  border: 1px solid rgba(130, 219, 20, 0.24);
  border-radius: 10px;
  background: #3a79e9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.platforms__logo-img {
  width: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.platforms__bonus-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

@media (min-width: 1200px) {
  .platforms__bonus-block {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.platforms__bonus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.platforms__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.platforms__title {
  font-weight: 800;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: -0.03em;
}

.platforms__subtitle {
  font-weight: 600;
  font-size: 17px;
  line-height: 150%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.platforms__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 4px;
}

.platforms__rating-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  text-align: center;
}

@media (min-width: 768px) {
  .platforms__rating-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    text-align: center;
  }
}

.platforms__rating-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.platforms__rating-stars img {
  width: 100%;
  max-width: 14px;
}

@media (min-width: 768px) {
  .platforms__rating-stars img {
    max-width: 25px;
  }
}

.platforms__descr {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.03em;
}

.disclaimer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  border-radius: 40px;
  padding: 24px;
  background: #101724;
}

@media (min-width: 1200px) {
  .disclaimer__content {
    padding: 32px;
  }
}

.footer {
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  border-radius: 50px;
  padding: 12px;
  background: #101724;
}

@media (min-width: 768px) {
  .footer__content {
    gap: 32px;
    padding: 56px 80px 24px;
  }
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1200px) {
  .footer__list {
    width: 100%;
    gap: 50px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__external-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1200px) {
  .footer__external-links {
    gap: 24px;
  }
}

.footer__copy {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0px 0px;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-popup {
  width: 100%;
  position: fixed;
  z-index: 5;
  bottom: 0;
  left: 0;
  margin-bottom: 10px;
  display: none;
}

.cookie-popup.open {
  display: block;
}

@media (min-width: 1200px) {
  .cookie-popup {
    max-width: 100%;
  }
}

.cookie-popup__content {
  border: 1px solid rgba(232, 232, 237, 0.08);
  border-radius: 40px;
  padding: 24px 20px;
  -webkit-box-shadow: 0 0 32px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 32px 24px rgba(0, 0, 0, 0.15);
  background: #101724;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
  font-weight: 300;
  font-size: 18px;
  line-height: 130%;
}

@media (min-width: 1200px) {
  .cookie-popup__content {
    padding: 40px;
  }
}

.cookie-popup__title {
  font-weight: 800;
  font-size: 50px;
  line-height: 120%;
}

.cookie-popup__btns {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.cookie-popup__btns .btn {
  max-width: 100%;
}

@media (min-width: 768px) {
  .cookie-popup__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.age-popup {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background: #020202e6;
}

.age-popup.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.age-popup__content {
  width: 100%;
  max-width: 600px;
  margin: auto;
  border: 1px solid rgba(232, 232, 237, 0.08);
  border-radius: 40px;
  padding: 24px 20px;
  -webkit-box-shadow: 0 0 32px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 32px 24px rgba(0, 0, 0, 0.15);
  background: #101724;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

@media (min-width: 1200px) {
  .age-popup__content {
    padding: 35px;
    gap: 22px;
  }
}

.age-popup__title {
  font-weight: 900;
  font-size: 34px;
  line-height: 1.1;
  text-transform: uppercase;
}

.age-popup__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.age-popup__wrapper .btn {
  max-width: 100%;
}

@media (min-width: 768px) {
  .age-popup__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.pages {
  margin-top: 100px;
  margin-bottom: 100px;
}

.pages__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.pages__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.pages a {
  display: inline;
}
/*# sourceMappingURL=styles.css.map */