@import url("https://fonts.googleapis.com/css2?family=Anton&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: "Anton", sans-serif;
  background: #1D2027;
}

.lock {
  overflow: hidden;
}

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

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

[class*=__text] {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}

.h2 {
  color: #FFF;
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}
.h2 span {
  color: #98DC13;
}

.btn {
  display: inline-block;
  color: #1D2027;
  font-size: 14px;
  font-weight: 400;
  border-radius: 60px;
  background: #98DC13;
  padding: 22px 60px;
}

.main {
  flex: 1 1 auto;
}

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

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

.header {
  width: 100%;
  background: #1D2027;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
@media (max-width: 575px) {
  .header__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__menu a {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}

.footer {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer__menu {
  display: flex;
  gap: 30px;
}
.footer__menu a {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .footer__menu {
    flex-direction: column;
    align-items: center;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__txt {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  max-width: 850px;
  width: 100%;
  border-top: 4px solid #98DC13;
  background: #FFF;
}
@media (max-width: 767px) {
  .cookies {
    padding: 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  color: #98DC13;
  font-size: 30px;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}
.cookies__text {
  color: #1D2027;
  font-size: 14px;
  font-weight: 400;
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}
@media (max-width: 767px) {
  .cookies__btns {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.cookies__btn_sub {
  padding: 22px 60px;
  border-radius: 60px;
  border: 1px solid #1D2027;
  color: #1D2027;
  font-size: 14px;
  font-weight: 400;
}

.hero {
  padding: 60px 0;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 865px;
  margin: 0 auto;
  text-align: center;
}
.hero__title {
  width: 100%;
}
.hero__text {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  max-width: 640px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.hero__btn {
  text-decoration: none;
  margin-bottom: 30px;
}
.hero__icons {
  width: 100%;
  max-width: 700px;
  display: block;
}

.about {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}
.about__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.about__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  flex: 1 1 0;
}
.about__texts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about__text {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
.about__btn {
  text-decoration: none;
}
.about__right {
  flex-shrink: 0;
  width: 480px;
}
.about__img {
  width: 100%;
  display: block;
}
@media (max-width: 1023px) {
  .about__content {
    flex-direction: column;
  }
  .about__right {
    width: 100%;
    max-width: 480px;
    margin-right: -20px;
  }
}

.games {
  padding: 60px 0;
}
.games__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.games__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.games__desc {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  max-width: 860px;
}
.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.games__card {
  background: #2A2F38;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.games__img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.games__card-body {
  padding: 15px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}
.games__genre {
  color: #98DC13;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}
.games__name {
  color: #FFF;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}
.games__text {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  flex: 1;
}
.games__btn {
  text-decoration: none;
  padding: 14px 40px;
  font-size: 13px;
}
@media (max-width: 1023px) {
  .games__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .games__grid {
    grid-template-columns: 1fr;
  }
}

.stats {
  padding: 60px 0;
}
.stats__content {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 20px;
}
.stats__left {
  flex: 1 1 0;
  display: flex;
  align-items: flex-end;
  gap: 30px;
}
@media (max-width: 575px) {
  .stats__left {
    flex-direction: column;
    align-items: flex-start;
  }
}
.stats__left-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}
.stats__desc {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
.stats__btn {
  text-decoration: none;
}
.stats__chest {
  width: 160px;
  flex-shrink: 0;
}
.stats__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 370px;
  flex-shrink: 0;
}
.stats__card {
  background: #2A2F38;
  border-radius: 10px;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stats__number {
  color: #98DC13;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.stats__label {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 1023px) {
  .stats__content {
    flex-direction: column;
    align-items: stretch;
  }
  .stats__right {
    width: 100%;
  }
}

.reviews {
  padding: 60px 0;
}
.reviews__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.reviews__card {
  background: #2A2F38;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reviews__stars {
  width: 130px;
}
.reviews__name {
  color: #98DC13;
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}
.reviews__text {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
.reviews__trophy {
  background: linear-gradient(160deg, #F5D24B 0%, #98DC13 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  min-height: 200px;
}
@media (max-width: 1023px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews__trophy {
    grid-column: span 2;
    min-height: 160px;
  }
}
@media (max-width: 767px) {
  .reviews__grid {
    grid-template-columns: 1fr;
  }
  .reviews__trophy {
    grid-column: span 1;
  }
}

.contact {
  background: url(/wp-content/themes/mynikkorvenxarok/assets/img/bg.png) no-repeat center/cover;
  padding: 95px 0;
  margin: 60px 0;
}
@media (max-width: 767px) {
  .contact {
    background: url(/wp-content/themes/mynikkorvenxarok/assets/img/bg-mob.png) no-repeat top/contain;
  }
}
.contact__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 595px;
  margin: 0 auto;
}
.contact__address {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 60px;
  display: flex;
  flex-direction: column;
}
.contact__address a,
.contact__address p {
  color: #98DC13;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .contact {
    padding: 15px 20px;
  }
}

.game__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.game__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.game__link {
  width: -moz-fit-content;
  width: fit-content;
}

.privacy {
  margin: 24px 0 60px;
}