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

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.h1 {
  color: #FFF;
  text-align: justify;
  font-family: "Uncial Antiqua";
  font-size: clamp(30px, 6vw, 80px);
  font-weight: 400;
  text-transform: uppercase;
}
.h1 span {
  color: #F00;
}

.h2 {
  color: #FFF;
  font-family: "Uncial Antiqua";
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}

[class*=__text] {
  color: #FFF;
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
}

.btn {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  white-space: nowrap;
  background: #F00;
  padding: 10px 40px;
  color: #FFF;
  text-align: justify;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}

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

.white {
  color: #fff !important;
}

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

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #0D0D0D;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #FFF;
  font-family: "Uncial Antiqua";
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .menu__icon {
    display: flex;
    align-items: center;
    z-index: 50;
    position: relative;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #fff;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
    height: 2px;
  }
  .menu__icon::before {
    top: 8px;
  }
  .menu__icon::after {
    bottom: 8px;
    height: 2px;
  }
  .menu__icon span {
    height: 2px;
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon_active span {
    transform: rotate(45deg) scale(0) translate(0px, -50%);
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
}
@media (max-width: 767px) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    background: #0D0D0D;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 767px) {
  .menu__list {
    flex-direction: column;
    gap: 20px;
  }
}
.menu__link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.footer {
  padding: 40px 0;
  border-top: 4px solid #F00;
  background: #000;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 767px) {
  .footer__row {
    flex-direction: column;
    align-items: center;
  }
}
.footer__address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
}
.footer__address a {
  color: #FFF;
}
@media (max-width: 767px) {
  .footer__address {
    text-align: center;
  }
}
.footer__line {
  background: linear-gradient(90deg, rgba(255, 0, 0, 0) 0%, #F00 50%, rgba(255, 0, 0, 0) 100%);
  width: 100%;
  height: 1px;
}
.footer__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 95px;
}
.footer__menu a {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .footer__menu {
    text-align: center;
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .footer__menu {
    flex-direction: column;
  }
}
.footer__subrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 767px) {
  .footer__subrow {
    flex-direction: column;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__txt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 400;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 40px;
  max-width: 800px;
  width: 100%;
  background: #F00;
  backdrop-filter: blur(6.25px);
}
@media (max-width: 767px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookies__title {
  text-align: center;
  color: #FFF;
  font-size: 32px;
  font-weight: 600;
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 429px) {
  .cookies__btns {
    flex-direction: column;
    width: 100%;
  }
}
.cookies__btn {
  color: #000;
  text-align: justify;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  background: #FFF;
  padding: 14px 40px;
}
@media (max-width: 429px) {
  .cookies__btn {
    width: 100%;
    text-align: center;
  }
}

.hero {
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .hero {
    margin: 72px 0 0;
    padding: 60px 0;
  }
}
.hero__item {
  position: absolute;
  left: 0;
  width: 100%;
  background: #F00;
  top: 160px;
  height: 52px;
  z-index: 4;
}
@media (max-width: 767px) {
  .hero__item {
    top: 100px;
    height: 18px;
  }
}
.hero__title {
  color: #FFF;
  text-align: center;
  font-family: "Uncial Antiqua";
  font-size: clamp(32px, 9vw, 100px);
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  bottom: 40px;
  z-index: 2;
}
@media (max-width: 767px) {
  .hero__title {
    bottom: 30px;
  }
}
@media (max-width: 575px) {
  .hero__title {
    bottom: 20px;
  }
}
@media (max-width: 429px) {
  .hero__title {
    bottom: 13px;
  }
}
.hero__content {
  position: relative;
}
@media (max-width: 767px) {
  .hero__content {
    position: static;
  }
}
.hero__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 350px;
  position: relative;
  z-index: 8;
}
@media (max-width: 767px) {
  .hero__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
  }
}
.hero__block {
  max-width: 390px;
}
@media (max-width: 767px) {
  .hero__block {
    max-width: 100%;
  }
}
.hero__column {
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
@media (max-width: 767px) {
  .hero__column {
    max-width: 100%;
  }
}
.hero__img {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
@media (max-width: 767px) {
  .hero__img {
    transform: none;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    left: 0;
    margin: 0 auto;
  }
  .hero__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero__img {
    bottom: 0;
  }
}
.hero__blur {
  position: absolute;
  z-index: -1;
}
.hero__blur_top {
  top: 70px;
  right: -50px;
}
@media (max-width: 767px) {
  .hero__blur_top {
    top: 0;
  }
}
.hero__blur_bottom {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
@media (max-width: 767px) {
  .hero__blur_bottom {
    transform: none;
    left: 0;
  }
}

.about {
  padding: 60px 0;
}
@media (max-width: 991px) {
  .about {
    padding: 40px 0;
  }
}

.info {
  padding: 60px 0;
}
@media (max-width: 991px) {
  .info {
    padding: 40px 0;
  }
}
.info .game__content {
  position: relative;
  z-index: 2;
}
.info__icon {
  position: absolute;
}
.info__icon_right {
  right: 240px;
  top: 50px;
}
@media (max-width: 991px) {
  .info__icon_right {
    right: -15px;
  }
}
.info__icon_left {
  display: none;
}
@media (max-width: 991px) {
  .info__icon_left {
    display: block;
    top: 50%;
    left: -15px;
  }
}
.info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 18px;
}
@media (max-width: 991px) {
  .info__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.info__column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info__card {
  background: #1E1E1E;
  padding: 20px 7px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.info__num {
  color: #F00;
  text-align: justify;
  font-family: "Uncial Antiqua";
  font-size: 16px;
  font-weight: 400;
}
.info__name {
  color: #FFF;
  text-align: justify;
  font-family: "Uncial Antiqua";
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.bg {
  padding: 40px 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.49) 0%, rgba(0, 0, 0, 0.49) 100%), url(/wp-content/themes/dravenwythorn/assets/img/bg.webp) no-repeat center/cover;
}
@media (max-width: 767px) {
  .bg {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.49) 0%, rgba(0, 0, 0, 0.49) 100%), url(/wp-content/themes/dravenwythorn/assets/img/bg_mob.webp) no-repeat center/cover;
  }
}
.bg__cotent {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.bg__title {
  color: #FFF;
  text-align: justify;
  font-family: "Uncial Antiqua";
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
}
.bg__title span {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(255, 0, 0, 0.26);
  backdrop-filter: blur(4.0500001907px);
}
.bg__link {
  margin: 0 auto;
}

.faq {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .faq {
    padding: 40px 0;
  }
}
.faq__title {
  max-width: 974px;
  margin-left: auto;
}
@media (max-width: 1023px) {
  .faq__title {
    margin: 0;
  }
}
.faq__img {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1023px) {
  .faq__img {
    right: 0;
    left: auto;
    top: 50px;
  }
}
.faq__column {
  max-width: 832px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 991px) {
  .faq__column {
    max-width: 100%;
    margin: 0;
  }
}
.faq__card {
  display: flex;
  align-items: center;
  gap: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
}
@media (max-width: 991px) {
  .faq__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.faq__name {
  color: #FFF;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 291px;
}
@media (max-width: 991px) {
  .faq__name {
    max-width: 100%;
  }
}
.faq__text {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 991px) {
  .faq__text {
    max-width: 100%;
  }
}

.game {
  margin: 72px 0 0;
  padding: 60px 0;
}
@media (max-width: 991px) {
  .game {
    padding: 40px 0;
  }
}
.game__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .game__content {
    gap: 20px;
  }
}
.game__row {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 991px) {
  .game__row {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .game__row {
    flex-direction: column;
    gap: 20px;
  }
}
.game__name {
  color: #F00;
  text-align: justify;
  font-style: italic;
  font-size: 24px;
  font-weight: 600;
}
.game__link {
  margin: 0 auto;
}

.catalog {
  margin: 72px 0 0;
  padding: 60px 0;
}
@media (max-width: 991px) {
  .catalog {
    padding: 40px 0;
  }
}
.catalog__row {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 991px) {
  .catalog__row {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .catalog__row {
    flex-direction: column;
    gap: 20px;
  }
}
.catalog__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.catalog__block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.catalog__block a {
  width: 70px;
  height: 70px;
}
.catalog__block a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catalog__column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.catalog__card {
  width: 150px;
}
.catalog__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.privacy {
  margin: 72px 0 0;
  padding: 60px 0;
}
@media (max-width: 991px) {
  .privacy {
    padding: 40px 0;
  }
}
.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 991px) {
  .privacy__content {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .privacy__content {
    gap: 20px;
  }
}
.privacy__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 7px;
  background: rgba(153, 0, 0, 0.2);
  backdrop-filter: blur(6.25px);
}
.privacy__column_red {
  background: #F00;
}
.privacy ul li {
  margin-left: 20px;
  list-style: disc;
}