/* VengenceUI Liquid Metal Chrome Styles */
.liquid-metal-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 9999px;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5);
}

.liquid-metal-btn:active {
  transform: scale(0.98);
}

/* Metallic Shader / Gradient Border Container */
.liquid-metal-border {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(
    135deg,
    #111115 0%,
    #888888 20%,
    #ffffff 35%,
    #444444 50%,
    #ffffff 65%,
    #999999 80%,
    #050508 100%
  );
  background-size: 300% 300%;
  animation: liquidChromeFlow 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.liquid-metal-body {
  position: relative;
  z-index: 10;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.75rem 0.75rem 0.75rem;
  background-color: #000000;
  color: #ffffff;
  font-family: "Inter", -apple-system, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: background-color 0.2s ease;
}

.liquid-metal-btn:hover .liquid-metal-body {
  background-color: #0d0d0d;
}

.liquid-metal-icon-wrap {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  color: #e5e5e5;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.liquid-metal-icon-wrap svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

@keyframes liquidChromeFlow {
  0% {
    background-position: 0% 50%;
    filter: brightness(1) contrast(1.1);
  }
  50% {
    background-position: 100% 50%;
    filter: brightness(1.2) contrast(1.2);
  }
  100% {
    background-position: 50% 100%;
    filter: brightness(1.05) contrast(1.15);
  }
}
