@font-face {
  font-family: "Play";
  src: local("Play"), url("../font/Play-Bold.ttf");
  font-style: normal;
  font-weight: bold;
}

@font-face {
  font-family: "Play";
  src: local("Play"), url("../font/Play-Regular.ttf");
  font-style: normal;
  font-weight: normal;
}

:root {
  --bg-color: #121212;
  --font-color: #fff;
  --orange: #ef5204;
  --font-family: "Play", sans-serif;
  --font-color-white: #f1f1f1;
  --color-second-text: #ffffff90;
  --color-font-dark-grey: #ffffff66;
  --global-color-section-game: #f0f2f5;
  --title-gradient: linear-gradient(169deg, #ffffff 50%, #ffffff45 100%);
  --btn-shadow: 0px 2px 20px -7px rgba(0, 0, 0, 0.9);
  --line-liner-gradient: linear-gradient(
    90deg,
    transparent 15%,
    var(--orange),
    transparent 85%
  );
  --liner-gradient-block-important: linear-gradient(
    270deg,
    #ffffff01 0%,
    #ffffff09 85%
  );
  --width-cookie: 52%;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-color: var(--bg-color);
  color: var(--font-color);
  font-family: var(--font-family);
  font-weight: normal;
}

a {
  font-family: var(--font-family);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0% 2%;
}

section {
  padding: 80px 0;
}

p.section__block__text {
  color: var(--color-second-text);
  font-size: 22px;
  line-height: 1.3em;
  letter-spacing: 0.02em;
  font-weight: 400;
}

/* LINE */

body > .line,
.menu__mobile .line {
  width: 100%;
  /* padding: 15px; */
}

body > .line > span,
.menu__mobile .line > span {
  display: block;
  height: 2px;
  background: var(--line-liner-gradient);
}

/* TITLES */

h1,
h2 {
  display: block;
  text-transform: uppercase;
  line-height: 1.02em;
  word-break: break-word;
  text-align: center;
  -webkit-text-stroke: 1px white;
}

h2 {
  font-size: 54px;
  margin: 0.8rem 0;
}

h1 > span,
h2 > span {
  background-color: transparent;
  background-image: var(--title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BTN */

a.btn__orange,
header .navigation a.btn__orange {
  padding: 14px 26px 15px;
  background-color: var(--orange);
  color: var(--font-color);
  border-radius: 3px;
  box-shadow: var(--btn-shadow);
  text-transform: uppercase;
}

/* HEADER */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 10;
}

header .container {
  padding: 14px 2%;
}

header.game {
  background-color: #0f0f0f;
  border-bottom: 1px solid #414141;
}

header.game .container {
  padding: 10px 0;
}

header.game .wrapper {
  max-width: 1300px;
  margin: 0 auto;
  justify-content: space-around;
}

header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo__wrapper {
  padding: 10px 0;
}

.logo__wrapper a {
  margin-bottom: 10px;
  margin-right: 10px;
}

.logo__wrapper img {
  width: 180px;
}

ul,
li {
  list-style: none;
}

ul {
  display: flex;
  gap: 1rem;
}

header .navigation a {
  padding: 0 0.5rem;
  color: var(--orange);
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
}

header .navigation .lang {
  color: var(--global-color-section-game);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

header .navigation a:visited {
  color: var(--font-color-white);
}

header .icon__menu {
  cursor: pointer;
  display: none;
  width: 24px;
  height: 24px;
}

header .icon__menu img {
  width: 100%;
}

header.game .navigation {
  position: relative;
  cursor: pointer;
}

header.game .block__lang {
  position: absolute;
  top: 110%;
  left: 0;
  width: 55px;
  background-color: rgba(16, 16, 16, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
}

header.game .navigation:hover .block__lang {
  opacity: 1;
  visibility: visible;
}

header.game .block__lang:after {
  content: "";
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 1rem;
}

header.game .block__lang a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1rem;
  color: white;
  cursor: pointer;
}

header.game .block__lang a:hover {
  color: rgb(41, 71, 241);
}

header.game .block__lang img {
  width: 22px;
  aspect-ratio: 1;
}

/* MOBILE MENU */

.menu__mobile .menu__mobile__block {
  position: fixed;
  width: 100%;
  top: 0;
  right: -100%;
  z-index: 20;
  transform: translateX(0);
  background: radial-gradient(#431600 4%, #000 100%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.menu__mobile input {
  display: none;
}

.menu__mobile input:checked + .menu__mobile__block {
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.container__mobile {
  width: 100%;
  padding: 0 1rem;
}

.menu__mobile .wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.menu__mobile .mobile__wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu__mobile .mobile__wrapper label {
  cursor: pointer;
}

.mobile__header {
  padding: 1.5rem 0;
}

.mobile__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile__header .logo {
  width: 30%;
}

.mobile__header .logo img {
  width: 100%;
}

.mobile__header .icon img {
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.menu__mobile nav {
  padding: 1.5rem 0;
}

.menu__mobile ul {
  flex-direction: column;
  gap: 2rem;
}

.menu__mobile nav a {
  font-weight: bold;
  text-transform: uppercase;
  color: var(--font-color);
  line-height: 110%;
}

.menu__mobile nav.bold a {
  font-size: 26px;
}

.menu__mobile nav.bold a:hover {
  color: var(--orange);
}

.menu__mobile .navigation__btn nav a {
  font-size: 18px;
}

.menu__mobile .navigation__btn nav a:hover {
  color: var(--color-font-dark-grey);
}

.menu__mobile a.btn__orange {
  text-align: center;
  display: block;
}

.menu__mobile .navigation__btn {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* MAIN */

section.main {
  background: url("../img/section-main-bg.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 800px;
  position: relative;
}

section.main .wrapper {
  padding-top: 80px;
  padding-bottom: 0;
}

h1 {
  font-size: 110px;
}

section.main .wrapper__img {
  padding: 1% 10%;
}

section.main .wrapper__img img {
  width: 100%;
}

section.main .block__title {
  max-width: 1024px;
  margin: 0 auto;
}

section.main .description {
  width: 660px;
  margin: 1.85rem auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

section.main .description p {
  text-align: center;
}

section.main .block__btn,
section.scroll .block__btn {
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
  scale: 1;
  transition: scale 0.3s ease;
}

section.main .block__btn:hover {
  scale: 1.03;
  transition: scale 0.3s ease;
}

section.main .block__verif {
  padding: 95px 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

section.main .block__verif > div {
  padding: 10px;
}

section.main .block__verif__img {
  display: flex;
  align-items: center;
}

section.main .block__img {
  margin-left: 10%;
  opacity: 0;
  scale: 0.3;
}

section.main h2 {
  font-size: 56px;
}

.block__verif__text h2 {
  margin: 1.5rem 0;
}

.block__verif__text p {
  margin: 1rem 0;
}

/* SECTION IMPORTANT */

section.important .wrapper {
  display: flex;
  flex-direction: column;
}

section.important .alarm h3 {
  font-size: 56px;
  line-height: 1.1em;
  color: var(--orange);
  text-align: center;
}

section.important .block__grid {
  min-width: 960px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

section.important .block__iter {
  background: var(--liner-gradient-block-important);
  border: 1px solid #ffffff10;
  border-radius: 7px;
  padding: 43px 60px;
}

section.important .block__iter > div {
  margin-bottom: 20px;
  width: 100%;
}

section.important .block__grid .icon {
  display: flex;
  justify-content: center;
}

section.important .block__grid .text > p {
  margin-bottom: 10px;
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 80%;
}

section.important .block__grid .text > p > span {
  font-weight: 700;
}

/* SECTION SCROLL */

section.scroll {
  padding: 140px 0;
  position: relative;
}

section.scroll > .bg {
  position: absolute;
  inset: 0;
  background: url("../img/section-scroll-bg.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.85;
}

section.scroll h2 {
  text-align: left;
  font-size: 56px;
  margin: 1.5rem 0;
}

section.scroll .block__wrapper__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
}

section.scroll .block__text {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

section.scroll .block__descript {
  position: relative;
}

section.scroll .block__wrapper__descript {
  position: sticky;
  top: 0;
  left: 0;
}

section.scroll .block__iter {
  display: flex;
  flex-direction: column;
}

section.scroll .block__iter .iter {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 15px;
}

section.scroll .block__iter .iter .icon,
section.scroll .block__arrow {
  max-width: 250px;
}

section.scroll .icon > img {
  width: 100%;
}

section.scroll .iter__step__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

section.scroll .block__iter p.step {
  color: var(--color-font-dark-grey);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

section.scroll .block__iter p.about__step {
  color: var(--font-color);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

section.scroll .block__arrow {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.scroll .block__arrow:last-child {
  display: none;
}

section.scroll .block__arrow img {
  width: 32px;
  height: 32px;
}

/* SECTION LEGIT */

section.legit {
  position: relative;
}

section.legit h2 {
  text-align: left;
}

section.legit .bg {
  position: absolute;
  inset: 0;
  background: url("../img/section-scroll-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

section.legit .wrapper {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

section.legit .block__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

section.legit .block__grid:nth-child(2n) .block__img {
  order: 2;
}

section.legit .block__img {
  margin-right: 14%;
  opacity: 0;
  scale: 0.2;
}

section.legit .block__img img {
  width: 100%;
  text-align: center;
}

section.legit .block__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

section.legit .block__sponsors__name h3 {
  color: var(--color-second-text);
  font-size: 24px;
  margin: 20px 00 40px;
}

section.legit .block__sponsors__name + img {
  width: 360px;
}

/* SECTION NEXT */

section.next .block__title {
  border-top: 56px;
}

section.next .block__title h3 {
  font-size: 56px;
  line-height: 66px;
  color: var(--orange);
  text-align: center;
}

section.next .block__img {
  opacity: 0;
  scale: 0.1;
  display: grid;
  place-content: center;
}

section.next .block__img img {
  width: 80%;
}

section.next .block__grid__wrapper {
  margin-top: 95px;
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

section.next .block__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

section.next .block__grid:nth-child(2n) .block__img {
  order: 2;
}

section.next h2 {
  font-size: 56px;
  text-align: left;
}

section.next .block__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* SECTION BUTTONS */

section.buttons {
  padding-bottom: 50px;
}

section.buttons .block__img {
  text-align: center;
  margin-bottom: 2rem;
}

section.buttons .block__img img {
  max-width: 840px;
}

section.buttons .text__footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

section.buttons .text__footer p {
  font-size: 22px;
}

section.buttons .text__main {
  font-weight: 700;
}

section.buttons .text__second {
  color: var(--color-second-text);
}

section.buttons .block__btn {
  margin: 2rem auto;
  width: 410px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

section.buttons .block__btn > div {
  transition: scale 0.3s ease;
  margin: 4px;
  border-radius: 2px;
}

section.buttons .block__btn > div:hover {
  scale: 1.1;
  transition: scale 0.3s ease;
}

section.buttons .block__btn > div.btn__grey:hover {
  color: #f1f1f1;
  border-color: #f1f1f1;
}

section.buttons .btn__orange {
  width: 70%;
  text-align: center;
  color: white;
  background-color: var(--orange);
  border: 2px solid var(--orange);
  font-weight: 700;
}

section.buttons .btn__grey {
  color: var(--color-second-text);
  border: 2px solid var(--color-font-dark-grey);
  font-weight: 400;
}

section.buttons .block__btn a,
section.buttons .fk__open > div {
  display: block;
  padding: 16px 26px 18px;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

/* SECTION SCREENSHOT */

section.screenshot .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 750px;
  margin: 0 auto;
}

section.screenshot .block__trade {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}

section.screenshot .block__trade p {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 110%;
  color: var(--color-second-text);
}

section.screenshot .block__img a {
  display: block;
}

section.screenshot .block__img img {
  display: block;
  width: 80%;
  margin: 0 auto;
}

section.screenshot .block__arrow img {
  width: 24px;
  height: 24px;
  text-align: center;
}

section.screenshot .block__trade:last-child .block__arrow {
  display: none;
}

/* SECTION COOKIES */

section.cookies {
  width: var(--width-cookie);
  min-width: 300px;
  position: fixed;
  z-index: 11;
  right: calc((100% - var(--width-cookie)) / 2);
  bottom: 4rem;
}

section.cookies .block__cookies {
  padding: 1.2rem;
  box-shadow:
    0 0 20px #00000090,
    inset 1px 1px #ffffff55,
    inset -1px -1px #ffffff20;
  background-color: var(--bg-color);
  border-radius: 4px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

section.cookies .block__cookies .title {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 700;
}

section.cookies .block__cookies .text {
  font-weight: 400;
  color: #696969;
  font-size: 14px;
}

section.cookies .block__accepts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

section.cookies .block__accepts .text {
  flex-grow: 1;
}

section.cookies .block__btn {
  display: flex;
  gap: 0.65rem;
}

section.cookies .block__btn .btn__orange {
  padding: 8px 25px;
  border-radius: 4px;
  background-color: var(--orange);
  cursor: pointer;
}

/* SECTION GAME */

section.game {
  background-color: #191919;
}

section.game .wrapper {
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}

section.game .main {
  padding-top: 5rem;
}

section.game h1 {
  font-size: 2.1rem;
  line-height: 95%;
}

section.game .block__title {
  width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

section.game .block__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

section.game .iter {
  display: flex;
  gap: 1.1rem;
}

section.game .block__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

section.game .title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

section.game .text {
  font-size: 0.95rem;
  color: var(--global-color-section-game);
  font-weight: 400;
}

section.game .block__fix__height {
  min-height: 2.5rem;
}

section.game .circle {
  width: 50px;
  height: 50px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 85, 0, 0.08);
  border: 1px solid rgba(255, 85, 0, 0.24);
  border-radius: 50%;
}

section.game .iter:not(:last-child) .circle:after {
  content: "";
  position: absolute;
  top: 115%;
  width: 1px;
  height: 37px;
  background: rgba(255, 85, 0, 0.24);
}

section.game .qr__code {
  width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

section.game .qr__code .logo__svg {
  width: 100px;
  margin: 0 auto;
}

section.game .logo__svg img {
  width: 100%;
}

section.game .qr {
  margin: 0 auto;
  width: 200px;
  height: 200px;
  border: 8px solid #8b360c;
  overflow: hidden;
  position: relative;
  touch-action: none;
  background-color: rgba(255, 255, 255, 0.01);
}

section.game .qr iframe {
  overflow: hidden !important;
  pointer-events: none;
  touch-action: none;
}

section.game .qr img {
  position: absolute;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  display: block;
  inset: -1px;
  z-index: 22;
  border: 7px solid white;
  filter: blur(3px);
}

section.game .faker__wrapper {
  position: absolute;
  top: -560px;
  right: -205px;
  width: 600px;
  height: 1000px;
  pointer-events: none;
  touch-action: none;
  overflow: hidden;
  z-index: 21;
}

@media screen and (max-width: 550px) {
  section.game .faker__wrapper {
    right: -198px;
    top: -603px;
  }
}

section.game .qr__code > p {
  text-align: center;
}

section.game .block__btn {
  display: flex;
  justify-content: center;
}

section.game .btn__orange span {
  padding: 0.7rem 1.1rem;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  background-color: var(--orange);
  border-radius: 8px;
}

section.game .footer__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

section.game .footer__text p {
  color: var(--global-color-section-game);
  font-size: 15px;
  font-weight: 400;
}

section.game .footer__text a {
  color: white;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 700;
}

section.game .fk__open {
  cursor: pointer;
}

/* SECTION MODAL */

section.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  background-color: rgba(16, 16, 16, 0.9);
  z-index: 30;
  visibility: hidden;
  opacity: 0;
  padding-top: 5rem;
  transform: translateY(-300px);
}

section.modal.active {
  visibility: visible;
  opacity: 1;
  animation: modalShow 0.55s forwards;
}

@keyframes modalShow {
  0% {
    transform: translateY(-300px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

section.modal .block__modal {
  margin: 0 auto;
  width: 900px;
}

section.modal.active .spinner {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
}

.spinner svg {
  margin: 1rem auto;
  width: 180px;
  height: 180px;
  transform: rotate(-90deg);
}

.spinner svg circle {
  fill: none;
  stroke-width: 5px;
  stroke-linecap: butt;
}

.spinner svg circle.bg {
  stroke: #4e4e4e;
}

.spinner svg circle.meter {
  stroke: var(--orange);
  stroke-dashoffset: 300px;
  stroke-dasharray: 300px;
  animation: prog 6s ease forwards;
  animation-delay: 0.5s;
}

@keyframes prog {
  0% {
    stroke-dashoffset: 300px;
  }
  10% {
    stroke-dashoffset: 290px;
  }
  20% {
    stroke-dashoffset: 200px;
  }
  30% {
    stroke-dashoffset: 190px;
  }
  50% {
    stroke-dashoffset: 130px;
  }
  80% {
    stroke-dashoffset: 100px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

section.modal .header__modal {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section.modal .header__modal span {
  font-size: 1.1rem;
  color: grey;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

section.modal .header__modal .block__logo {
  width: 115px;
}

section.modal .header__modal .block__logo img {
  width: 100%;
}

section.modal .body__modal {
  background-color: #191919;
  padding: 3.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

section.modal .block__modal__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

section.modal .mini__title {
  text-align: center;
  font-size: 1.8rem;
  color: white;
  font-weight: 700;
}

section.modal .block__iter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

section.modal .block__iter .line {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 12px;
}

section.modal .line img {
  margin: 0 6px;
  width: 12px;
  aspect-ratio: 1;
}

section.modal .block__iter p {
  color: white;
  font-weight: 700;
}

section.modal .block__iter .line > span {
  font-weight: 700;
}

section.modal .block__iter span.error {
  color: #c3303e;
}
section.modal .block__iter span.green {
  color: #6ba064;
}
section.modal .block__iter span.grey {
  color: #a0a0a0;
}
section.modal .block__iter span.yellow {
  color: #d5c24f;
}

section.modal .link__orange {
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  background-color: #222222;
  color: var(--orange);
  font-weight: 400;
  text-decoration: underline;
}

section.modal p.text {
  display: block;
  width: 570px;
  margin: 0 auto;
  color: #70747f;
  font-size: 17px;
  font-weight: 400;
  text-align: center;
}

section.modal .dots {
  padding: 0 6px;
  display: flex;
  gap: 12px;
  height: 90%;
  align-items: center;
}

section.modal span.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--orange);
  opacity: 0.9;
  animation: dotsFlash 1.5s ease infinite;
  animation-delay: calc(var(--i) / 2);
}

@keyframes dotsFlash {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  80% {
    transform: scale(1.5);
    opacity: 0.75;
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}

/* FOOTER */

footer {
  padding: 3% 0;
}

footer .logo img {
  width: 32px;
  height: 32px;
}

footer .block__flex__footer {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .block__flex__footer > div {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

footer .social img {
  width: 24px;
  height: 24px;
}

footer .nav > a {
  line-height: 30px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  vertical-align: middle;
  text-transform: uppercase;
}

footer .nav__anchor > a {
  color: var(--color-second-text);
}

footer .nav__link > a {
  color: var(--color-font-dark-grey);
}

/* SECTION NOT FOUND */

section.not__found {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.not__found .block__error {
  text-align: center;
}

section.not__found .block__error p {
  font-size: 22px;
  text-transform: uppercase;
}

/* ANIMATION */

header.bg__dark {
  background-color: rgba(20, 20, 20, 0.85);
  border-bottom: 1px solid #ffffff24;
  backdrop-filter: saturate(180%) blur(94px);
  animation: header-show 0.3s ease;
  animation-fill-mode: forwards;
}

@keyframes header-show {
  0% {
    background-color: rgba(20, 20, 20, 0.1);
    border-color: #ffffff00;
  }
  100% {
    background-color: rgba(20, 20, 20, 0.85);
    border-color: #ffffff24;
  }
}

section .block__img.element-show {
  opacity: 1;
  scale: 1;
  transition:
    opacity 0.5s ease,
    scale 0.75s ease;
}

/* ADAPTIVE */

@media screen and (max-width: 990px) {
  html {
    font-size: 15px;
  }

  section.main .wrapper {
    padding-top: 50px;
  }

  section.main .wrapper__img {
    padding: 0 2%;
  }

  h1 {
    font-size: 62px;
  }

  h2 {
    text-align: left;
    line-height: 75%;
  }

  h1 > span,
  h2 > span {
    font-size: 36px;
  }

  section.legit .block__sponsors__name + img {
    width: 70%;
  }

  section.important .block__grid {
    min-width: auto;
  }

  section.buttons .block__img img {
    width: 100%;
  }

  footer .block__flex__footer {
    row-gap: 0.8rem;
  }

  footer .block__flex__footer .nav {
    width: 100%;
    order: 3;
    justify-content: start;
    flex-wrap: wrap;
  }

  footer .block__flex__footer .social {
    width: 80%;
    justify-content: end;
  }

  header nav.navigation {
    display: none;
  }

  header .icon__menu {
    display: block;
  }

  section.cookies .block__accepts .text {
    width: 100%;
  }

  section.cookies .block__btn {
    margin: 10px auto 0;
    flex-wrap: wrap;
  }

  section.modal .block__modal {
    width: 650px;
  }

  section.modal .body__modal {
    padding: 2.5rem 0.5rem;
  }
}

@media screen and (max-width: 690px) {
  :root {
    --width-cookie: 80%;
  }

  h1,
  h2 {
    line-height: 75%;
    text-align: center !important;
  }

  section.main .block__verif,
  section.scroll .block__wrapper__grid,
  section.legit .block__grid,
  section.next .block__grid,
  section.important .block__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }

  section.main .block__verif > img,
  section.scroll .block__wrapper__grid > img,
  section.legit .block__grid > img,
  section.next .block__grid > img,
  section.important .block__grid > img {
    width: 100%;
  }

  section.main .description {
    width: auto;
  }

  section.legit .block__grid:nth-child(2n) .block__img {
    order: 0;
  }

  section.main .block__img,
  section.legit .block__img {
    width: 65%;
    margin: 2% auto;
    display: flex;
    justify-content: center;
  }

  p.section__block__text {
    font-size: 18px;
  }

  section.scroll {
    padding: 60px 0;
  }

  section.scroll .block__iter .iter {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
  }

  section.scroll .block__iter .iter .icon,
  section.scroll .block__arrow {
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  section.scroll .icon > img {
    width: 180px;
    height: 180px;
  }

  section.legit .block__grid .block__about {
    order: -1;
  }

  section.legit .wrapper {
    gap: 50px;
  }

  section.next .block__img img {
    width: 70%;
    margin: 0 auto;
  }

  section.legit .sponsor .block__img {
    width: 100%;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
  }

  section.legit .sponsor .block__img > div {
    width: 100%;
  }

  section.legit .sponsor .block__img > img {
    width: 220px;
  }

  section.legit .block__sponsors__name h3 {
    margin: 15px 0;
  }

  section.buttons .block__btn {
    width: 300px;
  }

  section.game .block__title,
  section.game .qr__code {
    width: 100%;
    padding: 0 1rem;
  }

  section.modal .block__modal {
    width: 420px;
  }

  section.modal .block__iter .line {
    font-size: 14px;
  }

  section.modal p.text {
    padding: 0 0.5rem;
    width: 100%;
  }

  section.modal .block__iter .line:last-child {
    flex-wrap: wrap;
  }

  section.important .block__grid .text > p {
    line-height: 95%;
  }
}

body {
  transition: opacity ease-in 0.2s;
}

body[unresolved] {
  opacity: 0;
  display: block;
  overflow: hidden;
  position: relative;
}
