@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink: #ed68b1;
  --dark: #0e0f11;
  --black: #000000;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  min-width: 320px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

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

ul,
li {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.header {
  border-bottom: 0.625px solid rgba(14, 15, 17, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.header__logo-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: var(--dark);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 37.5px;
}

.header__nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 16.25px;
  letter-spacing: -0.16px;
  color: var(--dark);
  transition: color 0.3s;
}

.header__nav-link:hover {
  color: var(--pink);
}

.header__btn {
  background: var(--dark);
  border-radius: 18.75px;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  text-transform: capitalize;
}

.header__btn:hover {
  background: var(--pink);
}

.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.header__burger img {
  width: 30px;
  height: 20px;
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: var(--dark);
  line-height: 1;
}

.mobile-menu__link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--dark);
}

.mobile-menu__btn {
  background: var(--dark);
  border-radius: 18.75px;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  text-transform: capitalize;
}

.hero {
  background: var(--white);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero__bg-image {
  position: absolute;
  width: 395.92px;
  height: 617.018px;
  right: 0;
  top: -23px;
  transform: rotate(126.33deg) scaleY(-1);
  pointer-events: none;
  object-fit: contain;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 84px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--pink);
  width: 463px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hero__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 316px;
  width: 647px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hero__quote-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  width: 280px;
}

.hero__quote {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 24px;
  line-height: 1.1;
  color: var(--black);
  width: 100%;
}

.hero__arrow {
  width: 35px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__arrow img {
  transform: rotate(48.09deg);
  width: 52.402px;
  height: 20px;
}

.hero__bottom {
  display: flex;
  align-items: flex-end;
  gap: 60px;
  width: 100%;
}

.hero__description-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.hero__description {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.1;
  color: var(--black);
}

.btn-pink {
  background: var(--pink);
  border-radius: 100px;
  padding: 20px 50px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.btn-pink:hover {
  opacity: 0.85;
}

.about {
  background: var(--white);
  overflow: hidden;
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 40px;
}

.about__image {
  width: 342px;
  height: 469px;
  border-radius: 20px;
  object-fit: cover;
  flex-shrink: 0;
}

.about__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--dark);
}

.about__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: var(--black);
}

.about__text p + p {
  margin-top: 19.2px;
}

.game-types {
  background: var(--pink);
  overflow: hidden;
}

.game-types__inner {
  position: relative;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: flex-start;
}

.game-types__title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  width: 100%;
}

.game-types__image {
  position: absolute;
  width: 387px;
  height: 414px;
  border-radius: 20px;
  object-fit: cover;
  left: 186px;
  top: 157px;
  z-index: 1;
}

.game-types__list {
  display: flex;
  flex-direction: column;
  gap: 43px;
  align-items: flex-end;
  width: 100%;
}

.game-types__item {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  width: 530px;
}

.game-types__item--active {
  background: var(--white);
  width: 100%;
  padding: 13px 30px 16px 667px;
  color: var(--pink);
}

.game-types__item--active .game-types__item-inner {
  display: flex;
  align-items: center;
  gap: 54px;
}

.game-types__item--active .game-types__arrow {
  width: 35px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.game-types__item--active .game-types__arrow img {
  transform: rotate(48.09deg);
  width: 52.402px;
  height: 20px;
}

.why-choose {
  background: var(--white);
  overflow: hidden;
}

.why-choose__inner {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: flex-start;
}

.why-choose__title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--dark);
  text-align: center;
  width: 100%;
}

.why-choose__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: var(--black);
  text-align: center;
  width: 100%;
}

.why-choose__grid {
  position: relative;
  width: 100%;
  height: 469px;
}

.why-choose__center-image {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 342px;
  height: 469px;
  border-radius: 20px;
  object-fit: cover;
}

.why-choose__card {
  position: absolute;
  width: 278px;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--white);
}

.why-choose__card--black {
  background: var(--black);
}

.why-choose__card--pink {
  background: var(--pink);
}

.why-choose__card--tl {
  left: 0;
  top: 8px;
}

.why-choose__card--bl {
  left: 62px;
  top: 253px;
}

.why-choose__card--tr {
  left: 842px;
  top: 8px;
}

.why-choose__card--br {
  left: 780px;
  top: 253px;
}

.why-choose__card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
}

.why-choose__card-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}

.faq {
  background: var(--white);
  overflow: hidden;
}

.faq__inner {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: flex-start;
}

.faq__title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--dark);
  text-align: center;
  width: 100%;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.faq__item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__divider {
  width: 100%;
  height: 1.25px;
  border: none;
  background: var(--dark);
  opacity: 0.15;
}

.faq__item-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.faq__item-text {
  width: 500px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: var(--black);
}

