@import url("https://fonts.googleapis.com/css2?family=Audiowide&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&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 {
  background: #0E0E0E;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.title {
  font-size: clamp(38px, 6vw, 80px);
  color: #00C300;
  font-family: "Audiowide";
  font-weight: 400;
  text-transform: uppercase;
}
.title span {
  color: #fff;
}

[class*=__text] {
  color: #FFF;
  font-family: "Inter";
  font-size: 14px;
  font-weight: 300;
}

.line {
  background: linear-gradient(180deg, #00C300 0%, #A2F642 100%);
  max-width: 430px;
  width: 100%;
  height: 3px;
}

.btn {
  text-align: center;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  color: #0E0E0E;
  font-family: "Audiowide";
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 24px 50px;
  border-radius: 100px;
  background: linear-gradient(180deg, #00C300 0%, #A2F642 100%);
  box-shadow: 0 5px 30px 0 rgba(162, 246, 66, 0.8);
}

.p-80 {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .p-80 {
    padding: 60px 0;
  }
}

.pb-80 {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .pb-80 {
    padding-bottom: 60px;
  }
}

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

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

.footer {
  padding-bottom: 20px;
  background: #0E0E0E;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__social {
  display: flex;
  gap: 20px;
}
.footer__text {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 767px) {
  .footer .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  max-width: 700px;
  width: 100%;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  border-radius: 26px;
  border: 3px solid #FFF;
  background: #0E0E0E;
}
.cookies.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookies.is-hiding {
  transform: translateY(100%);
  opacity: 0;
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  color: #FFF;
  font-family: "Audiowide";
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}
.cookies__text {
  font-family: "Audiowide";
}
.cookies__btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.cookies__btn {
  width: 100%;
}
.cookies__btn:last-child {
  color: #FFF;
  border: 2px solid #FFF;
  background: transparent;
  box-shadow: none;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #0D0D0D;
}
.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;
  color: #FFF;
  font-family: "Plus Jakarta Sans";
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__menu a {
  color: #FFF;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
}

.hero {
  margin: 70px 0 80px;
  padding-top: 345px;
  background: url(/wp-content/themes/noctyrarift/assets/img/bg.webp) no-repeat center/cover;
}
@media (max-width: 767px) {
  .hero {
    background: url(/wp-content/themes/noctyrarift/assets/img/bg.webp) no-repeat left/cover;
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .hero {
    margin: 108px 0 60px;
  }
}
.hero__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .hero__row {
    flex-direction: column;
  }
}
.hero__text {
  max-width: 736px;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .advantages__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.advantages__card {
  border-radius: 30px;
  border: 2px solid #FFF;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.advantages__name {
  color: #FFF;
  font-family: Audiowide;
  font-size: 30px;
  font-weight: 400;
}

.games__content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 767px) {
  .games__content {
    gap: 60px;
  }
}
.games__row {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}
@media (max-width: 991px) {
  .games__row {
    flex-direction: column;
    align-items: center;
  }
}
.games__grid {
  display: flex;
  align-items: center;
  gap: 20px;
}
.games__grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .games__grid {
    flex-direction: column;
  }
}
.games__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .games__item {
    flex-direction: row;
    gap: 15px;
  }
}
.games__card {
  position: relative;
}
.games__card a {
  position: absolute;
  inset: 0;
}
@media (max-width: 991px) {
  .games__line img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.games__subtitle {
  font-size: clamp(34px, 5vw, 60px);
}
.games__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.join {
  background: url(/wp-content/themes/noctyrarift/assets/img/bg-1.webp) no-repeat center/cover;
  padding: 70px 0;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .join {
    padding: 50px 0;
    margin-bottom: 60px;
  }
}
.join__content {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .join__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.join__address {
  border-radius: 24px;
  background: linear-gradient(180deg, #00C300 0%, #A2F642 100%);
  box-shadow: 0 5px 30px 0 rgba(162, 246, 66, 0.8);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.join__address a,
.join__address p {
  color: #0E0E0E;
  font-family: Audiowide;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .join__img {
    max-width: 263px;
  }
  .join__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.privacy {
  margin: 70px 0 0;
}
@media (max-width: 575px) {
  .privacy {
    margin: 108px 0 0;
  }
}
.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.privacy__content_center {
  align-items: center;
}
.privacy__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}