.sticky-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #9aa0a6;
  font-size: 12px;
}

.sticky-footer__inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.sticky-footer__links a {
  color: #9aa0a6;
  text-decoration: none;
  margin-left: 14px;
  white-space: nowrap;
}

.sticky-footer__links a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  :root {
    --footerH: 74px;
  }

  body {
    padding-bottom: 78px;
  }

  .sticky-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 12px;
  }

  .sticky-footer__links {
    width: 100%;
  }

  .sticky-footer__links a {
    margin-left: 0;
    margin-right: 14px;
    display: inline-block;
    margin-top: 6px;
  }
}