.faq__item-question {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  text-transform: uppercase;
}

.faq__item-answer {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}

.faq__item-image {
  width: 403.125px;
  height: 287.5px;
  border-radius: 20px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer {
  background: var(--black);
  overflow: hidden;
}

.footer__inner {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer__left {
  display: flex;
  align-items: flex-end;
  gap: 60px;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 27.5px;
  width: 543.75px;
}

.footer__label {
  display: flex;
  align-items: center;
  gap: 17.5px;
}

.footer__arrow-img {
  width: 171.284px;
  height: 16.25px;
  object-fit: cover;
}

.footer__label-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 17.5px;
  text-transform: uppercase;
  color: var(--white);
}

.footer__heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 90px;
  line-height: 100px;
  text-transform: capitalize;
  color: var(--white);
}

.footer__start-btn {
  border: 1.25px solid var(--white);
  border-radius: 18.75px;
  padding: 13.75px 17.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  text-transform: capitalize;
  flex-shrink: 0;
  transition: background 0.3s;
}

.footer__start-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.footer__decor {
  display: inline-grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  flex-shrink: 0;
}

.footer__decor-white {
  width: 42.5px;
  height: 42.5px;
  background: var(--white);
  grid-column: 1;
  grid-row: 1;
  margin-top: 25px;
}

.footer__decor-pink {
  width: 42.5px;
  height: 42.5px;
  background: var(--pink);
  grid-column: 1;
  grid-row: 1;
  margin-left: 25px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__social-link {
  width: 60.798px;
  height: 60.798px;
}

.footer__social-link img {
  width: 100%;
  height: 100%;
}

.footer__contacts {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.footer__contact-btn {
  background: var(--pink);
  border-radius: 18.75px;
  padding: 13.75px 17.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  text-transform: capitalize;
  white-space: nowrap;
}

.footer__contact-btn:hover {
  opacity: 0.85;
}

.footer__line {
  width: 100%;
  height: 1.25px;
}

.footer__line img {
  width: 100%;
  height: 100%;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.footer__copyright {
  font-size: 14px;
  line-height: 1.2;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 1.2;
}

.footer__legal-link {
  color: var(--white);
  transition: color 0.3s;
}

.footer__legal-link:hover {
  color: var(--pink);
}

.catalog {
  background: #f5f5f5;
  overflow: hidden;
}

.catalog__inner {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.catalog__blob {
  position: absolute;
  width: 469px;
  height: 469px;
  left: 117px;
  top: -121px;
  pointer-events: none;
}

.catalog__blob img {
  position: absolute;
  inset: -79.96%;
  width: calc(100% + 159.92%);
  height: calc(100% + 159.92%);
}

.catalog__header {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 1;
}

.catalog__title {
  flex: 1;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 50px;
  text-transform: uppercase;
  color: var(--black);
}

.catalog__description {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: var(--black);
}

.catalog__description p + p {
  margin-top: 20px;
}

.catalog__content {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.catalog__cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.catalog__card {
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--white);
}

.catalog__card--black {
  background: var(--black);
}

.catalog__card--pink {
  background: var(--pink);
}

.catalog__card-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.catalog__card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
}

.catalog__card-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}

.catalog__games-grid {
  display: grid;
  grid-template-columns: repeat(3, 165px);
  grid-template-rows: repeat(2, 165px);
  flex-shrink: 0;
}

.catalog__game-link {
  width: 165px;
  height: 165px;
  display: block;
}

.catalog__game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s;
}

.catalog__game-link:hover .catalog__game-img {
  transform: scale(1.05);
}

.policy {
  background: #f5f5f5;
  overflow: hidden;
}

.policy__inner {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.policy__blob {
  position: absolute;
  width: 469px;
  height: 469px;
  left: 117px;
  top: -121px;
  pointer-events: none;
}

.policy__blob img {
  position: absolute;
  inset: -79.96%;
  width: calc(100% + 159.92%);
  height: calc(100% + 159.92%);
}

.policy__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 50px;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.policy__content {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: var(--black);
  width: 100%;
  position: relative;
  z-index: 1;
}

.policy__content p {
  margin-bottom: 20px;
}

.policy__content p:last-child {
  margin-bottom: 0;
}

.policy__content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.policy__content ul li {
  list-style: disc;
  margin-bottom: 0;
  line-height: 1.2;
}

.policy__content a {
  text-decoration: underline;
}

.game-page {
  background: #f5f5f5;
  overflow: hidden;
}

.game-page__top {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.game-page__header {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.game-page__image {
  width: 240px;
  height: 240px;
  border-radius: 1000px;
  object-fit: cover;
  flex-shrink: 0;
}

.game-page__title-row {
  flex: 1;
  display: flex;
  gap: 40px;
  align-items: center;
}

.game-page__dot {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.game-page__title {
  flex: 1;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 50px;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
}

.game-page__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
  width: 100%;
}

.game-page__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
  width: 100%;
}

.game-page__text p + p {
  margin-top: 16px;
}

.game-page__play-btn {
  background: var(--pink);
  border-radius: 18.75px;
  padding: 20px 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  text-transform: capitalize;
  transition: opacity 0.3s;
}

.game-page__play-btn:hover {
  opacity: 0.85;
}

.game-page__features {
  width: 100%;
  max-width: 100%;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.game-page__features-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  left: 204px;
  top: -87px;
  pointer-events: none;
}

.game-page__features-blob img {
  position: absolute;
  inset: -125%;
  width: calc(100% + 250%);
  height: calc(100% + 250%);
}

.game-page__features-row {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.game-page__feature {
  flex: 1;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--white);
}

.game-page__feature--black {
  background: var(--black);
}

.game-page__feature--pink {
  background: var(--pink);
}

.game-page__feature-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
}

.game-page__feature-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 24px;
  margin: 0 auto;
  width: calc(100% - 80px);
  max-width: 1120px;
  background: var(--pink);
  border-radius: 40px;
  padding: 50px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: 0 24px 60px rgba(14, 15, 17, 0.25);
  transform: translateY(calc(100% + 48px));
  opacity: 0;
  visibility: hidden;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease, visibility 0.55s;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}

.cookie-banner__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1020px;
}

