/* Стили для подложки */

* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.overlay {
  /* Скрываем подложку  */
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20;
  transition: 0.3s all;
}

body.blur-all>* {
  /* Все элементы непосредственно внутри body.blur-all
     (1-го уровня вложенности, но не глубже) получат этот стиль */
  filter: blur(10px);
}

body.blur-all>.no-blur {
  /* Кроме элемента .no-blur — класс заранее будет добавлен на кнопку */
  filter: blur(0);
  position: absolute;
  z-index: 9999;
}

/* Стили для модальных окон */

.modal-google {
  display: none;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.5s;
  padding: 10px 20px 0 20px;
}

.modal-google1 {
  display: none;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.5s;
  padding: 10px 20px 0 20px;
}

@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 50%;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 50%;
    opacity: 1;
  }
}

.bell {
  animation: ring 1s infinite;
  transform-origin: top center;
  animation-delay: 0.5s;
}

@keyframes ring {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-10deg);
  }

  75% {
    transform: rotate(10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.modal-google img {
  width: 154px;
  height: 60px;
}

.modal-google svg {
  position: relative;
}

.modal-google p {
  text-align: center;
  font-size: 10px;
  text-transform: uppercase;
}

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

.none {
  display: none;
}

.show {
  display: block;
}

.popap img {
  margin: 8px auto 0 auto;
}

.popap-two {
  position: absolute;
  content: "";
  background: inherit;
  top: 50%;
  color: #fff;
  font-feature-settings: "liga" off, "clig" off;
  font-family: var(--Font-Font-Family, Inter);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.06px;
  display: flex;
  padding: 12px;
  flex-direction: column;
  align-items: flex-start;
  left: 50%;
  transform: translate(142%, 28%);

  border-radius: 15px;
}

/* Стили для кнопки закрытия */
.modal__cross {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 20px;
  right: 20px;
  fill: #444;
  cursor: pointer;
}

.activTab {
  color: black !important;
  background-color: #ffffff !important;
}

.loader-with-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: opacity 1s ease;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.loader {
  position: relative;
  z-index: 2;
  text-align: center;
}

.loader .letters span {
  display: inline-block;
  font-size: 40px;
  color: white;
  font-weight: bold;
  opacity: 0;
  transform: translateY(20px);
  animation: letterAppear 0.5s forwards;
}

@keyframes letterAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader.hide {
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.8s ease;
}

.loader-with-video.hide {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease 0.3s;
}

.loader-with-video.hide .video-background video {
  opacity: 0;
  transform: scale(1.1);
  filter: blur(20px) brightness(0.3);
}

.popap {
  position: absolute;
  content: "";
  top: 36%;
  left: 46.4%;
  transform: translate(65%, 31%);
}

.popap1 {
  position: absolute;
  content: "";
  top: 45%;
  left: 60.18%;
  transform: translate(65%, 31%);
}

.modal-overlay {
  display: none;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  padding: 112px;
  width: 280px;
  font-size: 16px;
  height: 332px !important;
  transform: translate(-10%, -120%);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

@media (max-width: 1300px) {
  .modal-overlay {
    transform: translate(-53%, -175%);
  }
}

.why {
  padding-top: 0;
  margin-top: 0;
}

.modal-overlay img {
  width: 30px;
  margin: 0 auto;
  height: 30px;
}

.help-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
}

.help-header div {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.help-header div p {
  color: #fff;
  font-family: "SF Pro Text";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  margin-left: 16px;
  line-height: 31.2px;
}

.help-main__left h2 {
  color: #fff;
  max-width: 633px;
  white-space: nowrap;
  width: 102%;
  font-family: "SF Pro Display";
  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: 66px;
}

.help-main__left p {
  color: #fff;
  font-family: "SF Pro Text";
  font-size: 24px;
  font-style: normal;
  margin-top: 31.38px;
  width: 512px;
  font-weight: 500;
  line-height: 31.2px;
}

.help-main {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  margin-top: 45px !important;
  padding-left: 25px;
  align-items: center;
  justify-content: space-between;
}


@keyframes pulse1 {
  0% {
    width: 356px;
    height: 99px;
  }

  50% {
    width: 370px;
    height: 112px;
  }

  100% {
    width: 356px;
    height: 99px;
  }
}

.help-main__ridth div a {
  z-index: 1;
  display: flex;
  box-shadow: 0 0 23.063px 0 #0086B3;
  justify-content: center;
  align-items: center;
  width: 337px;
  color: rgb(255, 255, 255);
  font-family: "SF Pro Text";
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  position: relative;
  gap: 10px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(91deg, rgba(51, 204, 255, 0.32) 19.74%, rgba(51, 204, 255, 0.59) 96.72%);


  padding: 15px 88px !important;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Градиентная рамка с анимацией */
.help-main__ridth div a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 40px;
  padding: 2px;
  /* Толщина рамки */
  background: linear-gradient(45deg,
      #33CCFF,
      #0086B3,
      #0066CC,
      #33CCFF,
      #0066CC);
  background-size: 300% 300%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  animation: borderFlow 4s linear infinite;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

/* Эффект свечения */
.help-main__ridth div a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 40px;
  background: linear-gradient(135deg,
      rgba(51, 204, 255, 0.2),
      rgba(0, 102, 204, 0.4),
      rgba(0, 134, 179, 0.2));
  z-index: -2;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

/* Внутренний блеск */
.help-main__ridth div a {
  box-shadow:
    0 4px 20px rgba(0, 102, 204, 0.4),
    0 0 40px rgba(51, 204, 255, 0.2) inset,
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

/* Анимация градиента рамки */
@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Эффект наведения */
.help-main__ridth div a:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px rgba(0, 102, 204, 0.6),
    0 0 60px rgba(51, 204, 255, 0.3) inset;
}

.help-main__ridth div a:hover::before {
  opacity: 1;
  animation-duration: 2s;
}

.help-main__ridth div a:hover::after {
  opacity: 0.8;
}

/* Активное состояние */
.help-main__ridth div a:active {
  transform: translateY(0);
  transition: transform 0.1s ease;
}

/* Текст с эффектом */
.help-main__ridth div a span {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Альтернативный вариант - стеклянный эффект */
.help-main__ridth div a.glass {
  background: linear-gradient(135deg,
      rgba(0, 102, 204, 0.8),
      rgba(0, 0, 255, 0.6));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Иконка в кнопке (если есть) */
.help-main__ridth div a svg,
.help-main__ridth div a i {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.help-main__ridth div a:hover svg,
.help-main__ridth div a:hover i {
  transform: translateX(5px);
}

/* Пульсирующий эффект (опционально) */
@keyframes pulseButton {

  0%,
  100% {
    box-shadow:
      0 4px 20px rgba(0, 102, 204, 0.4),
      0 0 40px rgba(51, 204, 255, 0.2) inset;
  }

  50% {
    box-shadow:
      0 4px 30px rgba(51, 204, 255, 0.6),
      0 0 50px rgba(51, 204, 255, 0.4) inset;
  }
}

.help-main__ridth div a.pulse {
  animation: pulseButton 3s ease-in-out infinite;
}

/* Вариант с более тонкой рамкой */
.help-main__ridth div a.thin-border::before {
  padding: 1px;
}

/* Вариант с двойной рамкой */
.help-main__ridth div a.double-border::after {
  padding: 4px;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderFlow 6s linear infinite reverse;
}

.tt {
  opacity: 0.4;
  position: relative;
  left: 200px;
  top: -63px;
  width: 776px;
  height: 269px;
  border-radius: 1312.782px;
  opacity: 0.4;
  transform: rotate(182deg);
  background: linear-gradient(45deg, #F03 33.23%, #00B7FF 73.31%);
  filter: blur(130px);
}

.help-main__ridth #registerBtn {
  left: 444px;
  top: -199px;
}

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

.footer-row1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  border-top: 1px solid #75758e;
  border-bottom: 1px solid #75758e;
}

.footer-row1__logo {
  display: flex;
  justify-content: space-between;
}

.footer-row1__logo p {
  color: #fff;
  font-family: "SF Pro Text";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  margin-left: 20px;
  line-height: 26px;
  width: 227px;
}

.footer-row1__apps #google-play {
  width: 210px;
}

.footer-row1__apps #app-store {
  margin-left: 40px;
  width: 210px;
}

.footer-row1__apps a {
  border-radius: 10px;
  border: 1px solid #fff;
}

.footer-row1__social {
  width: 500px;
}

.footer-row1__social div {
  transition: 0.5s;
}

.footer-row1__social .tg-ikon:hover {
  box-shadow: 5px 5px 14px rgb(0, 225, 255);
}

.footer-row1__social .vk-ikon:hover {
  box-shadow: 5px 5px 14px rgb(29, 44, 255);
}

.footer-row1__social .od-ikon:hover {
  box-shadow: 5px 5px 14px rgb(255, 167, 36);
}

.footer-row1__social .tik-ikon:hover {
  box-shadow: 5px 5px 14px rgb(254 0 209);
}

.footer-row1__social .you-ikon:hover {
  box-shadow: 5px 5px 14px rgb(255, 37, 37);
}

.footer-row1__social .email-ikon:hover {
  box-shadow: 5px 5px 14px rgb(106, 255, 37);
}

.footer-row1 .footer-row1__social div:first-child {
  margin-left: 0;
}

.footer-row1 .footer-row1__social div {
  display: flex;
  width: 50px;
  height: 50px;
  min-height: var(--height-50, 50px);
  padding: 10px;
  margin-left: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 36px;
  background: #28293d;
}

.footer-row2 {
  align-items: baseline;
  margin-bottom: 100px;
}

.footer-row2__item {
  flex-direction: column;
  align-items: start;
}

.footer-row2 .footer-row2__item p {
  color: white;
  font-family: "SF Pro Display";
  font-size: 18px !important;
  font-style: normal;
  align-self: stretch;
  font-weight: 800 !important;
  text-decoration: underline;
  line-height: 30px;
  margin-top: 30px !important;
}

.footer-row2 .footer-row2__item button {
  color: #fff !important;

  /* Desktop/H4 */
  font-family: "SF Pro Display";
  font-size: 20px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 150% */
}

.footer-row3 {
  border-top: 1px solid #75758e;
}

.footer-row3 * {
  font-family: "SF Pro Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #75758e;
}

.footer-row3 a {
  text-decoration: underline;
}

/* Стили для HTML5 видео элемента */
.html5-video {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #000;
  display: block;
  width: 100%;
  height: 800px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.html5-video:focus {
  outline: 1px solid #036;
  outline-offset: 3px;
}

.html5-video:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  transform: scale(1.005);
}

/* Плейсхолдер до загрузки видео */
.html5-video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #2c3e50, #4a6491);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  border-radius: 12px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.html5-video[poster]::before {
  display: none;
}

/* Стили для постерного изображения */
.html5-video[poster] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Кастомные элементы управления видео */
.html5-video::-webkit-media-controls-panel {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 15px;
  border-radius: 0 0 12px 12px;
}

.html5-video::-webkit-media-controls-play-button {
  background-color: #00B7FF;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.html5-video::-webkit-media-controls-play-button:hover {
  background-color: #FF0033;
}

.html5-video::-webkit-media-controls-current-time-display {
  margin-left: 20px;
}

.html5-video::-webkit-media-controls-current-time-display,
.html5-video::-webkit-media-controls-time-remaining-display {
  color: white;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* .html5-video::-webkit-media-controls-timeline {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  height: 0px;
} */

/* .html5-video::-webkit-media-controls-timeline:hover {
  height: 8px;
} */

.html5-video::-webkit-media-controls-volume-slider {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  height: 6px;
}

.html5-video::-webkit-media-controls-mute-button {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

.html5-video::-webkit-media-controls-fullscreen-button {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

/* Прогресс-бар видео */
/* .html5-video::-webkit-media-controls-timeline::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: #667eea;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(102, 126, 234, 0.8);
} */

/* Стили для состояния загрузки */
.html5-video.loading {
  filter: brightness(0.8);
  position: relative;
}

.html5-video.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Стили для ошибки загрузки видео */
.html5-video.error {
  position: relative;
}

.html5-video.error::after {
  content: '⚠️ Не удалось загрузить видео';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background: rgba(231, 76, 60, 0.9);
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  max-width: 80%;
}

/* Стили для полноэкранного режима */
.html5-video:fullscreen {
  border-radius: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.html5-video:fullscreen .video-wrapper {
  max-width: 100%;
  padding: 0;
  border-radius: 0;
}

/* Стили для кастомных контролов (если захотите сделать свои) */
.custom-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.html5-video:hover .custom-video-controls {
  opacity: 1;
}

.custom-video-controls button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.custom-video-controls button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.custom-video-controls .progress-bar {
  flex-grow: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}

.custom-video-controls .progress-bar .progress {
  height: 100%;
  background: linear-gradient(to right, #667eea, #764ba2);
  width: 0%;
  transition: width 0.1s linear;
}

/* Стили для качеств видео (если есть выбор) */
.video-quality-selector {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

.video-quality-selector select {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
}

/* Стили для субтитров (если есть) */
.html5-video::cue {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 1.1rem;
  padding: 5px 10px;
  border-radius: 4px;
}

/* Стили для миниатюр на таймлайне */
/* .html5-video::-webkit-media-controls-timeline::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 120px;
  height: 70px;
  background: #333;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
} */

/* .html5-video::-webkit-media-controls-timeline:hover::before {
  opacity: 1;
} */

/* Адаптивность видео */
@media (max-width: 768px) {
  .video-wrapper {
    padding: 10px;
    border-radius: 8px;
  }

  .html5-video {
    border-radius: 8px;
  }

  .html5-video::-webkit-media-controls-panel {
    padding: 10px;
  }

  .html5-video::-webkit-media-controls-play-button {
    width: 35px;
    height: 35px;
  }

  .custom-video-controls {
    padding: 15px;
  }

  .custom-video-controls button {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .video-wrapper {
    padding: 5px;
  }

  .html5-video {
    border-radius: 6px;
  }

  .html5-video::-webkit-media-controls-panel {
    padding: 5px;
  }

  .custom-video-controls {
    padding: 10px;
    flex-wrap: wrap;
  }

  .custom-video-controls .progress-bar {
    order: -1;
    width: 100%;
    margin-bottom: 10px;
  }
}

/* Стили для различных состояний воспроизведения */
.html5-video.playing {
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.html5-video.paused {
  filter: brightness(0.9);
}

.html5-video.ended {
  filter: brightness(0.8);
}

/* Стили для кнопки воспроизведения по центру */
.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(102, 126, 234, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 5;
}

.video-play-overlay:hover {
  background: rgba(118, 75, 162, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.html5-video:hover .video-play-overlay {
  opacity: 1;
}

.video-play-overlay::after {
  content: '▶';
  color: white;
  font-size: 2rem;
  margin-left: 5px;
}

.video-play-overlay.playing::after {
  content: '❚❚';
  margin-left: 0;
}

/* Стили для звуковой волны (визуализация звука) */
.video-audio-wave {
  position: absolute;
  bottom: 60px;
  right: 20px;
  width: 60px;
  height: 30px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.html5-video:hover .video-audio-wave {
  opacity: 1;
}

.video-audio-wave span {
  width: 4px;
  background: linear-gradient(to top, #667eea, #764ba2);
  border-radius: 2px;
  animation: audio-wave 1.5s ease-in-out infinite;
}

.video-audio-wave span:nth-child(2) {
  animation-delay: 0.2s;
}

.video-audio-wave span:nth-child(3) {
  animation-delay: 0.4s;
}

.video-audio-wave span:nth-child(4) {
  animation-delay: 0.6s;
}

.video-audio-wave span:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes audio-wave {

  0%,
  100% {
    height: 5px;
  }

  50% {
    height: 25px;
  }
}

/* Эффект для кнопки полноэкранного режима */
.fullscreen-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.html5-video:fullscreen .fullscreen-effect {
  opacity: 1;
}

.footer-row3__item1 a {
  margin-left: 5px;
}

.footer-row3__item1 {
  margin-top: 15px;
}

.footer-row3__item3 {
  margin-top: 15px;
}

.footer-row3__item2 {
  margin-top: 10px;
}

.footer-row3__item2 a {
  margin-left: 10px;
}

.footer-row3__item3 {
  max-width: 1295px;
  width: 100%;
  height: 70px;
  line-height: 24px;
}

.footer-row3__item3 a {
  color: #75758e;
  font-family: "SF Pro Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.help {
  display: flex !important;
  flex-direction: column;
  padding-top: 62px 0 0 0 !important;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.map {
  background-image: url('../image/jpg/NewMap.jpg');
  height: 365px;
  background-size: cover;
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
  padding: 0px;
}

.h2-title {
  max-width: 451px;
  width: 100%;
}

.mb-73 {
  margin-bottom: 73px;
}

/* .map .global__item {
  display: flex;
  justify-content: end;
  width: 88%;
} */

.help-button {
  max-width: 1440px;
  /* padding: 0 60px !important; */
  height: 725px;
  /* padding-bottom: 192px !important; */
}

.global__text img {
  width: 288px;
}

.active-footer {
  height: 100%;
}

/* Базовые стили для десктопа */
.footer-row2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-row2__item {
  flex-direction: column;
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

/* Стили для аккордеона */
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 0;
}

.accordion-toggle {
  color: white;
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.accordion-content {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  padding: 0 !important;
  overflow: hidden;
}

/* Скрываем иконку аккордеона на десктопе */
@media (min-width: 769px) {
  .accordion-toggle {
    display: none;
  }

  .accordion-content {
    display: flex !important;
    height: auto !important;
  }
}

/* Мобильные стили */
@media (max-width: 768px) {
  .footer-row2__item {
    width: 100%;
    margin: 0;
    /* border-bottom: 1px solid #eee; */
  }

  .footer-row2__item:last-child {
    border-bottom: none;
  }

  .accordion-content {
    display: none;
    height: 0;
    padding: 0 15px;
    transition: all 0.3s ease;
  }

  .accordion-content.active {
    display: flex;
    height: auto;
    padding: 15px;
    animation: fadeIn 0.3s ease;
  }

  .accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
  }
}

/* Анимация */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Опциональные стили для кнопок и ссылок внутри аккордеона */
.accordion-content button,
.accordion-content a {
  text-align: left;
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.accordion-content button:hover,
.accordion-content a:hover {
  opacity: 0.7;
}

.help-button .help-left h2 {
  color: #fff;
  font-family: "SF Pro Display";
  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: 66px;
  /* 120% */
}

.help-button .help-left p {
  color: #fff;
  font-family: "SF Pro Text";
  font-size: 24px;
  font-style: normal;
  margin-top: 45px;
  font-weight: 500;
  line-height: 31.2px;
  /* 130% */
}

.help-button .help-left {
  max-width: 650px;
  position: relative;
  width: 100%;
}

.help-ridth img {
  border-radius: 160px;
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-touch-callout: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-user-drag: none !important;
  user-drag: none !important;
  touch-action: none !important;
}

.help-ridth__button {
  width: 188px;
  border-radius: 50%;
  color: white;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  height: 188px;
  border-radius: 50%;
  background-image: linear-gradient(91deg, rgba(255, 0, 51, 0.32) 19.74%, rgba(255, 0, 51, 0.59) 96.72%);
  border: 6px solid #F03;
  box-shadow: 0 0 164.1px #F03;
  backdrop-filter: blur(3.5809524059295654px);
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-touch-callout: none !important;
  -webkit-tap-highlight-color: transparent !important;
  touch-action: manipulation !important;
}

.help-ridth__button:hover {
  background-image: linear-gradient(91deg, rgba(255, 0, 51, 0.5) 19.74%, rgba(255, 0, 51, 0.8) 96.72%);
  box-shadow:
    0 0 200px #F03,
    0 0 30px rgba(255, 0, 51, 0.6);
  transform: scale(1.02);
  border-color: #FF3366;
}

.help-ridth__button:active {
  transform: scale(0.98);
}

/* Стили для изображения-фона */
.help-ridth__animated img {
  position: absolute;
  width: 100%;
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-touch-callout: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-user-drag: none !important;
  user-drag: none !important;
  touch-action: none !important;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}



/* Стили для расходящихся кругов */
.help-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid transparent;
  animation: help-ripple-animation 3s linear infinite;
  pointer-events: none;
}

/* Создаем 6 колец с разными задержками */
.help-ripple:nth-child(1) {
  width: 175.222px;
  height: 175.222px;
  border-color: rgba(255, 0, 51, 0.6);
  animation-delay: 0s;
}

.help-ripple:nth-child(2) {
  width: 175.222px;
  height: 175.222px;
  border-color: rgba(255, 0, 51, 0.5);
  animation-delay: 0.5s;
}

.help-ripple:nth-child(3) {
  width: 175.222px;
  height: 175.222px;
  border-color: rgba(255, 0, 51, 0.4);
  animation-delay: 1s;
}

.help-ripple:nth-child(4) {
  width: 175.222px;
  height: 175.222px;
  border-color: rgba(255, 0, 51, 0.3);
  animation-delay: 1.5s;
}

.help-ripple:nth-child(5) {
  width: 175.222px;
  height: 175.222px;
  border-color: rgba(255, 0, 51, 0.2);
  animation-delay: 2s;
}

.help-ripple:nth-child(6) {
  width: 175.222px;
  height: 175.222px;
  border-color: rgba(255, 0, 51, 0.1);
  animation-delay: 2.5s;
}

/* Анимация расхождения и затухания */
@keyframes help-ripple-animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
    border-width: 2px;
  }

  50% {
    opacity: 0.4;
    border-width: 1px;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
    border-width: 0;
  }
}

/* Дополнительный эффект свечения вокруг кнопки */
.help-glow {
  position: absolute;
  top: 531px;
  left: 83px;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center,
      rgba(255, 0, 51, 0.2) 0%,
      transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  z-index: 0;
  animation: help-glow-pulse 3s ease-in-out infinite;
}

@keyframes help-glow-pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.dn {
  display: none;
}

/* Контролы для управления анимацией */
.help-controls {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px;
  border-radius: 10px;
  z-index: 1000;
}

.help-controls h3 {
  margin: 0 0 10px 0;
  font-size: 14px;
}

.help-controls button {
  background: #ff0033;
  color: white;
  border: none;
  padding: 5px 10px;
  margin: 2px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
}

.help-controls button:hover {
  background: #ff3366;
}

/* Сообщение при клике */
.help-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  display: none;
  z-index: 1000;
  animation: message-fade 3s ease-out;
  border: 2px solid #ff0033;
}

@keyframes message-fade {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  80% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.help-ridth__animated {
  position: relative;
  left: 130px;
  top: -30px;
}


/* Адаптивность */
@media (max-width: 768px) {
  .help-ridth__button {
    width: 224px;
    border: 2px solid red;
    height: 57px;
    border-radius: 56px;
  }

  .help-ripple:nth-child(1),
  .help-ripple:nth-child(2),
  .help-ripple:nth-child(3),
  .help-ripple:nth-child(4),
  .help-ripple:nth-child(5),
  .help-ripple:nth-child(6) {
    width: 130px;
    height: 130px;
  }
}

/* Стили для аккордеона на мобильных */
@media (max-width: 900px) {
  .footer-row2 {
    flex-direction: column;
  }

  .footer-row2__item {
    flex-direction: column;
  }

  .footer-row2__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    user-select: none;
  }

  .footer-row2__title {
    font-weight: bold;
    text-decoration: none;
    color: inherit;
  }

  .footer-row2__toggle {
    font-size: 20px;
    transition: transform 0.3s ease;
  }

  .footer-row2__content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
  }

  .footer-row2__content a {
    padding: 5px 0;
    text-decoration: none;
    color: inherit;
  }

  /* Активный элемент аккордеона */
  .footer-row2__item.active .footer-row2__content {
    max-height: 500px;
    /* Достаточно большое значение */
    opacity: 1;
    padding-bottom: 15px;
  }

  .footer-row2__item.active .footer-row2__toggle {
    transform: rotate(45deg);
    /* Меняем + на × */
  }
}

/* Стили для десктопа (шире 900px) */
@media (max-width: 901px) {
  .footer-row2__header {
    display: none;
  }

  .footer-row2__content {
    display: flex !important;
    flex-direction: column;
    opacity: 1 !important;
    max-height: none !important;
  }

  .footer-row2__item a {
    margin-top: 5px !important;
    font-size: 16px !important;
    line-height: 23px !important;
  }

  .footer-row3 p {
    margin-top: 5px !important;
  }

  .footer-row3__item2 a {
    margin-left: 5px;
  }

  .global__opicanie p {
    font-size: 18px !important;
  }
}

@media (max-width: 1600px) {
  .map {
    height: 416px;
  }
}

@media (max-width: 1400px) {
  .map {
    background-image: url('../image/jpg/NewMap.jpg');
    height: 316px;
    background-size: cover;
    background-position-x: -81px;
  }
}

@media (max-width: 1200px) {
  .map {
    background-size: inherit !important;
    height: 256px;
  }
}

@media (max-width: 1000px) {
  .footer-row2 {
    flex-direction: row;
  }

  header {
    max-width: 1000px;
    width: 80%;
    margin: 0;
  }

  header .header__container {
    width: 100%;
    margin: 0;
  }

  .global-btn a {
    width: 146px;
    height: 146px;
  }

  .tt {
    display: none;
  }

  .missia__content {
    display: flex !important;
    flex-direction: row !important;
    position: relative !important;
  }



  .why__title {
    width: 100%;
  }

  .footer-row3__item1 a {
    margin-left: 6px;
  }

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

  .help-animation-container {
    top: 572px;
    left: 68px;
  }

  .faq {
    margin: 50px 0 29px 0 !important;
  }

  .site-footer {
    margin-top: 50px;
  }

  .help-main {
    padding: 0 30px;
  }

  .footer-row1 {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .map {
    background-position-y: top !important;
  }

  .help {
    padding-bottom: 81px;
  }

  .help-main__ridth #registerBtn {
    top: 0;
    left: 0;
  }

  .missia {
    margin: 0 !important;
  }

  .help-header {
    padding: 0 30px;
  }

  .global__item span {
    font-size: 14px;
  }


  .footer-row2 {
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .footer-row1__social {
    margin: 30px auto 0 auto;
  }

  #why__tab__two {
    margin-top: 5px;
  }

  .footer-row1 {
    display: flex;
    justify-content: center;
    border: none;
    margin-top: 50px;
  }

  /* .map .global__item {
    transform: translate(127%, 8%);
  } */
}

.faq__title h2 {
  text-align: center;
}

@media (max-width: 900px) {
  .help-main__left h2 {
    width: 100% !important;
    text-align: center !important;
    font-size: 28px !important;
    line-height: 33px !important;
  }

  .help-main__left p {
    font-size: 14px;
    width: 100%;
    text-align: center;
    line-height: 22.2px;
  }

  .help-main__ridth #registerBtn {
    font-size: 16px;
    height: 49px;
    width: 257px;
  }

  .global-btn a span {
    font-size: 12px;
  }

  .global-btn a svg {
    width: 25px;
  }

  .global-btn a {
    width: 130px !important;
    height: 130px !important;
  }

  .help-header__item p {
    font-size: 14px !important;
    margin-left: 5px;
  }

  .help-left h2 {
    font-size: 28px !important;
  }

  .why__top h2 {
    font-size: 28px !important;
  }

  .faq__title h2 {
    font-size: 28px !important;
    text-align: center !important;
  }

  .help-left p {
    font-size: 18px !important;
    margin-top: 5px !important;
    line-height: 22.2px !important;
  }
}

@media (max-width: 870px) {
  .footer-row1 {
    justify-content: center;
  }

  .footer-row2 {
    margin-top: 180px;
  }

  .help-main__ridth #registerBtn {
    left: 10px;
  }
}

/* .map .global__item {
  transform: translate(40%, -30%);
} */

@media (max-width: 770px) {
  .why__top h2 {
    text-align: center;
  }

  .why__desp p {
    font-size: 18px !important;
    margin-top: 5px !important;
    line-height: 22.2px !important;
  }

  .fab {
    width: 44px;
    height: 44px;
    font-size: 20px;
    top: 12px;
    left: 12px;
  }

  .m-zoomstack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
  }

  .m-zoomstack button {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    font-size: 22px;
    font-weight: 700;
  }

  .m-chips {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 120px;
    z-index: 1000;
  }

  .m-chips button {
    flex: 1;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    font-weight: 700;
  }

  .m-search {
    display: flex;
    gap: 10px;
    background: #fff;
    border-radius: 12px;
    padding: 2px 4px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 65px;
    z-index: 1000;
  }

  .m-search input {
    flex: 1;
    border: 0;
    outline: 0;
    font-size: 14px;
    line-height: 1;
  }

  /* Мобильная кнопка поиска */
  .m-search button {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .m-search button img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .m-tabbar {
    display: flex;
    gap: 8px;
    justify-content: space-evenly;
    padding: 8px 10px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 1000;
  }

  .m-tabbar button {
    flex: 1;
    border: 0;
    background: #fff;
    border-radius: 12px;
    padding: 10px 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #0f172a;
    opacity: 0.85;
  }

  .m-tabbar .on {
    background: #e9f6e9;
    border-color: #bfe6c5;
  }

  .leaflet-control-zoom {
    display: none !important;
  }

  .sos-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 1050;
    width: 56px;
    height: 56px;
    background: #e02424;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    border: none;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(224, 36, 36, 0.5);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }

  .sos-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(224, 36, 36, 0.6);
  }

  /* Кнопка "Назад" на мобильной (над поиском) */
  .m-chips .back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #007aff;
    color: #fff;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 122, 255, 0.5);
    animation: backPulse 2s infinite ease-in-out;
    transition: transform 0.2s;
    font-size: 14px;
    padding: 8px 12px;
    text-decoration: none;
  }

  /* Эффект дыхания/пульсации */
  @keyframes backPulse {

    0%,
    100% {
      transform: scale(1);
      box-shadow: 0 0 10px rgba(0, 122, 255, 0.5);
    }

    50% {
      transform: scale(1.08);
      box-shadow: 0 0 20px rgba(0, 122, 255, 0.8);
    }
  }

  /* Легкое увеличение при нажатии */
  .m-chips .back-btn:active {
    transform: scale(1.1);
  }

  .leaflet-top.leaflet-left {
    top: 50% !important;
    left: auto !important;
    right: 20px !important;
    transform: translateY(-50%);
  }

  .leaflet-control-zoom {
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
  }

  .leaflet-control-zoom a {
    display: block;
    background: #fff !important;
    color: #333 !important;
    font-weight: bold;
    width: 36px;
    height: 36px;
    line-height: 34px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0 !important;
    margin-bottom: 10px;
    transition: transform 0.2s, background 0.2s;
  }

  .leaflet-control-zoom a:hover {
    transform: scale(1.1);
    background: #f5f5f5 !important;
  }

  .leaflet-control-zoom a:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 600px) {
  .help-ridth__animated {
    position: static !important;
  }

  .help-ridth__button {
    width: 224px;
    box-shadow: none !important;
    border: 2px solid #F03;
    height: 54px;
    border-radius: 57px;
  }

  .help-ridth {
    margin-top: 20px;
    flex-direction: column;
    align-items: center !important;
  }

  .missia__content {
    padding-right: 0 !important;
  }

  .global-btn a::before {
    width: 150px;
    height: 150px;
  }

  .help-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }

  /* .map .global__item .global__btn {
    top: 217px;
    left: -36px;
  } */

  .start__btn {
    margin-top: 0;
  }


  .tt {
    left: -100px;
    top: -186px;
  }
}

@media (max-width: 480px) {
  .help-ridth img {
    display: none;
  }


  @keyframes pulse1 {
    0% {
      width: 365px;
      height: 60px;
    }

    50% {
      width: 370px;
      height: 55px;
    }

    100% {
      width: 365px;
      height: 60px;
    }
  }

  .help-button .help-left h2 {
    font-size: 31px !important;
    font-weight: 100;
  }

  .help-button .help-left p {
    width: 320px;
    font-size: 12px;
    line-height: 1.4;
  }

  .modal {
    width: calc(100% - 28px);
    padding: 16px;
    border-radius: 10px;
  }

  .global-btn a::before {
    border-radius: 50%;
    width: 120px !important;
    height: 120px !important;
  }

  /* .map .global__item .global__btn {
    top: 27px;
    left: -93px;
  } */

  .help-header div p {
    line-height: 11.2px;
    margin-top: 5px;
    white-space: nowrap;
  }

  .modal h3 {
    font-size: 16px;
  }

  .text-animate-blur h2 {
    text-align: center;
    padding-left: 0 !important;
  }

  .missia__container {
    position: relative;
    top: -42px;
  }

  .modal p {
    font-size: 13px;
  }

  * {
    padding: 0 10px;
  }

  .footer-row1 .footer-row1__social div {
    margin-left: 10px;
  }

  .footer-row2__item:first-child {
    border-top: 0 !important;
  }

  .global__desp {
    margin-top: 5px !important;
  }

  .global__opicanie p {
    margin-top: -30px !important;
  }

  .help-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 0 10px !important;
  }

  .help-main__left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 440px;
    width: 100%;
    padding: 0 20px;
    margin-left: 0px;
  }

  .help-main__ridth #registerBtn {
    top: 0;
    left: 0;
  }

  .help-main {
    padding-left: 0px;
  }

  .help-main {
    padding: 0;
  }

  .missia__desp p {
    text-align: center;
    width: 100%;
  }


  .missia__desp p {
    text-align: center;
    width: 100%;
  }

  .help-main__left p {
    width: 100%;
  }

  .header__content {
    padding-right: 0px;
  }

  .help-button .help-left p {
    width: 100%;
    text-align: center;
  }

  .why__desp p {
    text-align: center;
  }


  .help-left h2 {
    font-size: 38px !important;
  }

  .site-footer {
    padding: 0 20px !important;
  }

  .help-button .help-left h2 {
    text-align: center !important;
  }

  .help-button {
    margin-right: 0;
  }

  .footer-row1 {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .footer-row1__logo,
  .footer-row1__apps,
  .footer-row1__social {
    width: 100%;
    justify-content: center;
  }

  .footer-row3 {
    padding: 15px;
  }

  .footer-row3 a {
    font-size: 11px;
    margin-left: 2px;
  }

  .footer-row3__item1,
  .footer-row3__item2,
  .footer-row3__item3 {
    font-size: 12px;
    line-height: 1.4;
  }

  .mt-50 {
    margin-top: 80px !important;
  }
}

@media (max-width: 400px) {
  .help-main__left h2 {
    width: 90% !important;
  }

  .help-main__left:first-child br {
    display: none;
  }


  .help-main-left {
    padding: 0 20px;
  }

  .help-button .help-left h2 {
    font-size: 29px !important;
  }

  .missia__title h2 {
    font-size: 29px !important;
  }

  .help-main__left h2 {
    font-size: 29px !important;

  }
  
  .missia__desp p {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  .why__desp p {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  .footer-row2 {
    margin-top: 222px;
  }

  .footer-row2 {
    margin-top: 120px !important;
    margin-bottom: 40px !important;
  }

  .why__tab p {
    font-size: 12px !important;

  }


}

@media (max-width: 370px) {
  .missia__desp p {
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
  }

  .faq {
    margin-top: -40px !important;
  }

  .why__tabs div p {
    font-size: 14px;
  }




  .global__opicanie p {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  .global .global-btn a span {
    font-size: 9px !important;
  }

  .why__desp p {
    width: 100% !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  .help-main__left p {
    width: 320px;
    font-size: 14px;
    line-height: 1.4;
  }

  .global-btn a::before {
    width: 80px !important;
    height: 80px !important;
    animation: pulse2 3s infinite ease-in-out;
  }

  @keyframes pulse2 {
    0% {
      width: 90px !important;
      height: 90px !important;
    }

    50% {
      width: 100px !important;
      height: 100px !important;
    }

    100% {
      width: 89px !important;
      height: 90px !important;
    }
  }

  .global .global-btn a span {
    font-size: 11px !important;
  }

  .global .global-btn a {
    height: 80px !important;
    width: 80px !important;
  }
}

.help-ridth__fon {
  background-image: url("../image/jpg/Rectangle.jpg");
  width: 100%;
}

.global__arrow__down {
  position: absolute;
  /* или fixed */
  top: 84%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 22;
}

.footer-section {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: absolute;
  /* Делает позиционирование абсолютным */
  top: 50%;
  width: 30% !important;
  padding: 50px !important;
  /* Сдвигает верхний край на 50% вниз от родителя */
  left: 50%;
  /* Сдвигает левый край на 50% вправо от родителя */
  transform: translate(-50%, -50%);
  /* Смещает элемент обратно на половину его собственной ширины и высоты, идеально центрируя его */
}

@media (max-width: 1203px) {
  .footer-section {
    width: 7 0% !important;
  }
}

@media (max-width: 763px) {
  .footer-section {
    width: 80% !important;
  }
}

.stores-container {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.store-link {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.store-link:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(106, 17, 203, 0.4);
}

.store-link:active {
  transform: translateY(-4px) scale(1.02);
}

.store-link img {
  display: block;
  width: 220px;
  height: auto;
  border-radius: 20px;
}

/* Специфичные уникальные классы для модальных окон */
.frosted-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.frosted-modal-wrapper.active {
  display: flex;
  animation: modal-appear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.frosted-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.frosted-modal-wrapper.active .frosted-modal-backdrop {
  opacity: 1;
}

.frosted-modal-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 50px;
  max-width: 800px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transform: translateY(40px) scale(0.95);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.frosted-modal-wrapper.active .frosted-modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Эффект матового стекла */
.frosted-modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.2) 50%,
      transparent 100%);
}

.frosted-modal-content::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.frosted-modal-header {
  text-align: center;
  margin-bottom: 40px;
}

.frosted-modal-title {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.frosted-modal-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.frosted-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.frosted-modal-features {
  list-style: none;
}

.frosted-modal-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 3px solid #6a11cb;
  transition: all 0.3s ease;
}

.frosted-modal-feature:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.frosted-modal-feature-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.frosted-modal-feature-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.frosted-modal-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.frosted-modal-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.frosted-modal-image img:hover {
  transform: scale(1.05);
}

/* Уникальный класс для кнопки назад */
.frosted-modal-back-btn {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  border: none;
  padding: 20px 45px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  margin-top: 20px;
}

.frosted-modal-back-btn::before {
  content: "←";
  font-size: 22px;
  transition: transform 0.3s ease;
}

.frosted-modal-back-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.frosted-modal-back-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(106, 17, 203, 0.5);
}

.frosted-modal-back-btn:hover::before {
  transform: translateX(-8px);
}

.frosted-modal-back-btn:hover::after {
  opacity: 1;
}

.frosted-modal-back-btn:active {
  transform: translateY(-2px);
}

/* Анимации */
@keyframes modal-appear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes modal-content-appear {
  0% {
    transform: translateY(60px) scale(0.9);
    opacity: 0;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Медиа-запросы */
@media (max-width: 900px) {
  .frosted-modal-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .frosted-modal-content {
    padding: 40px 30px;
  }

  .frosted-modal-title {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .stores-container {
    flex-direction: column;
    align-items: center;
  }

  .store-link img {
    width: 200px;
  }

  .frosted-modal-title {
    font-size: 32px;
  }

  .frosted-modal-content {
    padding: 30px 20px;
    margin: 10px;
  }

  .frosted-modal-back-btn {
    padding: 18px 35px;
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .frosted-modal-title {
    font-size: 28px;
  }

  .frosted-modal-subtitle {
    font-size: 16px;
  }

  .frosted-modal-feature-text {
    font-size: 14px;
  }
}

/* Декоративный элемент */
.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
}

.footer-section__title {
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.footer-section__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  border-radius: 2px;
}

.footer-section__description {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 35px;
  font-size: 16px;
  text-align: justify;
  padding-right: 10px;
}

.footer-section__back-button {
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  letter-spacing: 0.5px;
  position: relative;
  margin-top: 50px;
  background: linear-gradient(45deg, #00d2ff 0%, #3a7bd5 100%);
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  transition: all 0.3s ease;
  gap: 10px;
  overflow: hidden;
  z-index: 1;
  box-shadow: rgba(0, 210, 255, 0.3) 0px 4px 15px;
}

.footer-section__back-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(45deg, #00b4db 0%, #0083b0 100%);
  transition: all 0.3s ease;
  z-index: -1;
  border-radius: 12px;
}

/* Hover-эффекты */
.footer-section__back-button:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: rgba(0, 180, 219, 0.4) 0px 7px 20px;
}

.footer-section__back-button:hover::before {
  width: 100%;
}

/* Активное состояние */
.footer-section__back-button:active {
  transform: translateY(-1px);
  box-shadow: rgba(0, 180, 219, 0.4) 0px 4px 10px;
}

/* Адаптивность */
@media (max-width: 600px) {
  .footer-section {
    padding: 30px 25px;
  }

  .footer-section__title {
    font-size: 24px;
  }

  .footer-section__description {
    font-size: 15px;
  }
}

.gradient {
  border-radius: 1076px;
  opacity: 0.4;
  position: absolute;
  left: 18%;
  top: -26%;
  width: 60%;
  height: 30%;
  background: linear-gradient(45deg,
      #FF0000 0%,
      #FF4500 25%,
      #00B7FF 50%,
      #2b99e2 100%);
  filter: blur(150px);
  z-index: -1000 !important;
  animation: flameEffect 10s ease-in-out infinite;
  background-size: 400% 400%;
}

@keyframes flameEffect {
  0% {
    background-position: 0% 50%;
    filter: blur(150px) brightness(1);
  }

  25% {
    filter: blur(160px) brightness(1.2);
  }

  50% {
    background-position: 100% 50%;
    filter: blur(140px) brightness(1);
  }

  75% {
    filter: blur(170px) brightness(1.3);
  }

  100% {
    background-position: 0% 50%;
    filter: blur(150px) brightness(1);
  }
}

.main-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.main_container {
  margin-top: 76px;
}

.main-section__title {
  color: #fff;
  font-size: 55px;
  font-weight: bold;
  margin-bottom: 45px;
}

.main-section__description {
  font-size: 24px;
}