.header {
  width: 100%;
  display: flex;
  z-index: 10;
  top: 0;
  position: fixed;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding: 10px 40px 0;
}

.header-reboot {
  align-items: center;
  display: flex;
  flex-direction: row;
  text-decoration: none;
  outline: none;
}

.header-logo {
  width: 80px;
}

.header-reboot:focus-within .header-logo {
  scale: 1.1;
}

.connect-button {
  background-color: transparent;
  border: none;
  margin-top: 10px;
  color: #000;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #c1a683;
  padding: 10px 15px;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 400;
  border-radius: 10px;
  transition: scale 0.2s, box-shadow 0.2s;
  outline: none;
}

@media (width < 1400px) {
  .connect-button {
    font-size: clamp(0.75rem, 0.7159rem + 0.1818vw, 0.875rem);
  }
}

.connect-button:hover {
  scale: 1.03;
  box-shadow: 1px 2px 15px #efbf8438;
}

.connect-button:focus {
  scale: 1.03;
  box-shadow: 1px 2px 15px #efbf8438;
}

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