/* 禁用头像旋转效果 */
.avatar-img img:hover {
  animation: none !important;
  transform: none !important;
}

/* 自定义主题颜色 - 黑灰色偏粉色 */
:root {
  --theme-color: #8B8589;
  --link-color: #8B7E84;
  --text-hover: #C9B1BB;
  --button-bg: #6B5B5F;
  --button-hover-bg: #C9B1BB;
}

/* 链接颜色 */
a {
  color: #8B7E84 !important;
}

a:hover {
  color: #C9B1BB !important;
}

/* 按钮颜色 */
button, .button {
  background: #6B5B5F !important;
}

button:hover, .button:hover {
  background: #C9B1BB !important;
}

/* 滚动条颜色 */
::-webkit-scrollbar-thumb {
  background: #A68F9B !important;
}

/* 选中文本颜色 */
::selection {
  background: #A68F9B !important;
  color: #fff !important;
}

/* 代码块颜色 */
code {
  color: #7A6B71 !important;
  background: rgba(230, 225, 227, 0.3) !important;
}

/* 引用块颜色 */
blockquote {
  border-left-color: #A68F9B !important;
  background: #F5F1F3 !important;
}

/* 备案信息颜色 */
.beian-info {
  color: #ffffff !important;
}

.beian-info span {
  color: #ffffff !important;
}

.beian-info a {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.beian-info a:hover {
  color: #C9B1BB !important;
}

/* GitHub Follow Me 按钮 */
#card-info-btn {
  background: #6B5B5F !important;
  color: #ffffff !important;
  border: 1px solid #A68F9B !important;
}

#card-info-btn:hover {
  background: #C9B1BB !important;
  color: #2D2528 !important;
}

#card-info-btn i,
#card-info-btn span {
  color: #ffffff !important;
}

#card-info-btn:hover i,
#card-info-btn:hover span {
  color: #2D2528 !important;
}
