@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Orbitron:wght@400..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: "Orbitron", sans-serif;
  background: #020335;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.title {
  font-size: clamp(34px, 5vw, 60px);
  color: #FFF;
  font-weight: 600;
  line-height: 110%;
}
.title span {
  color: #F73C9A;
}

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

.btn {
  text-align: center;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  background: linear-gradient(135deg, #B930D6 0%, #F73C9A 100%);
  padding: 24px 40px;
}

.p-60 {
  padding: 60px 0;
}

.pb-60 {
  padding-bottom: 60px;
}

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

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

.footer {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.1);
}
.footer__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.footer__social {
  display: flex;
  gap: 20px;
}
.footer__text {
  font-family: Inter;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 767px) {
  .footer .header__menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  max-width: 1200px;
  width: 100%;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  border-radius: 30px;
  background: #22224C;
}
.cookies.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookies.is-hiding {
  transform: translateY(100%);
  opacity: 0;
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookies__title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.cookies__text a {
  color: #fff;
  text-decoration: underline;
}
.cookies__btns {
  display: flex;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 575px) {
  .cookies__btns {
    flex-direction: column;
    width: 100%;
  }
}
.cookies__btn {
  width: 100%;
}
.cookies__btn:last-child {
  color: #FFF;
  border: 2px solid #FFF;
  background: transparent;
}

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

.hero__title {
  font-size: clamp(40px, 6vw, 80px);
}

.edge__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 20px;
}
@media (max-width: 991px) {
  .edge__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .edge__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.edge__card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 15px;
  border: 1px solid rgba(247, 60, 154, 0.6);
  background: rgba(247, 60, 154, 0.15);
}
.edge__name {
  color: #F73C9A;
  font-size: 24px;
  font-weight: 600;
}
.edge__arrow {
  margin-left: auto;
}

.games__row {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.games__card {
  position: relative;
}
.games__card a {
  position: absolute;
  inset: 0;
}
.games__card_small {
  width: 156px;
}
.games__card_small img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.join__content {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .join__content {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .join__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .join__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.join__address {
  color: #F73C9A;
  font-size: 18px;
  font-weight: 700;
}

.product__bg {
  background: rgba(255, 255, 255, 0.1);
}
.product .join__title {
  font-size: clamp(34px, 5vw, 40px);
}

.policy {
  margin: 70px 0 0;
}
@media (max-width: 575px) {
  .policy {
    margin: 107px 0 0;
  }
}
.policy__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.policy__content_center {
  align-items: center;
}