
@import url(https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap);

.container {
  padding: 0px 12px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .container {
    max-width: 360px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1200px) {
  .container {
    padding: 0px 32px;
    max-width: 1200px;
  }
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p, span {
  margin: 0;
  padding: 0;
}

button,
a {
  display: block;
  color: inherit;
  border: none;
  transition: all 0.35s linear;
  cursor: pointer;
  font-style: normal;
  -webkit-text-decoration: none;
  text-decoration: none;
}

img, picture, figcaption {
  display: block;
  width: 100%;
}

html, body {
  scroll-behavior: smooth;
  background: #131313;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #FEFCF9;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
}

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

.logo {
  font-weight: 800;
  font-size: 24px;
  line-height: 90%;
  letter-spacing: 0.08em;
  text-transform: capitalize;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.logo__svg {
  fill: currentColor;
}

.link:hover, .link:focus {
  color: #CF32B5;
}
.link:active {
  color: #920079;
}

.btn {
  font-family: inherit;
  border-radius: 10px;
  padding: 20px 48px;
  width: 100%;
  transition: all 0.35s linear;
  font-weight: 900;
  font-size: 16px;
  line-height: 120%;
  text-transform: capitalize;
  text-align: center;
}
@media (min-width: 1200px) {
  .btn {
    max-width: max-content;
  }
}
.btn:hover, .btnfocus {
  background: #920079;
}
.btn:active {
  color: #CF32B5;
}
.btn--main {
  color: #CF32B5;
  border: 1px solid #fff;
  background: #fff;
}
.btn--second {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.section-title {
  font-weight: 500;
  font-size: 48px;
  line-height: 110%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #131313;
  color: #FEFCF9;
  transition: all 0.35s linear;
  z-index: 5;
}

.header__nav {
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.header__list {
  display: none;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 72px;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .header__list {
    display: flex;
  }
}
.header__btn {
  display: none;
}
@media (min-width: 1200px) {
  .header__btn {
    background: #CF32B5;
    color: #fff;
    display: flex;
    padding: 12px 48px;
  }
}
.header__menu-btn {
  border: none;
  background: transparent;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .header__menu-btn {
    display: none;
  }
}
.header__menu-btn svg {
  stroke: currentColor;
}
.header__menu-btn svg.close {
  display: none;
}
.header__menu-btn.open svg.open {
  display: none;
}
.header__menu-btn.open svg.close {
  display: block;
}

.mobile-menu {
  background: #131313;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  display: none;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu__content {
  padding-top: 100px;
  min-width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  padding-bottom: 50px;
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu__btn {
  background: #CF32B5;
  color: #fff;
  display: flex;
  padding: 12px 48px;
  max-width: max-content;
}

.footer {
  padding-bottom: 380px;
  background-image: url(/wp-content/themes/pokaluno/assets/images/footer.png);
  background-position: bottom 0 center;
  background-size: 1400px;
  background-repeat: no-repeat;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__text-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .footer__text-block {
    flex-direction: row;
  }
}
.footer__text-block__left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__text-block__right {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.footer__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__nav__lower {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.footer__address {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__copy {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.footer__list {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1200px) {
  .footer__list {
    flex-direction: row;
  }
}

.hero {
  padding-top: 80px;
}
.hero__content {
  border-radius: 40px;
  padding: 24px;
  background-color: #CF32B5;
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .hero__content {
    padding: 0px 40px;
    flex-direction: row;
    justify-content: space-between;
  }
  .hero__content.page {
    padding: 40px;
  }
}
.hero__text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__title {
  font-weight: 500;
  font-size: 36px;
  line-height: 110%;
}
@media (min-width: 1200px) {
  .hero__title {
    font-size: 40px;
  }
}
.hero__subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 90%;
}
.hero__btn-block {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1200px) {
  .hero__btn-block {
    flex-direction: row;
  }
}
.hero__img {
  max-width: 510px;
}

.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1200px) {
  .about__content {
    gap: 56px;
    flex-direction: row;
  }
}
.about__img {
  max-width: 560px;
}
.about__img-code {
  max-width: max-content;
  align-self: flex-end;
}
.about__text-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__subtitle {
  font-weight: 700;
  font-size: 18px;
  line-height: 160%;
}
.about__strong {
  font-size: 18px;
}

.why-us__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.why-us__title {
  text-align: center;
}
.why-us__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.why-us__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1200px) {
  .why-us__item {
    max-width: 348px;
  }
}
.why-us__img {
  margin-bottom: 20px;
  max-width: 100px;
}
.why-us__subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 90%;
}

.bonuses__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .bonuses__content {
    gap: 56px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.bonuses__text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bonuses__subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 90%;
}
.bonuses__btn-block {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1200px) {
  .bonuses__btn-block {
    flex-direction: row;
  }
}
.bonuses__img {
  max-width: 510px;
}

.games-about__content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.games-about__link {
  width: 100%;
  max-width: 185px;
  height: 100%;
  max-height: 185px;
  border-radius: 24px;
  overflow: hidden;
}
.games-about__link:nth-child(even) {
  max-width: 92px;
  max-height: 92px;
}
.games-about__link:hover .games-about__img, .games-about__link:focus .games-about__img {
  transform: scale(1.2);
}
.games-about__img {
  transition: all 0.35s linear;
}

.game-prefs__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.game-prefs__title {
  text-align: center;
}
.game-prefs__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.game-prefs__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1200px) {
  .game-prefs__item {
    max-width: 254px;
  }
}
.game-prefs__img {
  margin-bottom: 20px;
  max-width: 100px;
}
.game-prefs__subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 90%;
}

.privacy {
  padding-top: 100px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
}
.privacy__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.privacy a {
  display: inline;
}

.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 850px;
  z-index: 1;
  display: none;
}
.cookie__content {
  background: #131313;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 40px;
  padding: 20px;
  margin: 5px;
}
@media (min-width: 1200px) {
  .cookie__content {
    padding: 64px;
  }
}
.cookie__btn-block {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1200px) {
  .cookie__btn-block {
    flex-direction: row;
  }
}
