@import url("https://fonts.googleapis.com/css2?family=Rethink+Sans:ital,wght@0,400..800;1,400..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 {
  font-family: "Rethink Sans", sans-serif;
  background: #000;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.title {
  font-size: clamp(34px, 4vw, 70px);
  background: linear-gradient(127deg, #07DC6E 0%, #FFF 102.46%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

[class*=__text] {
  color: #F5EBDF;
  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: 16px;
  font-weight: 600;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(87deg, #120238 0.46%, #07DC6E 106.76%);
  padding: 22px 50px;
}

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

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

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

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

.footer {
  padding-bottom: 20px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.footer__social {
  display: flex;
  gap: 20px;
}
.footer__text {
  color: rgba(245, 235, 223, 0.5);
}
@media (max-width: 767px) {
  .footer .header__menu {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  max-width: 400px;
  width: 100%;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  border-radius: 30px;
  border: 4px solid #00D9D9;
  background: #000;
}
.cookies.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookies.is-hiding {
  transform: translateY(100%);
  opacity: 0;
}
.cookies__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.cookies__title {
  color: #00D9D9;
  font-size: 34px;
  font-weight: 400;
  background: linear-gradient(127deg, #07DC6E 0%, #FFF 102.46%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cookies__btns {
  display: flex;
  gap: 20px;
  flex-direction: column;
  width: 100%;
}
.cookies__btn {
  width: 100%;
}
.cookies__btn:last-child {
  color: #FFF;
  border: 1px solid #FFF;
  background: transparent;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #000;
}
.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: #F5EBDF;
  font-size: 24px;
  font-weight: 600;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__menu a {
  color: #F5EBDF;
  font-size: 14px;
  font-weight: 400;
}

.hero {
  background: url(/wp-content/themes/zentharaflame/assets/img/bg.webp) no-repeat center/cover;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .hero {
    background: url(/wp-content/themes/zentharaflame/assets/img/bg-mob.webp) no-repeat center/cover;
  }
}
.hero__title {
  color: #F5EBDF;
  text-align: center;
  font-size: clamp(40px, 7vw, 100px);
  font-weight: 400;
  line-height: 110%;
}
.hero__text {
  max-width: 768px;
  margin: 0 auto;
}

.games__content {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
@media (max-width: 991px) {
  .games__content {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 575px) {
  .games__img {
    width: 123px;
  }
  .games__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 610px;
}
.games__card {
  position: relative;
}
.games__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.games__card a {
  position: absolute;
  inset: 0;
}

.about {
  background: url(/wp-content/themes/zentharaflame/assets/img/bg-1.webp) no-repeat center/cover;
  padding: 60px 0;
  margin-bottom: 60px;
}
.about__title {
  max-width: 800px;
  margin: 0 auto;
}
.about__card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 10px;
  background: linear-gradient(127deg, #07DC6E 0%, #120238 102.46%);
  padding: 20px;
}
.about__icon {
  min-width: 80px;
  min-height: 80px;
  max-width: 80px;
  max-height: 80px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__icon img {
  min-width: 60px;
  min-height: 60px;
  max-width: 60px;
  max-height: 60px;
}
.about__name {
  color: #F5EBDF;
  font-size: 34px;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .about .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .about .gallery__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.gallery__text, .gallery__title {
  max-width: 860px;
  margin: 0 auto;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery__grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px) {
  .gallery__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .gallery__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.info {
  background: url(/wp-content/themes/zentharaflame/assets/img/bg-2.webp) no-repeat center/cover;
  padding: 60px 0;
  margin: 60px 0;
}
.info__title {
  color: #F5EBDF;
  font-size: clamp(34px, 4vw, 70px);
  font-weight: 400;
  line-height: 110%;
}
.info__text {
  max-width: 1016px;
  margin: 0 auto;
}
.info__address {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(87deg, #120238 0.46%, #07DC6E 106.76%);
  padding: 20px 50px;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

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