/*@font-face {
   font-family: 'arco_cyrillicregular';
   src: url('./fonts/rco-cyrillic-webfont.woff2') format('woff2'),
        url('./fonts/arco-cyrillic-webfont.woff') format('woff'),
        url('./fonts/arco-cyrillic.otf') format('opentype'), 
        url('./fonts/arco-cyrillic.ttf') format('truetype');
   font-weight: normal;
   font-style: normal;
}*/

* {
  font-family: "Luckiest Guy", cursive !important;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

._scale_hover {
  transition: all 0.4s ease 0s;
  cursor: pointer;
}

._scale_hover:hover {
  transform: scale(1.1);
}

.networks {
  display: flex;
  align-items: end;
  gap: 24px;
}

.networks a {
  display: block;
}

._container {
  max-width: 1600px;
  padding: 0 20px;
  margin: 0 auto;
}

.wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.bg__wrap {
  position: relative;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-copy] {
  cursor: pointer;
}

.copied_modal {
  position: fixed;
  top: 50%;
  color: #000;
  left: 50%;
  z-index: 100;
  background: #fff;
  font-family: "Knewave", system-ui;
  padding: 10px 30px;
  white-space: nowrap;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease 0s;
}

.copied_modal._show {
  opacity: 1;
  visibility: visible;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 160px;
}

.ca {
  font-family: "Luckiest Guy", cursive;
  font-size: 48px;
  line-height: 1;

  /* градиентная заливка текста */
  background: linear-gradient(139deg, #fffe00 15%, #f0a911 70%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.ca {
  word-wrap: break-word;
  word-break: break-all;
  max-width: 100%;
  margin-bottom: 30px;
}

.logo__wrapper {
  position: relative;
}

.light {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.higher {
  position: relative;
  z-index: 2;
}

.logo {
  position: relative;
  z-index: 2;
}

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

.border {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

iframe {
  width: 100%;
  max-width: 1540px;
  padding: 50px;
  height: 810px;
}

.free {
  margin-bottom: 50px;
}

.dogs__wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
}

.title {
  margin-top: 50px;
}

@media (max-width: 1600px) {
  .dog {
    width: 15vw;
  }
  .dogs__wrapper {
    gap: 60px;
  }
}

@media (max-width: 1400px) {
  .title {
    width: 40vw;
  }
  .logo {
    width: 45vw;
  }
  .border {
    display: none;
  }
  iframe {
    padding: 0;
  }
}

@media (max-width: 900px) {
  .dogs__wrapper {
    gap: 20px;
  }
  iframe {
    height: 600px;
  }
  .ca {
    font-size: 30px;
  }
  .free {
    width: 144px;
  }
  .x {
    width: 160px;
  }
  .screen,
  .pump {
    width: 50px;
  }
  .light {
    width: 120vw;
  }
}

@media (max-width: 600px) {
  .dog {
    width: 150px;
  }
  .dogs__wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
  .title {
    min-width: 250px;
  }
  .content {
    padding-bottom: 100px;
  }
  .free {
    width: 110px;
  }
  .ca {
    font-size: 20px;
  }
  .logo {
    min-width: 350px;
  }
}

@media (max-width: 400px) {
  .logo {
    min-width: 300px;
  }
  .networks {
    gap: 16px;
  }
}

[data-anim-on-scroll] {
  transition: all 0.4s ease 0s;
  opacity: 0;
}

[data-anim-on-scroll]._animate {
  opacity: 1;
}

._right_anim_tr {
  transform: translateX(200%);
}

._left_anim_tr {
  transform: translateX(-200%);
}

._right_anim_tr._animate,
._left_anim_tr._animate {
  transform: translateX(0%);
}

._scale_anim {
  transform: scale(0);
}

._scale_anim._animate {
  transform: scale(1);
}

/* 1) Определяем keyframes */
@keyframes pulseScale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes pulseTranslate {
  0%,
  100% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(0) scale(1.15);
  }
}

/* 2) Накладываем анимацию на элементы после появления (_animate уже добавляет opacity:1 и сбрасывает исходный transform ) */
.dog-1._animate {
  /* это был translateX, объединяем в pulseTranslate */
  animation: pulseTranslate 2.2s infinite ease-in-out;
}

.dog-2._animate {
  /* scale-элемент */
  animation: pulseScale 1.8s infinite ease-in-out 0.2s;
}

.dog-3._animate {
  animation: pulseScale 2.5s infinite ease-in-out 0.4s;
}

.dog-4._animate {
  animation: pulseTranslate 1.6s infinite ease-in-out 0.6s;
}

._bottom_anim_tr {
  transform: translateY(200%);
}

._top_anim_tr {
  transform: translateY(-200%);
}

._top_anim_tr._animate,
._bottom_anim_tr._animate {
  transform: translateY(0%);
}

.anim {
  animation: anim 3s ease-in-out infinite;
}

@keyframes anim {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }
}

/*.loop-images .image {
  position: absolute;
  z-index: 1;
  bottom: -100%;
  animation: moveUp 6s linear infinite;
}

.loop-images .right .image {
  right: 0;
}

.loop-images .right .image-4 {
  right: -15%;
  left: auto;
}

@keyframes moveUp {
  0% {
    bottom: -100%;
  }

  100% {
    bottom: 100%;
  }
}

.loop-images .image-2 {
  animation-delay: 2s;
  animation: moveUp 7s linear infinite;
}

.loop-images .image-3 {
  animation-delay: 3s;
  animation: moveUp 9s linear infinite;
}

.loop-images .image-4 {
  animation-delay: 6s;
  animation: moveUp 12s linear infinite;
}

.loop-images .right .image-1 {
  animation-delay: 0s;
  animation: moveUp 7s linear infinite;
}

.loop-images .right .image-2 {
  animation-delay: 4s;
  animation: moveUp 9s linear infinite;
}

.loop-images .right .image-3 {
  animation-delay: 7s;
  animation: moveUp 12s linear infinite;
}

.loop-images .right .image-4 {
  animation-delay: 10s;
  animation: moveUp 8s linear infinite;
}

.card {
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
   animation: none;
   transform: scale(1.1);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card-left {
   transform: translateX(-200%);
}

.card-right {
   transform: translateX(200%);
}

.card._animate {
   transform: translateX(0%);
}

.card:hover, .uniq:hover {
   transform: translateX(0%) scale(1.05);
   box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.uniq {
   transform: scale(0);
   opacity: 0;
   visibility: hidden; 
   transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.uniq:hover {
   transform: scale(1.05);
   box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.uniq._animate {
   transform: scale(1);
   opacity: 1; 
   visibility: visible;
}*/
