@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #000;
  color: #fff;
  min-width: 320px;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul, ol {
  list-style: none;
}

.header {
  background: #000;
  position: relative;
  overflow: hidden;
  height: 72px;
}

.header__ellipse {
  position: absolute;
  width: 1200px;
  height: 637px;
  left: 50%;
  top: -500px;
  transform: translateX(calc(-50% - 6px));
  pointer-events: none;
}

.header__ellipse img {
  width: 125%;
  height: 125%;
  position: absolute;
  inset: -13% -7%;
}

.header__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 7px;
}

.logo__icon {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.logo__text {
  font-weight: 700;
  font-size: 30px;
  line-height: 17px;
  color: #fff;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 17px;
  align-items: center;
}

.nav__link {
  font-weight: 400;
  font-size: 18px;
  line-height: 17px;
  color: #fff;
  padding: 8px 13px;
  border-radius: 83px;
  transition: background 0.3s;
}

.nav__link:hover {
  background: rgba(88, 8, 186, 0.5);
}

.nav__link--active {
  background: #5808ba;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 7px;
}

.nav__link--active:hover {
  background: #5808ba;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 35px;
  height: 16px;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  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;
  cursor: pointer;
  font-size: 36px;
  color: #fff;
  line-height: 1;
}

.mobile-menu__link {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  padding: 10px 30px;
  border-radius: 7px;
  transition: background 0.3s;
}

.mobile-menu__link:hover {
  background: #5808ba;
}

.hero {
  background:
    radial-gradient(ellipse 45% 100% at 85% 50%, rgba(190, 119, 253, 1) 0%, rgba(137, 2, 255, 0.7) 35%, rgba(60, 3, 142, 0.3) 65%, transparent 85%),
    radial-gradient(ellipse 35% 80% at 35% 40%, rgba(70, 50, 230, 1) 0%, rgba(60, 30, 180, 0.55) 40%, transparent 75%),
    #000;
  overflow: hidden;
  position: relative;
  padding: 60px 40px;
}

.hero__gradient {
  display: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero__content {
  max-width: 605px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  text-transform: uppercase;
}

.hero__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
}

.hero__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 60px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  background: radial-gradient(ellipse at center, #6c02ff, #3c038e, #0d041d);
  white-space: nowrap;
  align-self: flex-start;
  transition: opacity 0.3s;
  border-radius: 100px;
background: radial-gradient(50% 50% at 50% 50%, #0D041D 0%, #6C02FF 100%);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 60px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(to top, #030000, #120322);
  white-space: nowrap;
  transition: opacity 0.3s;
}

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

.hero__image {
  width: 468px;
  flex-shrink: 0;
  border-radius: 20px;
}

.hero__image img {
  width: 100%;
  height: 444px;
  object-fit: contain;
  border-radius: 20px;
}

.about {
  background: #000;
  overflow: hidden;
  padding: 60px;
}

.about__inner {
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid #be77fd;
  border-radius: 35px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about__image {
  flex-shrink: 0;
  width: 400px;
  height: 379px;
  border-radius: 20px;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

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

.about__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  text-transform: uppercase;
}

.about__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
}

.banner {
  width: 100%;
  height: 440px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews {
  background: #000;
  overflow: hidden;
  padding: 60px;
}

.reviews__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.reviews__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
}

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

.reviews__row {
  display: flex;
  gap: 20px;
}

.review-card {
  flex: 1;
  min-width: 0;
  border: 1px solid #be77fd;
  border-radius: 10px;
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  flex-shrink: 0;
  overflow: hidden;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-card__name {
  font-weight: 600;
  font-size: 18px;
  line-height: 17.5px;
  letter-spacing: 0.625px;
}

.review-card__location {
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
}

.review-card__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 22.5px;
}

.review-card__rating {
  font-weight: 600;
  font-size: 14px;
  line-height: 16.25px;
  letter-spacing: 0.3125px;
}

.cta {
  background: #000;
  overflow: hidden;
  padding: 60px 40px;
}

.cta__inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  border-radius: 35px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 15% 25%, #b366ff 0%, transparent 60%),
    radial-gradient(ellipse 70% 90% at 85% 80%, #6c02ff 0%, transparent 65%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #5808ba 0%, #3c038e 60%, #2a0263 100%);
}

.cta__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.cta__gradient-item {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta__gradient-item--1 {
  width: 70%;
  height: 60%;
  left: 15%;
  bottom: -20%;
  mix-blend-mode: plus-lighter;
}

.cta__gradient-item--1 img {
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.cta__gradient-item--2 {
  width: 80%;
  height: 100%;
  left: -10%;
  top: 0;
  mix-blend-mode: plus-lighter;
}

.cta__gradient-item--2 img {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.cta__gradient-item--3 {
  width: 100%;
  height: 70%;
  left: 0;
  bottom: 0;
  mix-blend-mode: color-dodge;
}

.cta__gradient-item--3 img {
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.cta__title {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta__title span {
  color: rgba(255, 255, 255, 0.5);
}

.cta__btn {
  position: relative;
  z-index: 1;
}

.faq {
  background: #000;
  overflow: hidden;
  padding: 60px;
}

.faq__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.faq__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
}

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

.faq__item {
  border: 0.833px solid #be77fd;
  border-radius: 10px;
  padding: 20px;
  backdrop-filter: blur(5.833px);
  background: rgba(3, 0, 0, 0.12);
  cursor: pointer;
  transition: background 0.3s;
}

.faq__item.active {
  background: linear-gradient(178.31deg, #be77fd 7.47%, #8902ff 64.97%, #0f041d 110.19%);
}

.faq__question {
  display: flex;
  gap: 18px;
  align-items: center;
}

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

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

.faq__icon .faq__icon-minus {
  display: none;
}

.faq__item.active .faq__icon .faq__icon-plus {
  display: none;
}

.faq__item.active .faq__icon .faq__icon-minus {
  display: block;
}

.faq__question-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  flex: 1;
}

.faq__answer {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.faq__item.active .faq__answer {
  max-height: 200px;
  margin-top: 18px;
}

.footer {
  background: linear-gradient(to right, #000, #2b0246);
  overflow: hidden;
  padding: 60px;
}

.footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__contacts p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
}

.footer__middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__social {
  width: 40px;
  height: 40px;
  overflow: hidden;
}

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

.footer__links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.footer__link {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  transition: opacity 0.3s;
}

.footer__link:hover {
  opacity: 0.7;
}

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

.footer__line {
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0.3;
}

.footer__copyright {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 768px) {
  .header {
    height: auto;
  }

  .header__inner {
    padding: 14px 20px;
  }

  .logo__text {
    font-size: 28px;
  }

  .nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero__inner {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .hero__content {
    max-width: 100%;
    gap: 20px;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__text-wrap {
    gap: 30px;
  }

  .hero__image {
    width: 100%;
  }

  .hero__image img {
    width: 100%;
    height: 370px;
    object-fit: contain;
  }

  .about {
    padding: 40px 20px;
  }

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

  .about__image {
    width: 100%;
    height: auto;
    aspect-ratio: 757 / 718;
  }

  .about__title {
    font-size: 32px;
  }

  .reviews {
    padding: 40px 20px;
  }

  .reviews__inner {
    gap: 20px;
  }

  .reviews__title {
    font-size: 32px;
  }

  .reviews__row {
    flex-direction: column;
  }

  .cta {
    padding: 40px 20px;
  }

  .cta__inner {
    padding: 20px;
    gap: 20px;
  }

  .cta__title {
    font-size: 32px;
    letter-spacing: 0.32px;
  }

  .faq {
    padding: 40px 20px;
  }

  .faq__inner {
    gap: 20px;
  }

  .faq__title {
    font-size: 32px;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer__inner {
    gap: 20px;
  }

  .footer__middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer__links {
    justify-content: space-between;
    width: 100%;
  }

  .footer__link {
    font-size: 16px;
  }
}

.catalog-hero {
  background: #000;
  overflow: hidden;
  padding: 60px;
  position: relative;
}

.catalog-hero__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.catalog-hero__mosaic {
  display: flex;
  align-items: flex-end;
  gap: 19px;
  position: relative;
  width: 100%;
  max-width: 1080px;
}

.catalog-hero__title {
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: right;
  width: 608px;
}

.catalog-hero__large-images {
  display: flex;
  gap: 19px;
  align-items: flex-end;
  flex-shrink: 0;
}

.catalog-hero__img-large {
  width: 217px;
  height: 297px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.catalog-hero__img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-hero__small-images {
  display: flex;
  gap: 19px;
  align-items: center;
  flex-shrink: 0;
}

.catalog-hero__img-small {
  width: 138px;
  height: 158px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.catalog-hero__img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-hero__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
}

.catalog-hero__description p + p {
  margin-top: 23px;
}

.catalog-hero__inner > .btn-primary,
.game-detail__inner > .btn-primary {
  align-self: center;
}

.features {
  background: #000;
  overflow: hidden;
  padding: 60px;
}

.features__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.features__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
}

.features__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.feature-card {
  width: calc(50% - 10px);
  min-height: 236px;
  border: 0.833px solid #be77fd;
  border-radius: 10px;
  padding: 13px;
  backdrop-filter: blur(5.833px);
  background: rgba(3, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-card__number {
  width: 56px;
  height: 56px;
  border-radius: 28px;
  background: radial-gradient(circle, #6c02ff, #3c038e, #0d041d 35%, rgba(1, 0, 3, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  flex-shrink: 0;
  border-radius: 27.917px;
background: radial-gradient(50% 50% at 50% 50%, rgba(1, 0, 3, 0.05) 0%, #0D041D 34.62%, #6C02FF 100%);
}

.feature-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-card__heading {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
}

.feature-card__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
}

.feature-card__arrow {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.feature-card__arrow img {
  width: 15px;
  height: 15px;
}

@media (max-width: 768px) {
  .catalog-hero {
    padding: 40px 20px;
  }

  .catalog-hero__mosaic {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .catalog-hero__title {
    position: static;
    transform: none;
    width: 100%;
    text-align: center;
    font-size: 32px;
  }

  .catalog-hero__large-images {
    gap: 15px;
    width: 100%;
  }

  .catalog-hero__img-large {
    flex: 1;
    width: auto;
    height: auto;
    aspect-ratio: 190 / 260;
  }

  .catalog-hero__small-images {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
  }

  .catalog-hero__img-small {
    width: calc(50% - 8px);
    height: auto;
    aspect-ratio: 138 / 158;
  }

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

  .features {
    padding: 40px 20px;
  }

  .features__inner {
    gap: 20px;
  }

  .features__title {
    font-size: 32px;
  }

  .features__grid {
    flex-direction: column;
  }

  .feature-card {
    width: 100%;
    min-height: auto;
  }
}

.game-detail {
  background: #000;
  overflow: hidden;
  padding: 60px;
}

.game-detail__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.game-detail__hero {
  display: flex;
  align-items: center;
  gap: 30px;
}

.game-detail__image {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.game-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-detail__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  text-transform: uppercase;
}

.game-detail__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
}

.game-detail__description p + p {
  margin-top: 23px;
}

@media (max-width: 768px) {
  .game-detail {
    padding: 40px 20px;
  }

  .game-detail__inner {
    gap: 20px;
  }

  .game-detail__hero {
    flex-direction: column;
    text-align: center;
  }

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

  .game-detail__title {
    font-size: 32px;
  }
}

.policy {
  background: #000;
  overflow: hidden;
  padding: 60px;
}

.policy__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.policy__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
}

.policy__content {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.36px;
}

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

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

.policy__content li {
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  .policy {
    padding: 40px 20px;
  }

  .policy__inner {
    gap: 20px;
  }

  .policy__title {
    font-size: 32px;
  }

  .policy__content {
    font-size: 16px;
  }
}

.cookie-banner {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 40px);
  max-width: 1100px;
  background: #000;
  border: 1px solid #be77fd;
  border-radius: 35px;
  padding: 50px 60px;
  text-align: center;
}

.cookie-banner.active {
  display: block;
}

.cookie-banner__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.cookie-banner__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.cookie-banner__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cookie-banner__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.cookie-banner__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  max-width: 860px;
  margin: 0 auto 32px;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 60px;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.3s;
  min-width: 280px;
}

.cookie-banner__btn:hover {
  opacity: 0.85;
}

.cookie-banner__btn--accept {
  background: radial-gradient(50% 50% at 50% 50%, #6c02ff 0%, #3c038e 100%);
}

.cookie-banner__btn--decline {
  border-radius: 100px;
  opacity: 0.4;
  background: radial-gradient(50% 50% at 50% 50%, #0D041D 0%, #6C02FF 100%);
}

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

  .cookie-banner__header {
    gap: 16px;
    margin-bottom: 20px;
  }

  .cookie-banner__icon {
    width: 44px;
    height: 44px;
  }

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

  .cookie-banner__text {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .cookie-banner__actions {
    flex-direction: column;
    gap: 14px;
  }

  .cookie-banner__btn {
    width: 100%;
    min-width: 0;
    padding: 16px 30px;
  }
}

/* ============================================================
   Animations & hover effects
   ============================================================ */

@keyframes mvt-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes mvt-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes mvt-slide-up {
  from { opacity: 0; transform: translate(-50%, 80px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes mvt-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

@keyframes mvt-glow-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(190, 119, 253, 0.25); }
  50%      { box-shadow: 0 0 50px rgba(190, 119, 253, 0.55); }
}

.hero__content { animation: mvt-fade-up 0.8s ease-out both; }
.hero__image   { animation: mvt-fade-in 1s ease-out 0.2s both; }
.hero__image img { animation: mvt-float 6s ease-in-out infinite; }

.about__inner       { animation: mvt-fade-up 0.7s ease-out both; }
.reviews__title,
.cta__title,
.faq__title,
.features__title    { animation: mvt-fade-up 0.6s ease-out both; }

/* Logo */
.logo {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}
.logo__icon {
  transition: transform 0.5s ease;
}
.logo:hover .logo__icon {
  transform: rotate(-15deg);
}

/* Nav links — smoother transition */
.nav__link {
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.nav__link:hover {
  transform: translateY(-2px);
}

/* Buttons — add subtle lift + glow */
.btn-primary,
.btn-secondary {
  transition: transform 0.25s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(108, 2, 255, 0.45);
}
.btn-secondary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(190, 119, 253, 0.25);
}

/* Hero image — keep float, but accelerate on hover */
.hero__image img {
  transition: transform 0.4s ease, filter 0.4s ease;
}
.hero__image:hover img {
  filter: drop-shadow(0 0 40px rgba(190, 119, 253, 0.55));
}

/* About image */
.about__image {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about__image:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(190, 119, 253, 0.35);
}
.about__image img {
  transition: transform 0.6s ease;
}
.about__image:hover img {
  transform: scale(1.08);
}

/* Banner image — slow zoom on hover */
.banner img {
  transition: transform 0.8s ease;
}
.banner:hover img {
  transform: scale(1.04);
}

/* Review cards */
.review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: #d39bff;
  box-shadow: 0 14px 40px rgba(190, 119, 253, 0.3);
}
.review-card__avatar {
  transition: transform 0.4s ease;
}
.review-card:hover .review-card__avatar {
  transform: scale(1.08) rotate(-3deg);
}

/* Feature cards (catalog) */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: #d39bff;
  box-shadow: 0 14px 40px rgba(190, 119, 253, 0.3);
  background: rgba(88, 8, 186, 0.18);
}
.feature-card__arrow img {
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-card__arrow img {
  transform: translateX(6px) translateY(-6px);
}

/* Catalog game tiles (mosaic) */
.catalog-hero__img-large,
.catalog-hero__img-small {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.catalog-hero__img-large:hover,
.catalog-hero__img-small:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 18px 45px rgba(190, 119, 253, 0.5);
}
.catalog-hero__img-large img,
.catalog-hero__img-small img {
  transition: transform 0.5s ease;
}
.catalog-hero__img-large:hover img,
.catalog-hero__img-small:hover img {
  transform: scale(1.08);
}

/* Game detail image */
.game-detail__image {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.game-detail__image:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 50px rgba(190, 119, 253, 0.45);
}
.game-detail__image img {
  transition: transform 0.5s ease;
}
.game-detail__image:hover img {
  transform: scale(1.1);
}

/* FAQ items */
.faq__item {
  transition: border-color 0.3s ease, background 0.3s ease;
}
.faq__item:not(.active):hover {
  border-color: #d39bff;
  background: rgba(88, 8, 186, 0.08);
}
.faq__icon {
  transition: transform 0.3s ease;
}
.faq__item:hover .faq__icon {
  transform: rotate(90deg) scale(1.1);
}
.faq__item.active:hover .faq__icon {
  transform: rotate(180deg) scale(1.1);
}

/* Footer */
.footer__social {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer__social:hover {
  transform: translateY(-4px) scale(1.15);
  opacity: 0.85;
}
.footer__link {
  position: relative;
  transition: color 0.3s ease;
}
.footer__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #be77fd;
  transition: width 0.3s ease;
}
.footer__link:hover {
  color: #d39bff;
}
.footer__link:hover::after {
  width: 100%;
}

/* Burger button */
.burger {
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Cookie banner — slide-up entrance */
.cookie-banner.active {
  animation: mvt-slide-up 0.5s ease-out both;
}
.cookie-banner__btn {
  transition: transform 0.25s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.cookie-banner__btn--accept:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(108, 2, 255, 0.5);
}
.cookie-banner__btn--decline:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(60, 3, 142, 0.35);
}

/* Mobile menu links */
.mobile-menu__link {
  transition: background 0.3s ease, transform 0.25s ease;
}
.mobile-menu__link:hover {
  transform: scale(1.08);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