.cookie-banner__text p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: var(--white);
}

.cookie-banner__buttons {
  display: flex;
  gap: 16px;
}

.cookie-banner__btn {
  background: var(--white);
  border: none;
  border-radius: 100px;
  padding: 18px 44px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.cookie-banner__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.cookie-banner__btn--decline:hover {
  background: var(--black);
  color: var(--white);
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}

.js .reveal-stagger.is-visible > *:nth-child(2) {
  transition-delay: 0.1s;
}

.js .reveal-stagger.is-visible > *:nth-child(3) {
  transition-delay: 0.2s;
}

.js .reveal-stagger.is-visible > *:nth-child(4) {
  transition-delay: 0.3s;
}

.js .reveal-stagger.is-visible > *:nth-child(5) {
  transition-delay: 0.4s;
}

.js .reveal-stagger.is-visible > *:nth-child(6) {
  transition-delay: 0.5s;
}

.why-choose__card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-choose__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(14, 15, 17, 0.22);
}

.catalog__card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.catalog__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(14, 15, 17, 0.18);
}

.game-page__feature {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.game-page__feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(14, 15, 17, 0.2);
}

.about__image,
.game-page__image,
.faq__item-image,
.game-types__image,
.why-choose__center-image {
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.about__image:hover,
.game-page__image:hover,
.faq__item-image:hover,
.game-types__image:hover,
.why-choose__center-image:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 44px rgba(14, 15, 17, 0.2);
}

.btn-pink,
.header__btn,
.game-page__play-btn,
.mobile-menu__btn {
  transition: transform 0.25s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.25s ease;
}

.btn-pink:hover,
.header__btn:hover,
.game-page__play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(237, 104, 177, 0.35);
}

.footer__social-link {
  transition: transform 0.3s ease;
}

.footer__social-link:hover {
  transform: translateY(-4px) scale(1.05);
}

.footer__contact-btn {
  transition: transform 0.25s ease, opacity 0.3s ease;
}

.footer__contact-btn:hover {
  transform: translateY(-3px);
}

.game-types__item {
  transition: color 0.3s ease, transform 0.3s ease;
}

