@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  font-family: "Oxanium", sans-serif;
  color: #d5cfc7;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 0;
}

address {
  font-style: normal;
}

a, button {
  cursor: pointer;
  font-family: inherit;
  display: block;
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  padding-left: 22px;
  margin: 0;
}

section {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width: 1200px) {
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

section:first-child {
  padding-top: 120px;
}

.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 84px;
  }
}

.grad-text {
  background: linear-gradient(131deg, #f88a01 0%, #ef400a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h1 {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.1;
}

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

.h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.1;
}

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

.h3 {
  font-weight: 800;
  font-size: 34px;
}

.h4 {
  font-weight: 700;
  font-size: 50px;
}

.accent {
  color: #f88a01;
}

.second {
  color: #d55730;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.mt-a {
  margin-top: auto;
}

.mb-a {
  margin-bottom: auto;
}

.ml-a {
  margin-left: auto;
}

.mr-a {
  margin-right: auto;
}

.font-second {
  font-family: "Oxanium", sans-serif;
}

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

.logo {
  font-weight: 800;
  font-size: 24px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.logo:hover, .logo:focus {
  color: #d55730;
}

.logo:active {
  color: #000;
}

.logo__img {
  max-width: 32px;
}

.link {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.link:hover, .link:focus {
  color: #d55730;
}

.link:active {
  color: #000;
}

.btn {
  font-family: "Oxanium", sans-serif;
  width: 100%;
  border: none;
  -webkit-box-shadow: inset 0 0 20px 0 rgba(255, 255, 255, 0.9);
          box-shadow: inset 0 0 20px 0 rgba(255, 255, 255, 0.9);
  background: radial-gradient(50% 50% at 50% 50%, #ef400a 0%, #ff780c 100%);
  border-radius: 8px;
  padding: 20px 40px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

@media (min-width: 1200px) {
  .btn {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.btn:hover, .btn:focus {
  -webkit-transform: scale(1.11);
          transform: scale(1.11);
}

.btn:active {
  opacity: 0.6;
}

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

.btn-second {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  background: transparent;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.header.scrolled {
  background: #000;
}

.header__nav {
  padding-top: 14px;
  padding-bottom: 14px;
  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;
  color: #fff;
}

@media (min-width: 768px) {
  .header__nav {
    -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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  padding: 0;
}

.hero {
  background-image: url(/wp-content/themes/vuntherial/assets/img/1m.webp);
  background-position: bottom 0 right 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000;
  color: #fff;
  padding-bottom: 500px;
}

@media (min-width: 768px) {
  .hero {
    background-image: url(/wp-content/themes/vuntherial/assets/img/1.webp);
    padding-bottom: 100px;
  }
}

.hero__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

@media (min-width: 1200px) {
  .hero__content {
    max-width: 700px;
  }
}

.hero__subtitle {
  font-family: "Oxanium", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 80%;
  text-transform: uppercase;
}

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

.categories__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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.categories__title-block {
  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;
  -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;
  max-width: 700px;
}

.categories__list {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  padding-left: 0;
  list-style: none;
}

.categories__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 20px;
  border: 2px solid #f88a01;
  border-radius: 20px;
  max-width: 320px;
}

.magic__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;
  -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) {
  .magic__content {
    gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.magic__text-block {
  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;
}

.about__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;
  -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) {
  .about__content {
    gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.about__text-block {
  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;
}

.about__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: 20px;
  padding-left: 0;
  list-style: none;
}

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

.about__item {
  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;
}

.faq__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;
  -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;
}

.faq__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: 20px;
  padding-left: 0;
  list-style: none;
  text-align: left;
}

.faq__item {
  position: relative;
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  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;
  cursor: pointer;
}

.faq__item h3 {
  max-width: 95%;
}

.faq__item p {
  display: none;
}

.faq__item .arrow {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 40px;
}

.faq__item.open p {
  display: block;
}

.faq__item.open .arrow {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.contact {
  background: linear-gradient(131deg, #f88a01 0%, #d55730 100%);
  color: #000;
}

.contact__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: 32px;
}

.contact__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  font-weight: 800;
  font-size: 24px;
}

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

.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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

.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: 20px;
  list-style: none;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

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

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.footer__social a {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.footer__social a:hover, .footer__social a:focus {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.footer__copy {
  text-align: center;
  font-weight: 300;
  font-size: 14px;
}

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

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

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

.cookie-popup__content {
  border: 2px solid #fff;
  padding: 40px 20px;
  background: #000;
  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: 700;
  font-size: 30px;
  line-height: 1.1;
  text-transform: uppercase;
}

.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: 16px;
}

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

.games__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;
  gap: 30px;
}

.games__title-block {
  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;
  text-align: center;
  max-width: 700px;
}

.games__list {
  padding-left: 0;
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 1200px) {
  .games__list {
    -ms-grid-columns: 1fr 2fr 2fr 1fr;
        grid-template-columns: 1fr 2fr 2fr 1fr;
  }
}

.games__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 10px;
  min-height: 400px;
}

.games__link {
  position: relative;
  overflow: hidden;
  width: 100%;
  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;
  text-align: center;
  background: #000;
  border-radius: 20px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.games__link img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.games__link:hover, .games__link:focus {
  background: #f88a01;
}

.games__link:hover img, .games__link:focus img {
  opacity: 0;
}

.game-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: 40px;
}

.game-descr__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;
  gap: 40px;
}

@media (min-width: 1200px) {
  .game-descr__content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.game-descr__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.game-descr__title {
  font-weight: 700;
  font-size: 44px;
}

@media (min-width: 1200px) {
  .game-descr__title {
    font-size: 50px;
  }
}

.privacy__content, .terms__content, .cookie__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;
}

.privacy a, .terms a, .cookie a {
  display: inline;
  font-weight: 800;
  color: #f88a01;
}

.privacy a:hover, .privacy a:focus, .terms a:hover, .terms a:focus, .cookie a:hover, .cookie a:focus {
  color: #d55730;
}
/*# sourceMappingURL=styles.css.map */