@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: #111;
  font-family: "Outfit", sans-serif;
  color: #fff;
  font-weight: 200;
  font-size: 20px;
  line-height: 140%;
}

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

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

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

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

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

section:nth-child(1) {
  padding-top: 90px;
}

@media (min-width: 1200px) {
  section:nth-child(1) {
    padding-top: 150px;
  }
}

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

.h1, .h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-size: 64px;
  text-transform: uppercase;
  line-height: 1;
}

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

.h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
}

.h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
}

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

.logo {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.logo:hover, .logo:focus {
  color: #99ee2d;
}

.link {
  font-weight: 600;
  font-size: 18px;
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.link:hover, .link:focus {
  color: #99ee2d;
}

.btn {
  font-family: "Roboto Condensed", sans-serif;
  width: 100%;
  padding: 12px 24px;
  background: #99ee2d;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: #111;
  text-transform: uppercase;
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

@media (min-width: 1200px) {
  .btn {
    max-width: 400px;
  }
}

.btn:hover, .btn:focus {
  background: #BEF970;
}

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

.btn.more {
  background: transparent;
  border: 2px solid #99ee2d;
  color: #99ee2d;
}

.btn.more:hover, .btn.more:focus {
  border-color: #BEF970;
  color: #BEF970;
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  padding-left: 0;
}

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

.header {
  position: fixed;
  background: #111;
  width: 100%;
  z-index: 10;
}

.header__nav {
  padding-top: 24px;
  padding-bottom: 24px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.header__menu {
  margin: 0;
  border: none;
  background: transparent;
}

@media (min-width: 1200px) {
  .header__menu {
    display: none;
  }
}

.header__list {
  list-style: none;
  display: none;
  -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: 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  text-align: right;
}

@media (min-width: 1200px) {
  .header__list {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  padding-top: 50px;
  z-index: 9;
  background-image: url(/wp-content/themes/klunarex/assets/img/menu.webp);
  background-position: bottom 0 center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.header__mobile__list {
  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: 90px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 90px;
}

.hero {
  background-image: url(/wp-content/themes/klunarex/assets/img/1m.webp);
  background-position: right 0 top 0;
  background-size: cover;
  background-repeat: no-repeat;
}

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

.hero__text-block {
  max-width: 730px;
}

.about {
  background-image: url(/wp-content/themes/klunarex/assets/img/2m.webp);
  background-position: right 0 top 0;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .about {
    background-image: url(/wp-content/themes/klunarex/assets/img/2.webp);
  }
}

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

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

@media (min-width: 768px) {
  .about__list {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

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

.about__item {
  border-bottom: 4px solid #9af028;
  padding: 32px;
  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: 8px;
  text-align: left;
  -webkit-backdrop-filter: blur(35px);
          backdrop-filter: blur(35px);
  -webkit-box-shadow: -16px 16px 34px 0 rgba(0, 0, 0, 0.25);
          box-shadow: -16px 16px 34px 0 rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.gaming {
  background-image: url(/wp-content/themes/klunarex/assets/img/3m.webp);
  background-position: right 0 top 0;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .gaming {
    background-image: url(/wp-content/themes/klunarex/assets/img/3.webp);
  }
}

.gaming__text-block {
  max-width: 730px;
}

.why {
  background-image: url(/wp-content/themes/klunarex/assets/img/4m.webp);
  background-position: right 0 top 0;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .why {
    background-image: url(/wp-content/themes/klunarex/assets/img/4.webp);
  }
}

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

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

@media (min-width: 768px) {
  .why__list {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

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

.why__item {
  border-bottom: 4px solid #9af028;
  padding: 32px;
  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: 8px;
  text-align: left;
  -webkit-backdrop-filter: blur(35px);
          backdrop-filter: blur(35px);
  -webkit-box-shadow: -16px 16px 34px 0 rgba(0, 0, 0, 0.25);
          box-shadow: -16px 16px 34px 0 rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.footer {
  padding-top: 42px;
  padding-bottom: 42px;
  background-image: url(/wp-content/themes/klunarex/assets/img/bgfm.webp);
  background-position: right 0 top 0;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .footer {
    background-image: url(/wp-content/themes/klunarex/assets/img/bgf.webp);
  }
}

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

.footer__address {
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  text-align: center;
}

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

.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;
  font-weight: 600;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}

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

.footer__copy {
  font-weight: 200;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
}

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

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

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

.cookie-popup__content {
  padding: 48px 12px;
  background: #000;
  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__content {
    padding: 48px;
  }
}

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

.games__list {
  padding-left: 0;
  list-style: none;
}

.games__item {
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.games__item:hover, .games__item:focus {
  opacity: 0.6;
}

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

.game__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

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

.game__lower {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 24px;
}

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

.privacy__content, .terms__content, .cookies__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: 24px;
}

.privacy a, .terms a, .cookies a {
  display: inline;
}
/*# sourceMappingURL=styles.css.map */