.Button_button__5Zqpd {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px;
  padding: 8px 24px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md, 8px);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  background: transparent;
  min-height: 36px;
}
@media (max-width: 768px) {
  .Button_button__5Zqpd {
    min-height: 44px;
  }
}
@media (pointer: coarse) {
  .Button_button__5Zqpd {
    min-height: 44px;
  }
}
.Button_button__5Zqpd > * {
  position: relative;
  z-index: 1;
}
.Button_button__5Zqpd:active {
  transform: scale(0.97);
}
.Button_button__5Zqpd:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
.Button_button__5Zqpd::before,
.Button_button__5Zqpd::after {
  pointer-events: none;
}
.Button_button__5Zqpd::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.Button_button__5Zqpd:hover::before {
  opacity: 1;
}
.Button_button__5Zqpd::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-alpha-10), rgba(var(--secondary-rgb), 0.1));
  opacity: 0;
  transition: opacity 0.3s;
}
.Button_button__5Zqpd:hover::after {
  opacity: 1;
}
.Button_button__5Zqpd.Button_primary__Y2YOz {
  background: linear-gradient(135deg, var(--primary-alpha-20), rgba(var(--secondary-rgb), 0.2));
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(var(--primary-rgb), calc(var(--text-glow-intensity, 1) * 1));
}
.Button_button__5Zqpd.Button_primary__Y2YOz:hover {
  box-shadow: 0 0 20px rgba(var(--primary-rgb), calc(var(--box-glow-intensity, 1) * 0.5)), 0 0 40px rgba(var(--secondary-rgb), calc(var(--box-glow-intensity, 1) * 0.5));
  transform: translateY(-2px);
}
.Button_button__5Zqpd.Button_secondary__RsfJA {
  color: var(--text-secondary);
}
.Button_button__5Zqpd.Button_secondary__RsfJA:hover {
  color: var(--text-primary);
  box-shadow: 0 0 15px rgba(var(--primary-rgb), calc(var(--box-glow-intensity, 1) * 0.5));
}
.Button_button__5Zqpd.Button_ghost__8FhI5 {
  color: var(--text-secondary);
}
.Button_button__5Zqpd.Button_ghost__8FhI5::before {
  opacity: 0.3;
}
.Button_button__5Zqpd.Button_ghost__8FhI5:hover {
  color: var(--text-primary);
}
.Button_button__5Zqpd.Button_ghost__8FhI5:hover::before {
  opacity: 0.8;
}
.Button_button__5Zqpd.Button_danger__fVwAc {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.15), rgba(244, 63, 94, 0.05));
  color: var(--error-color);
}
.Button_button__5Zqpd.Button_danger__fVwAc::before {
  background: linear-gradient(135deg, var(--error-color), var(--secondary-color));
  opacity: 0.9;
}
.Button_button__5Zqpd.Button_danger__fVwAc:hover {
  color: #ff8787;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.25), rgba(244, 63, 94, 0.15));
  box-shadow: 0 0 20px rgba(244, 63, 94, calc(var(--box-glow-intensity, 1) * 0.5));
}
.Button_button__5Zqpd.Button_small__CnCEB {
  padding: 4px 16px;
  font-size: 14px;
}
.Button_button__5Zqpd.Button_large__FhNyZ {
  padding: 16px 32px;
  font-size: 18px;
}
.Button_button__5Zqpd:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.Button_button__5Zqpd:disabled::before,
.Button_button__5Zqpd:disabled::after {
  display: none;
}
.Button_button__5Zqpd:disabled:hover {
  transform: none;
  box-shadow: none;
}
.Button_button__5Zqpd.Button_loading__76EAc {
  pointer-events: none;
}
.Button_button__5Zqpd.Button_block__gpZl9 {
  width: 100%;
}
.Button_spinner__lKtpF {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: Button_spin__1s29s 1s linear infinite;
}
@keyframes Button_spin__1s29s {
  to {
    transform: rotate(360deg);
  }
}

