@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #000;
  color: #fffafa;
  min-width: 320px;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 58px;
  border-radius: 60px;
  background-color: #95ff00;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  line-height: normal;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  max-width: 250px;
}

.btn:hover {
  opacity: 0.95;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(149, 255, 0, 0.45);
}

.btn:active {
  transform: translateY(0) scale(1);
  box-shadow: 0 4px 12px rgba(149, 255, 0, 0.35);
}

.section-title {
  font-weight: 600;
  font-size: 60px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fffafa;
}

.header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 80px 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__logo:hover {
  transform: scale(1.04);
  opacity: 0.9;
}

.header__logo-img {
  transition: transform 0.6s ease;
}

.header__logo:hover .header__logo-img {
  transform: rotate(15deg);
}

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

.header__logo-text {
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

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

.header__nav-link {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  transition: color 0.3s ease, transform 0.3s ease;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #95ff00;
  transition: width 0.3s ease;
}

.header__nav-link:hover {
  color: #95ff00;
  transform: translateY(-2px);
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__burger {
  display: none;
  width: 20px;
  height: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__burger:hover {
  transform: scale(1.15);
  opacity: 0.85;
}

.hero {
  position: relative;
  padding: 0 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero__bg {
  position: absolute;
  top: 69px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 545px;
  overflow: hidden;
  z-index: 0;
}

.hero__bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 545px;
  background: linear-gradient(to bottom, #0c8d00, #032700);
}

.hero__bg-img1 {
  position: absolute;
  top: -218px;
  right: -142px;
  width: 833px;
  height: 833px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg-img1 img {
  width: 655px;
  height: 655px;
  object-fit: cover;
  transform: rotate(-70.84deg);
  animation: heroFloat 8s ease-in-out infinite;
}

.hero__bg-img2 {
  position: absolute;
  top: -23px;
  left: 50%;
  margin-left: -743px;
  width: 696px;
  height: 695px;
  opacity: 0.9;
}

.hero__bg-img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroFloat 10s ease-in-out infinite reverse;
}

.hero__bg-img3 {
  position: absolute;
  top: -57px;
  left: 50%;
  margin-left: -375px;
  width: 636px;
  height: 635px;
}

.hero__bg-img3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroFloat 12s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 499px;
  max-width: 1040px;
  margin: 0 auto;
}

.hero__title {
  font-weight: 600;
  font-size: 70px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fffafa;
  width: 408px;
  flex-shrink: 0;
  animation: fadeInLeft 0.8s ease-out;
}

.hero__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 606px;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fffafa;
}

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

.quick-play {
  position: relative;
  padding: 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.quick-play__ellipse1 {
  position: absolute;
  top: 96px;
  right: calc(-50vw + 50% - 60px);
  left: auto;
  width: 810px;
  height: 449px;
  pointer-events: none;
}

.quick-play__ellipse1 img {
  position: absolute;
  inset: -44.5% -24.67%;
  width: 149.34%;
  height: 189%;
}

.quick-play__ellipse2 {
  position: absolute;
  top: 303px;
  left: calc(-50vw + 50% - 60px);
  width: 810px;
  height: 449px;
  pointer-events: none;
}

.quick-play__ellipse2 img {
  position: absolute;
  inset: -44.5% -24.67%;
  width: 149.34%;
  height: 189%;
}

.quick-play__image {
  width: 800px;
  height: 240px;
  border-radius: 20px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.quick-play__image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(149, 255, 0, 0.35);
}

.quick-play__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fffafa;
  text-align: center;
  position: relative;
  z-index: 1;
}

.quick-play__text p + p {
  margin-top: 16px;
}

.quick-play .section-title {
  text-align: center;
  position: relative;
  z-index: 1;
}

.skills {
  padding: 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.skills__card {
  background-color: #0c8d00;
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.skills__title {
  text-align: center;
}

.skills__grid {
  display: flex;
  flex-direction: column;
  gap: 15.724px;
  width: 456px;
}

.skills__grid-row {
  display: flex;
  gap: 15.724px;
}

.skills__grid-item {
  display: block;
  width: 141.517px;
  height: 141.517px;
  border-radius: 15.724px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.skills__grid-item:hover {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 12px 28px rgba(149, 255, 0, 0.4);
}

.skills__grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.skills__grid-item:hover img {
  transform: scale(1.1);
}

.skills__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fffafa;
  text-align: center;
}

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

.direction {
  position: relative;
  overflow: hidden;
  padding: 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.direction__ellipse {
  position: absolute;
  top: 85.24px;
  left: 150px;
  width: 810px;
  height: 449px;
  pointer-events: none;
}

.direction__ellipse img {
  position: absolute;
  inset: -44.5% -24.67%;
  width: 149.34%;
  height: 189%;
}

.direction__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.direction__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fffafa;
}

.direction__cards {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.direction__card {
  flex: 1;
  background-color: #0c8d00;
  border-radius: 30px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  min-height: 225px;
  transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

.direction__card:hover {
  transform: translateY(-8px);
  background-color: #0ea500;
  box-shadow: 0 18px 36px rgba(12, 141, 0, 0.55);
}

.direction__card-icon {
  width: 60px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}

.direction__card:hover .direction__card-icon {
  transform: rotate(8deg) scale(1.1);
}

.direction__card-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}

.direction__card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.active-players {
  padding: 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

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

.active-players__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fffafa;
}

.active-players__text p + p {
  margin-top: 16px;
}

.active-players__image {
  width: 396px;
  height: 456px;
  border-radius: 20px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.active-players__image:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(149, 255, 0, 0.35);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer__ellipse {
  position: absolute;
  top: -21.76px;
  left: 928px;
  width: 449px;
  height: 449px;
  pointer-events: none;
}

.footer__ellipse img {
  position: absolute;
  inset: -44.5%;
  width: 189%;
  height: 189%;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
}

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

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

.footer__logo-text {
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  color: #fffefe;
  white-space: nowrap;
}

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

.footer__link {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: #fffefe;
  white-space: nowrap;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #95ff00;
  transition: width 0.3s ease;
}

.footer__link:hover {
  color: #95ff00;
  transform: translateY(-2px);
}

.footer__link:hover::after {
  width: 100%;
}

.footer__contacts {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.footer__contact {
  background-color: #0c8d00;
  padding: 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.footer__contact:hover {
  transform: translateY(-3px);
  background-color: #0ea500;
  box-shadow: 0 10px 24px rgba(12, 141, 0, 0.5);
}

.footer__socials {
  display: flex;
  gap: 11.745px;
  position: relative;
  z-index: 1;
}

.footer__social {
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer__social:hover {
  transform: translateY(-4px) rotate(-6deg);
  opacity: 0.9;
}

.footer__social img {
  width: 56px;
  height: 56px;
  transition: filter 0.3s ease;
}

.footer__social:hover img {
  filter: drop-shadow(0 6px 16px rgba(149, 255, 0, 0.5));
}

.footer__logo {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer__logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.footer__logo .footer__logo-img {
  transition: transform 0.6s ease;
}

.footer__logo:hover .footer__logo-img {
  transform: rotate(-15deg);
}

.footer__copy {
  font-size: 16px;
  font-weight: 400;
  color: #fffefe;
  position: relative;
  z-index: 1;
}

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

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

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.mobile-menu__link {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-menu__link:hover {
  color: #95ff00;
  transform: scale(1.05);
}

.mobile-menu__close {
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-menu__close:hover {
  transform: rotate(90deg) scale(1.1);
  color: #95ff00;
}

.catalog {
  padding: 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.catalog__card {
  background-color: #0c8d00;
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.catalog__title {
  text-align: center;
}

.catalog__grid {
  display: flex;
  flex-direction: column;
  gap: 15.724px;
  width: 456px;
}

.catalog__grid-row {
  display: flex;
  gap: 15.724px;
}

.catalog__grid-item {
  display: block;
  width: 141.517px;
  height: 141.517px;
  border-radius: 15.724px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.catalog__grid-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(149, 255, 0, 0.4);
}

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

.catalog__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fffafa;
  text-align: center;
}

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

.game-hero {
  padding: 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}

.game-hero__title {
  font-weight: 600;
  font-size: 60px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fffafa;
  width: 100%;
}

.game-hero__row {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  width: 100%;
}

.game-hero__image {
  width: 386px;
  height: 386px;
  border-radius: 30px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.game-hero__image:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(149, 255, 0, 0.35);
}

.game-hero__arrow {
  animation: arrowBounce 2s ease-in-out infinite;
}

.game-hero__play {
  margin-top: 10px;
  align-self: flex-start;
}

.game-hero__desc {
  flex: 1;
  display: flex;
  gap: 40px;
  align-items: flex-end;
}

.game-hero__text {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fffafa;
}

.game-hero__text p + p {
  margin-top: 10px;
}

.game-hero__arrow {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-hero__arrow img {
  width: 30px;
  transform: rotate(45deg);
  height: 16px;
}

.game-features {
  position: relative;
  overflow: hidden;
  padding: 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.game-features__ellipse {
  position: absolute;
  top: 85.24px;
  left: 150px;
  width: 810px;
  height: 449px;
  pointer-events: none;
}

.game-features__ellipse img {
  position: absolute;
  inset: -44.5% -24.67%;
  width: 149.34%;
  height: 189%;
}

.game-features__cards {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
  max-width: 1040px;
}

.game-features__card {
  flex: 1;
  background-color: #0c8d00;
  border-radius: 30px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

.game-features__card:hover {
  transform: translateY(-8px);
  background-color: #0ea500;
  box-shadow: 0 18px 36px rgba(12, 141, 0, 0.55);
}

.game-features__card-icon {
  width: 60px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}

.game-features__card:hover .game-features__card-icon {
  transform: rotate(8deg) scale(1.1);
}

.game-features__card-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}

.game-features__card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.policy {
  padding: 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}

.policy__title {
  font-weight: 600;
  font-size: 60px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fffafa;
  width: 100%;
}

.policy__card {
  background-color: #0c8d00;
  border-radius: 30px;
  padding: 20px;
  width: 100%;
}

.policy__card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fffafa;
}

.policy__card-text p + p {
  margin-top: 10px;
}

.policy__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fffafa;
  width: 100%;
}

.policy__text p + p {
  margin-top: 10px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 0);
  background-color: #2d8a23;
  border-radius: 30px;
  padding: 40px 60px;
  width: calc(100% - 40px);
  max-width: 720px;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.cookie-banner.active {
  display: flex;
  animation: cookieSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner__title {
  font-weight: 600;
  font-size: 60px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
}

.cookie-banner__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.cookie-banner__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 58px;
  border-radius: 60px;
  background-color: #95ff00;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.cookie-banner__btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(149, 255, 0, 0.5);
  opacity: 0.95;
}

.cookie-banner__btn:active {
  transform: translateY(0) scale(1);
}

.cookie-banner__btn--secondary {
  background-color: #5cb84e;
  color: #032700;
}

.cookie-banner__btn--secondary:hover {
  background-color: #6cc85e;
  box-shadow: 0 12px 30px rgba(92, 184, 78, 0.45);
}

@keyframes cookieSlideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 60px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.hero__bg-img1 img {
  animation: heroFloat1 9s ease-in-out infinite;
}

@keyframes heroFloat1 {
  0%, 100% {
    transform: rotate(-70.84deg) translateY(0);
  }
  50% {
    transform: rotate(-70.84deg) translateY(-14px);
  }
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.section-title {
  animation: fadeInUp 0.8s ease-out both;
}

.game-features__card,
.direction__card {
  animation: fadeInUp 0.8s ease-out both;
}

.skills__grid-item {
  animation: fadeInUp 0.6s ease-out both;
}

.skills__grid-row:nth-child(1) .skills__grid-item:nth-child(1) { animation-delay: 0.05s; }
.skills__grid-row:nth-child(1) .skills__grid-item:nth-child(2) { animation-delay: 0.1s; }
.skills__grid-row:nth-child(1) .skills__grid-item:nth-child(3) { animation-delay: 0.15s; }
.skills__grid-row:nth-child(2) .skills__grid-item:nth-child(1) { animation-delay: 0.2s; }
.skills__grid-row:nth-child(2) .skills__grid-item:nth-child(2) { animation-delay: 0.25s; }
.skills__grid-row:nth-child(2) .skills__grid-item:nth-child(3) { animation-delay: 0.3s; }

.direction__cards .direction__card:nth-child(1) { animation-delay: 0.05s; }
.direction__cards .direction__card:nth-child(2) { animation-delay: 0.15s; }
.direction__cards .direction__card:nth-child(3) { animation-delay: 0.25s; }
.direction__cards .direction__card:nth-child(4) { animation-delay: 0.35s; }

.game-features__cards .game-features__card:nth-child(1) { animation-delay: 0.05s; }
.game-features__cards .game-features__card:nth-child(2) { animation-delay: 0.15s; }
.game-features__cards .game-features__card:nth-child(3) { animation-delay: 0.25s; }

.policy__card,
.skills__card,
.catalog__card {
  animation: fadeInUp 0.8s ease-out both;
}

@media (max-width: 768px) {
  .header {
    padding: 14px 20px 0;
    max-width: 430px;
  }

  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 6px;
    background-color: rgba(149, 255, 0, 0.12);
    border-radius: 10px;
  }

  .header__burger img {
    width: 22px;
    height: 16px;
    object-fit: contain;
  }

  .hero {
    padding: 0 20px 40px;
    max-width: 430px;
  }

  .hero__bg {
    height: 378px;
  }

  .hero__bg-gradient {
    width: 100%;
    height: 378px;
  }

  .hero__bg-img1 {
    top: -40px;
    left: auto;
    right: -80px;
    width: 320px;
    height: 320px;
  }

  .hero__bg-img1 img {
    width: 280px;
    height: 280px;
  }

  .hero__bg-img2 {
    top: 20px;
    left: -90px;
    margin-left: 0;
    width: 300px;
    height: 300px;
  }

  .hero__bg-img3 {
    top: 0;
    left: 50%;
    margin-left: -150px;
    width: 300px;
    height: 300px;
  }

  .hero__content {
    flex-direction: column;
    gap: 20px;
    padding-top: 406px;
  }

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

  .hero__right {
    width: 100%;
  }

  .quick-play {
    padding: 40px 20px;
    max-width: 430px;
    gap: 20px;
  }

  .quick-play .section-title {
    font-size: 28px;
  }

  .quick-play__image {
    width: 100%;
    height: 240px;
  }

  .skills {
    padding: 40px 20px;
    max-width: 430px;
  }

  .skills__title {
    font-size: 28px;
  }

  .skills__grid {
    width: 350px;
    gap: 12.069px;
  }

  .skills__grid-row {
    gap: 12.069px;
  }

  .skills__grid-item {
    width: 108.621px;
    height: 108.621px;
    border-radius: 12.069px;
  }

  .direction {
    padding: 40px 20px;
    max-width: 430px;
  }

  .direction .section-title {
    font-size: 28px;
  }

  .direction__ellipse {
    top: 165px;
    left: 50%;
    transform: translateX(-50%);
    width: 523px;
    height: 290px;
  }

  .direction__ellipse img {
    inset: -68.9% -38.2%;
    width: 176.4%;
    height: 237.8%;
  }

  .direction__header {
    margin-bottom: 20px;
  }

  .direction__cards {
    flex-direction: column;
  }

  .direction__card {
    min-height: auto;
  }

  .active-players {
    padding: 40px 20px;
    max-width: 430px;
    flex-direction: column;
    gap: 20px;
  }

  .active-players__image {
    width: 100%;
    height: auto;
    aspect-ratio: 396 / 456;
    order: -1;
  }

  .active-players .section-title {
    font-size: 28px;
  }

  .footer {
    padding: 40px 20px;
    max-width: 430px;
    gap: 20px;
  }

  .footer__ellipse {
    top: 236px;
    left: 50%;
    transform: translateX(-50%);
    width: 318px;
    height: 318px;
  }

  .footer__ellipse img {
    inset: -62.83%;
    width: 225.66%;
    height: 225.66%;
  }

  .footer__top {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .footer__contact {
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
    text-align: center;
    white-space: normal;
  }

  .catalog {
    padding: 40px 20px;
    max-width: 430px;
  }

  .catalog__card {
    width: 390px;
  }

  .catalog__title {
    font-size: 28px;
  }

  .catalog__grid {
    width: 350px;
    gap: 12.069px;
  }

  .catalog__grid-row {
    gap: 12.069px;
  }

  .catalog__grid-item {
    width: 108.621px;
    height: 108.621px;
    border-radius: 12.069px;
  }

  .game-hero {
    padding: 40px 20px;
    max-width: 430px;
    gap: 20px;
  }

  .game-hero__title {
    font-size: 28px;
  }

  .game-hero__row {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .game-hero__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .game-features {
    padding: 40px 20px;
    max-width: 430px;
  }

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

  .policy {
    padding: 40px 20px;
    max-width: 430px;
    gap: 20px;
  }

  .policy__title {
    font-size: 28px;
  }

  .cookie-banner {
    bottom: 12px;
    padding: 24px 20px;
    gap: 20px;
    width: calc(100% - 20px);
  }

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

  .cookie-banner__text {
    font-size: 14px;
  }

  .cookie-banner__buttons {
    gap: 12px;
    width: 100%;
    flex-wrap: nowrap;
  }

  .cookie-banner__btn {
    flex: 1;
    padding: 16px 10px;
    font-size: 13px;
  }

  .header__nav-link::after,
  .footer__link::after {
    display: none;
  }

  .game-hero__play {
    align-self: stretch;
  }
}

html,body{
  overflow-x: hidden;
}