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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: #282828;
  background: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.15;
}

ul,
ol {
  list-style: none;
}

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

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

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

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

.container {
  width: 100%;
  padding: 0 14px;
  margin: 0 auto;
  max-width: 360px;
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1368px) {
  .container {
    max-width: 1368px;
    padding: 0 82px;
  }
}

.h1 {
  font-weight: 800;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1.2;
}

@media (min-width: 1368px) {
  .h1 {
    font-size: 180px;
  }
}

.h2 {
  font-weight: 800;
  font-size: 46px;
  text-transform: uppercase;
  line-height: 1.1;
}

@media (min-width: 1368px) {
  .h2 {
    font-size: 100px;
  }
}

.h3 {
  font-weight: 800;
  font-size: 30px;
  line-height: 1.1;
}

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

.logo {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.logo:hover, .logo:focus {
  color: #f57199;
}

.logo:active {
  color: #d60947;
}

.link {
  margin: 0;
  padding: 0;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.1;
  border-bottom: 2px solid transparent;
}

.link:hover, .link:focus {
  color: #f57199;
  border-bottom: 2px solid #f57199;
}

.link:active {
  color: #d60947;
  border-bottom: 2px solid #d60947;
}

.btn {
  display: block;
  width: 100%;
  font-family: inherit;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border: none;
  margin: 0;
  border-radius: 12px;
  padding: 24px 60px;
  background: -webkit-gradient(linear, left top, right top, from(#f57199), to(#d60947));
  background: linear-gradient(90deg, #f57199 0%, #d60947 100%);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

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

.btn:hover, .btn:focus {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  box-shadow: 1px 10px 18px 10px rgba(111, 1, 31, 0.75);
  -webkit-box-shadow: 1px 4px 18px 10px rgba(111, 1, 31, 0.75);
  -moz-box-shadow: 1px 4px 18px 10px rgba(111, 1, 31, 0.75);
}

.btn:active {
  box-shadow: 0px -2px 13px 3px rgba(111, 1, 31, 0.75) inset;
  -webkit-box-shadow: 0px -2px 13px 3px rgba(111, 1, 31, 0.75) inset;
  -moz-box-shadow: 0px -2px 13px 3px rgba(111, 1, 31, 0.75) inset;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: #fff;
  z-index: 10;
}

.header__nav {
  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;
  color: #282828;
}

@media (min-width: 768px) {
  .header__nav {
    -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;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .hero {
    padding-bottom: 100px;
  }
}

@media (min-width: 1368px) {
  .hero {
    padding-bottom: 40px;
  }
}

.hero__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: 30px;
  position: relative;
}

.hero__text-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .hero__text-block {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    -ms-grid-columns: 238px 270px;
        grid-template-columns: 238px 270px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media (min-width: 1368px) {
  .hero__text-block {
    bottom: 0;
  }
}

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

.about__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

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

.games {
  background: rgba(245, 113, 153, 0.6);
  padding-top: 60px;
  padding-bottom: 60px;
}

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

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

.games__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 1368px) {
  .games__list {
    -ms-grid-columns: 1fr 320px 160px;
        grid-template-columns: 1fr 320px 160px;
  }
}

.games__item {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}

.games__item.four {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

.games__item.two {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

@media (min-width: 1368px) {
  .games__item.two {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
  }
}

.games__link {
  overflow: hidden;
  border-radius: 28px;
  position: relative;
}

.games__link:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(214, 9, 71, 0.8);
  opacity: 0;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  z-index: 1;
}

.games__link img {
  max-width: none;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.games__link:hover::before, .games__link:focus::before {
  opacity: 1;
}

.games__link:hover .games__item-name, .games__link:focus .games__item-name {
  opacity: 1;
}

.games__link:hover img, .games__link:focus img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.games__item-name {
  position: absolute;
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  max-width: 90%;
  z-index: 2;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  opacity: 0;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  color: #fff;
}

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

.statistics__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

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

.start {
  background: rgba(245, 113, 153, 0.6);
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.footer {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url(/wp-content/themes/tromilaka/assets/img/footer.webp);
  background-position: bottom 0 center;
  background-size: contain;
  background-repeat: no-repeat;
}

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

.footer__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: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

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

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

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

.footer__social-link {
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  color: #fff;
}

.footer__social-link:hover, .footer__social-link:focus {
  -webkit-transform: scale(1.18);
          transform: scale(1.18);
}

.footer__social-link:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.game-page-intro {
  background: rgba(245, 113, 153, 0.6);
}

.game-page-intro__content {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 30px;
}

.game-page-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: 30px;
}

.game-page-about__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1368px) {
  .game-page-about__wrapper {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.game-page-about__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: 20px;
}

.game-page-about__list {
  padding-left: 20px;
  list-style: disc;
}

.cookie {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 15px;
  max-width: 500px;
}

.cookie__content {
  background: #fff;
  color: #282828;
  border: 2px solid #f57199;
  border-radius: 20px;
  padding: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

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

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

.cookie__btn {
  background: #fff;
  border: 1px solid #fff;
  color: #fff;
}

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

.privacy__subtitle {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.1;
}
/*# sourceMappingURL=styles.css.map */