/* 可点击文本核心样式 */
.link-text {
  color: var(--theme-light);               /* 主色 */
  background: linear-gradient(90deg, var(--theme-light), var(--theme));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  padding: 2px 6px;
  text-decoration: none;
  display: inline-block;
}

/* 悬停 & 焦点 */
.link-text:hover,
.link-text:focus {
  background: var(--theme-light);
  -webkit-text-fill-color: #fff;
  text-fill-color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--theme-light);
}

/* 禁用态 */
.link-text.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: none;
  -webkit-text-fill-color: #888;
  text-fill-color: #888;
  pointer-events: none;
}