@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  font-family: "Unbounded", sans-serif;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #0A0A0A;
}

[class*=__container] {
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.main {
  flex: 1 1 auto;
}

section {
  scroll-margin-top: 200px;
}

.title {
  font-size: clamp(32px, 7vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(90deg, #FDD903 0%, #50F6B6 47.6%, #EA75F3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[class*=__text] {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}
[class*=__text] a {
  color: #FFF;
}

.btn {
  color: #0A0A0A;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 50px;
  background: linear-gradient(90deg, #FDD903 0%, #50F6B6 47.6%, #EA75F3 100%);
  padding: 24px 60px;
  border: 1px solid transparent;
}

.btn-border {
  color: #0A0A0A;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 24px 60px;
  border: 1px solid #0A0A0A;
}

.white {
  color: #fff !important;
}

.black {
  color: #000 !important;
}

.text-center {
  text-align: center;
}

.header {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 60;
  background: #0A0A0A;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}
@media (max-width: 575px) {
  .header__content {
    flex-direction: column;
    justify-content: center;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FFF;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__menu a {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}

.footer {
  padding: 0 0 20px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__menu a {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}
.footer__address {
  display: flex;
  flex-direction: column;
}
.footer__address a,
.footer__address p {
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.footer__socail {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__txt {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  max-width: 560px;
  width: 100%;
  border-radius: 30px;
  background: #FFF;
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  color: #0A0A0A;
  font-size: 26px;
  font-weight: 900;
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}
.cookies__btn {
  width: 100%;
}

.hero {
  margin: 80px 0 0;
  position: relative;
  z-index: 2;
  height: 763px;
}
@media (max-width: 767px) {
  .hero {
    height: 700px;
  }
}
@media (max-width: 575px) {
  .hero {
    height: 600px;
    margin: 116px 0 0;
  }
}
.hero__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 883px;
  margin: 0 auto;
}
.hero__title {
  color: #FFF;
  text-align: center;
  font-size: clamp(32px, 7vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
}
.hero__title span {
  background: linear-gradient(90deg, #FDD903 0%, #50F6B6 47.6%, #EA75F3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__text {
  max-width: 407px;
  margin: 0 auto;
  text-align: center;
}
.hero__link {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.hero__img {
  position: absolute;
  bottom: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: -1;
}
.hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about {
  margin: 80px 0;
  position: relative;
  z-index: 2;
}
.about__content {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .about__content {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}
.about__column {
  max-width: 814px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about__link {
  width: -moz-fit-content;
  width: fit-content;
}
.about__img {
  position: absolute;
  top: 0p;
  right: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .about__img {
    position: static;
    margin-left: auto;
    margin-right: -15px;
  }
}
@media (max-width: 575px) {
  .about__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .about__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.player {
  position: relative;
  z-index: 2;
}
.player__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.player__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1098px;
}
.player__title {
  color: #FFF;
  font-size: 34px;
  font-weight: 700;
}
.player__img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1023px) {
  .player__img {
    position: static;
    margin-left: auto;
    margin-right: -15px;
  }
}
@media (max-width: 575px) {
  .player__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .player__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.player .advantages__grid {
  margin: 0;
}
.player .advantages__name {
  text-align: left;
}
.player .advantages__card {
  align-items: flex-start;
}

.advantages {
  margin: 80px 0;
}
.advantages__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .advantages__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.advantages__card {
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background: linear-gradient(#000, #000) padding-box, linear-gradient(90deg, #FDD903 0%, #50F6B6 47.6%, #EA75F3 100%) border-box;
}
.advantages__name {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

.info {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .info__content {
    display: flex;
    flex-direction: column-reverse;
    gap: 80px;
  }
}
.info__img {
  position: absolute;
  left: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .info__img {
    position: static;
    margin-left: -15px;
  }
}
@media (max-width: 575px) {
  .info__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .info__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.info__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 793px;
  width: 100%;
  margin-left: auto;
}
@media (max-width: 991px) {
  .info__column {
    max-width: 100%;
  }
}
.info__link {
  width: -moz-fit-content;
  width: fit-content;
}

.catallog {
  padding: 80px 0;
}
@media (max-width: 575px) {
  .catallog {
    padding: 118px 0 80px;
  }
}
.catallog__content {
  display: flex;
  gap: 30px;
}
@media (max-width: 991px) {
  .catallog__content {
    flex-direction: column;
  }
}
.catallog__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 644px;
}
.catallog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 991px) {
  .catallog__grid {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .catallog__grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 15px;
  }
}
.catallog__card {
  position: relative;
  width: 162px;
  height: 162px;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
}
.catallog__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catallog__card::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(90deg, #FDD903 0%, #50F6B6 47.6%, #EA75F3 100%);
  width: 100%;
  height: 100%;
  opacity: 0;
}
.catallog__card:hover::after {
  opacity: 1;
}
.catallog__card:hover .catallog__name {
  opacity: 1;
}
@media (max-width: 575px) {
  .catallog__card {
    width: 100%;
    height: auto;
  }
}
.catallog__name {
  position: absolute;
  inset: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  opacity: 0;
  z-index: 2;
}
.catallog__link {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.game {
  margin: 80px 0;
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.05);
}
.game__content {
  display: flex;
  gap: 60px;
}
@media (max-width: 991px) {
  .game__content {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .game__content {
    flex-direction: column;
  }
}
.game__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.game__link {
  width: -moz-fit-content;
  width: fit-content;
}

.game-info {
  margin-bottom: 80px;
}
.game-info__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.game-info__title {
  text-align: center;
}
.game-info__text {
  text-align: center;
}
.game-info__img {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.game-info__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.privacy {
  padding: 80px 0;
}
@media (max-width: 575px) {
  .privacy {
    padding: 118px 0 80px;
  }
}