.footer {
  display: flex;
  flex-direction: row;
  position: fixed;
  width: 100%;
  background-color: rgba(46, 45, 45, 0.192);
  bottom: 0;
  z-index: 10;
  position: fixed;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding: 14px 50px 20px;
}
@media (width < 1400px) {
  .footer {
    font-size: clamp(0.75rem, 0.7159rem + 0.1818vw, 0.875rem);
  }
}

.twitter {
  background-color: transparent;
  border: none;
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: underline;
  outline: none;
  transition: color 0.3s;
}

.twitter:focus {
  color: #e0cdb4;
}

.liquid-glass-footer {
  backdrop-filter: blur(1px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    rgba(255, 255, 255, 0.005) 80%,
    rgba(0, 0, 0, 0) 100% /* Полностью прозрачный */
  );
  border: none;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 10;
}
