/* LIQUID GLASS STYLES */
.liquidGlass-wrapper {
  position: relative;
  display: flex;
  font-weight: 600;
  overflow: hidden;
  color: black;
  cursor: pointer;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.liquidGlass-effect {
  position: absolute;
  z-index: 0;
  inset: 0;
  backdrop-filter: blur(3px);
  filter: url(#glass-distortion);
  overflow: hidden;
  isolation: isolate;
}

.liquidGlass-tint {
  z-index: 1;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
}

.liquidGlass-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.5),
    inset -1px -1px 1px 1px rgba(255, 255, 255, 0.5);
}

.liquidGlass-text {
  z-index: 3;
  font-size: 2rem;
  color: black;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

body {
  padding: 0;
  margin: 0;
  position: relative;
  height: 100vh;
  font-family: sans-serif;
  font-weight: 300;
  background-color: rgba(96, 179, 196, 0.402);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* animation: moveBackground 60s linear infinite; */
}
/* @keyframes moveBackground {
  from {
    background-position: 0% 0%;
  }221
  to {
    background-position: 0% -1500%;
  }
} */
.dock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 2rem;
  padding: 0.6rem;
  width: 90vw;
  height: 50px;
  z-index: 1000;
}

#outer-dock {
  position: fixed;
  right: 50%;
  bottom: 10px;
  transform: translateX(50%);
}

#inner-dock {
  height: 100%;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
  gap: 0;
}

/*移动端断点（宽度 < 1200px） */
@media (max-width: 1200px) {
  .dock {
    width: 110vw;
    height: 50px;
  }
  #outer-dock {
    right: auto;
    top: auto;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
  }
  #inner-dock {
    flex-direction: row;
  }
}

.dock .dock > div {
  border-radius: 2rem;
}
.dock:hover {
  padding: 0.8rem;
  border-radius: 2.5rem;
}

.dock:hover > div {
  border-radius: 2.5rem;
}

.dock img {
  width: 40px;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.dock img:hover {
  transform: scale(1.3);
  transform-origin: center center;
}