.game-types__item:not(.game-types__item--active):hover {
  color: var(--dark);
  transform: translateX(-8px);
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal,
  .js .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cookie-banner {
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}

@media (max-width: 1200px) {
  .game-types__item--active {
    padding-left: calc(100% - 533px);
  }

  .game-types__image {
    left: 80px;
  }

  .why-choose__card--tr {
    left: auto;
    right: 0;
  }

  .why-choose__card--br {
    left: auto;
    right: 0;
  }
}

@media (max-width: 768px) {
  .cookie-banner {
    width: calc(100% - 40px);
    bottom: 16px;
    padding: 30px 24px;
    border-radius: 30px;
    gap: 24px;
  }

  .cookie-banner__title {
    font-size: 40px;
  }

  .cookie-banner__text {
    gap: 16px;
  }

  .cookie-banner__text p {
    font-size: 16px;
  }

  .cookie-banner__btn {
    padding: 16px 34px;
    font-size: 16px;
  }

  .header__inner {
    padding: 14px 20px;
  }

  .header__logo-text {
    font-size: 24px;
    color: var(--black);
  }

  .header__nav {
    display: none;
  }

  .header__btn {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .hero__inner {
    padding: 40px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero__bg-image {
    width: 141.804px;
    height: 220.993px;
    left: auto;
    right: 0;
    top: 217px;
    transform: rotate(-117.06deg) scaleY(-1);
  }

  .hero__title {
    font-size: 50px;
    width: 100%;
  }

  .hero__right {
    width: 100%;
    gap: 20px;
    align-items: flex-end;
  }

  .hero__quote-block {
    width: 100%;
  }

  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero__description-block {
    width: 100%;
  }

  .about__inner {
    padding: 40px 20px;
    flex-direction: column;
    gap: 20px;
  }

  .about__image {
    width: 100%;
    height: 200px;
  }

  .about__title {
    font-size: 30px;
    line-height: 1.1;
  }

  .game-types__inner {
    padding: 40px 20px;
    gap: 20px;
  }

  .game-types__title {
    font-size: 30px;
    line-height: 1.1;
    text-align: center;
  }

  .game-types__image {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 200px;
    z-index: 0;
  }

  .game-types__list {
    gap: 20px;
  }

  .game-types__item {
    font-size: 20px;
    width: 100%;
  }

  .game-types__item--active {
    padding: 12px 10px;
    width: 100%;
  }

  .game-types__item--active .game-types__item-inner {
    justify-content: space-between;
  }

  .why-choose__inner {
    padding: 40px 20px;
    gap: 20px;
  }

  .why-choose__title {
    font-size: 30px;
    line-height: 1.1;
  }

  .why-choose__grid {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .why-choose__center-image {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: 200px;
    order: 3;
  }

  .why-choose__card {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 100%;
    flex: 1;
    min-height: auto;
  }

  .why-choose__card--tl {
    order: 1;
  }

  .why-choose__card--bl {
    order: 2;
  }

  .why-choose__card--tr {
    order: 4;
  }

  .why-choose__card--br {
    order: 5;
  }

  .faq__inner {
    padding: 40px 20px;
    gap: 20px;
  }

  .faq__title {
    font-size: 30px;
    line-height: 1.1;
  }

  .faq__list {
    gap: 20px;
    flex-direction: column-reverse;
  }

  .faq__divider {
    width: 100%;
  }

  .faq__item-content {
    flex-direction: column;
    gap: 20px;
  }

  .faq__item-text {
    width: 100%;
    gap: 20px;
  }

  .faq__item-question {
    font-size: 20px;
  }

  .faq__item-image {
    width: 100%;
    height: 200px;
    order: -1;
  }

  .footer__inner {
    padding: 40px 20px;
    gap: 20px;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
  }

  .footer__left {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .footer__info {
    width: 100%;
    position: relative;
  }

  .footer__heading {
    font-size: 60px;
    line-height: 100px;
  }

  .footer__decor {
    position: absolute;
    right: 60px;
    top: 113px;
  }

  .footer__contacts {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .footer__contact-btn {
    width: 100%;
    text-align: center;
    padding: 13.75px 5px;
  }

  .footer__bottom {
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
  }

  .footer__legal {
    align-items: center;
  }

  .policy__inner {
    padding: 40px 20px;
    gap: 20px;
  }

  .policy__title {
    font-size: 30px;
    line-height: 1.1;
  }

  .game-page__top {
    padding: 40px 20px;
    gap: 20px;
  }

  .game-page__header {
    flex-direction: column;
    gap: 20px;
  }

  .game-page__image {
    width: 180px;
    height: 180px;
  }

  .game-page__title-row {
    gap: 20px;
  }

  .game-page__title {
    font-size: 30px;
    line-height: 1.1;
  }

  .game-page__dot {
    width: 30px;
    height: 30px;
  }

  .game-page__features {
    padding: 40px 20px;
  }

  .game-page__features-row {
    flex-direction: column;
    gap: 20px;
  }

  .catalog__inner {
    padding: 40px 20px;
    gap: 20px;
  }

  .catalog__header {
    flex-direction: column;
    gap: 20px;
  }

  .catalog__title {
    font-size: 30px;
    line-height: 1.1;
  }

  .catalog__content {
    flex-direction: column;
    gap: 20px;
  }

  .catalog__games-grid {
    grid-template-columns: repeat(3, 130px);
    grid-template-rows: repeat(2, 130px);
    order: -1;
  }

  .catalog__game-link {
    width: 130px;
    height: 130px;
  }

  .catalog__cards {
    width: 100%;
    gap: 20px;
  }
}
