body.info-page-body {
  --amx-accent: #ff9d1f;
  --amx-accent-soft: rgba(255, 157, 31, 0.26);
  --amx-accent-faint: rgba(255, 157, 31, 0.08);
  --amx-ease: cubic-bezier(0.2, 0.74, 0.26, 1);
  --amx-reveal-duration: 0.6s;
}

body.info-page-body .amx-motion-section {
  position: relative;
  isolation: isolate;
}

body.info-page-body .amx-motion-section::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: -14%;
  bottom: -14%;
  background: radial-gradient(44% 56% at 50% 0%, rgba(255, 157, 31, 0.12) 0%, rgba(255, 157, 31, 0.03) 44%, rgba(255, 157, 31, 0) 72%);
  opacity: 0;
  pointer-events: none;
  filter: blur(8px);
  transform: translateY(0);
  transition: opacity 1s ease, transform 0.32s linear;
  animation: amxSectionBreathe 17s ease-in-out infinite;
}

body.info-page-body .amx-motion-section.is-visible::before {
  opacity: 1;
}

body.info-page-body .amx-motion-section::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 157, 31, 0), rgba(255, 157, 31, 0.2), rgba(255, 157, 31, 0));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

body.info-page-body .amx-motion-section.is-visible::after {
  opacity: 1;
}

body.info-page-body .amx-motion-section > *:not(.amx-stream-layer) {
  position: relative;
  z-index: 1;
}

body.info-page-body .amx-motion-section > .amx-stream-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.12;
  mix-blend-mode: screen;
}

body.info-page-body .amx-motion-section > .amx-stream-layer::before {
  content: "";
  position: absolute;
  left: -18%;
  right: -18%;
  top: -24%;
  bottom: -24%;
  background: repeating-linear-gradient(118deg, rgba(255, 157, 31, 0) 0 28px, rgba(255, 157, 31, 0.08) 28px 30px, rgba(255, 157, 31, 0) 30px 68px);
  filter: blur(0.35px);
  transform: translate3d(0, 0, 0);
  animation: amxSignalStreams 15s linear infinite;
}

@keyframes amxSectionBreathe {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }
  50% {
    transform: translate3d(0, -6px, 0) scale(1.02);
    opacity: 1;
  }
}

@keyframes amxSignalStreams {
  0% {
    transform: translate3d(-4%, -2%, 0);
  }
  50% {
    transform: translate3d(4%, 2%, 0);
  }
  100% {
    transform: translate3d(-4%, -2%, 0);
  }
}

body.info-page-body.amx-motion-enabled .amx-reveal-item {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  filter: blur(8px);
  will-change: opacity, transform, filter;
  transition:
    opacity var(--amx-reveal-duration) var(--amx-ease),
    transform var(--amx-reveal-duration) var(--amx-ease),
    filter var(--amx-reveal-duration) var(--amx-ease);
  transition-delay: calc(var(--amx-stagger, 0) * 1s);
}

body.info-page-body.amx-motion-enabled .amx-motion-section.is-visible .amx-reveal-item,
body.info-page-body.amx-reduced .amx-reveal-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

body.info-page-body .amx-parallax-surface {
  transform: translate3d(0, var(--amx-parallax, 0px), 0);
  transition: transform 0.35s linear;
}

body.info-page-body .info-page-card,
body.info-page-body .contacts-page-card,
body.info-page-body .privacy-page-card,
body.info-page-body .terms-page-card,
body.info-page-body .risk-page-card,
body.info-page-body .terms-page-restrict-card,
body.info-page-body .info-page-button,
body.info-page-body .contacts-page-doc-link,
body.info-page-body .risk-page-contact-action,
body.info-page-body .site-footer-link,
body.info-page-body .site-footer-cta {
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

body.info-page-body .info-page-card:hover,
body.info-page-body .contacts-page-card:hover,
body.info-page-body .privacy-page-card:hover,
body.info-page-body .terms-page-card:hover,
body.info-page-body .risk-page-card:hover,
body.info-page-body .terms-page-restrict-card:hover {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(255, 170, 72, 0.62) !important;
  box-shadow:
    0 0 0 1px rgba(255, 169, 68, 0.18),
    0 14px 26px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(255, 157, 31, 0.16);
}

body.info-page-body .info-page-button:hover,
body.info-page-body .contacts-page-doc-link:hover,
body.info-page-body .risk-page-contact-action:hover,
body.info-page-body .site-footer-link:hover,
body.info-page-body .site-footer-cta:hover {
  transform: translate3d(0, -2px, 0);
  border-color: rgba(255, 176, 84, 0.84) !important;
  box-shadow:
    0 0 0 1px rgba(255, 176, 84, 0.26),
    0 0 20px rgba(255, 157, 31, 0.24),
    0 12px 24px rgba(0, 0, 0, 0.34);
}

body.info-page-body .amx-pulse-target {
  box-shadow:
    0 0 0 1px rgba(255, 157, 31, 0.16),
    0 0 40px rgba(255, 157, 31, 0.14) inset;
}

@media (max-width: 1023px) {
  body.info-page-body .amx-parallax-surface {
    transform: none !important;
    transition: none !important;
  }

  body.info-page-body .amx-motion-section::before {
    left: 3%;
    right: 3%;
  }

  body.info-page-body .amx-motion-section > .amx-stream-layer {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.info-page-body .amx-motion-section::before,
  body.info-page-body .amx-motion-section::after,
  body.info-page-body .amx-motion-section > .amx-stream-layer::before {
    animation: none !important;
    transition: none !important;
  }

  body.info-page-body .amx-reveal-item {
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }
}
