.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, var(--radius-md));
  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);
  }
}

.Card_card__q_eMI {
  --card-radius: var(--radius-lg, var(--radius-lg));
  position: relative;
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  /* 根据样式类型选择伪元素显示 */
  /* 对角样式 - 当前默认样式 */
  /* 矩阵样式 - 类似 [] 符号效果 */
}
.Card_card__q_eMI::before,
.Card_card__q_eMI::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.Card_card__q_eMI[data-corner-style="diagonal"]::before,
.Card_card__q_eMI:not([data-corner-style])::before,
.Card_card__q_eMI[data-corner-style="diagonal"]::after,
.Card_card__q_eMI:not([data-corner-style])::after {
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
}
.Card_card__q_eMI[data-corner-style="diagonal"]::before,
.Card_card__q_eMI:not([data-corner-style])::before {
  top: 0;
  left: 0;
  border-top-color: var(--primary-color);
  border-left-color: var(--primary-color);
  border-top-left-radius: var(--card-radius);
}
.Card_card__q_eMI[data-corner-style="diagonal"]::after,
.Card_card__q_eMI:not([data-corner-style])::after {
  bottom: 0;
  right: 0;
  border-bottom-color: var(--secondary-color);
  border-right-color: var(--secondary-color);
  border-bottom-right-radius: var(--card-radius);
}
.Card_card__q_eMI[data-corner-style="matrix"] {
  position: relative;
}
.Card_card__q_eMI[data-corner-style="matrix"]::before,
.Card_card__q_eMI[data-corner-style="matrix"]::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 100%;
  border: 2px solid transparent;
  box-sizing: border-box;
}
.Card_card__q_eMI[data-corner-style="matrix"]::before {
  top: 0;
  left: 0;
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  border-left: 2px solid var(--primary-color);
  border-top-left-radius: var(--card-radius);
  border-bottom-left-radius: var(--card-radius);
}
.Card_card__q_eMI[data-corner-style="matrix"]::after {
  top: 0;
  right: 0;
  border-top: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  border-right: 2px solid var(--secondary-color);
  border-top-right-radius: var(--card-radius);
  border-bottom-right-radius: var(--card-radius);
}
.Card_card__q_eMI .Card_glow__YUisC {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--primary-alpha-10) 0%, transparent 52%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}
/* 非可点击：无过渡、悬停不浮起/不发光，角标尺寸不变 */
.Card_static__qI7LG {
  cursor: default;
  /* 悬停时视觉与常态一致（子元素获焦也会触发父级 :hover，不能变色/消阴影） */
}
.Card_static__qI7LG:hover {
  transform: none;
}
.Card_static__qI7LG:hover[data-corner-style="diagonal"]::before,
.Card_static__qI7LG:hover:not([data-corner-style])::before,
.Card_static__qI7LG:hover[data-corner-style="diagonal"]::after,
.Card_static__qI7LG:hover:not([data-corner-style])::after {
  width: 18px;
  height: 18px;
}
.Card_static__qI7LG:hover[data-corner-style="matrix"]::before,
.Card_static__qI7LG:hover[data-corner-style="matrix"]::after {
  opacity: 1;
}
.Card_static__qI7LG:hover .Card_glow__YUisC {
  opacity: 0;
}
.Card_clickable__RBIf_ {
  cursor: pointer;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.Card_clickable__RBIf_[data-corner-style="diagonal"]::before,
.Card_clickable__RBIf_:not([data-corner-style])::before,
.Card_clickable__RBIf_[data-corner-style="diagonal"]::after,
.Card_clickable__RBIf_:not([data-corner-style])::after {
  transition: width 0.35s ease, height 0.35s ease;
}
.Card_clickable__RBIf_[data-corner-style="matrix"]::before,
.Card_clickable__RBIf_[data-corner-style="matrix"]::after {
  transition: all 0.35s ease;
}
.Card_clickable__RBIf_:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 24px rgba(var(--primary-rgb), calc(var(--box-glow-intensity, 1) * 0.35)), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}
.Card_clickable__RBIf_:hover[data-corner-style="diagonal"]::before,
.Card_clickable__RBIf_:hover:not([data-corner-style])::before,
.Card_clickable__RBIf_:hover[data-corner-style="diagonal"]::after,
.Card_clickable__RBIf_:hover:not([data-corner-style])::after {
  width: 32px;
  height: 32px;
}
.Card_clickable__RBIf_:hover[data-corner-style="matrix"]::before,
.Card_clickable__RBIf_:hover[data-corner-style="matrix"]::after {
  width: 32px;
  height: 100%;
  opacity: 0.8;
  border-width: 4px;
}
.Card_clickable__RBIf_:hover .Card_glow__YUisC {
  opacity: calc(var(--box-glow-intensity, 1) * 0.85);
}
.Card_clickable__RBIf_:active {
  transform: translateY(-2px) scale(0.998);
}
.Card_header__HJHSu {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.Card_title__txfKr {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  text-shadow: 0 0 10px rgba(var(--primary-rgb), calc(var(--text-glow-intensity, 1) * 0.5));
}
.Card_extra__G1lYf {
  color: var(--text-secondary);
}
.Card_body__gs7jr {
  padding: 32px;
  position: relative;
  z-index: 1;
  color: var(--text-primary);
}
.Card_footer___L2DR {
  padding: 16px 32px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.Card_bordered__yNbgr {
  border-width: 2px;
}
.Card_elevated__fI_RW {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 16px rgba(var(--primary-rgb), calc(var(--box-glow-intensity, 1) * 0.35));
}
.Card_glass__6UOQV {
  background: rgba(20, 20, 35, 0.4);
}
.Card_loading__j4hrp {
  pointer-events: none;
}
.Card_loading__j4hrp .Card_body__gs7jr {
  opacity: 0.5;
}
.Card_disabled__hCj9n {
  opacity: 0.6;
  pointer-events: none;
}

