/* 全局样式 */
body {
  font-family: 'Inter', system-ui, sans-serif;
  scroll-behavior: smooth;
}

/* 表单焦点效果 */
.form-input:focus {
  box-shadow: 0 0 0 3px rgba(22, 93, 255, 0.15);
}

/* 链接项悬停效果 */
.link-item {
  transition: all 0.2s ease;
}

.link-item:hover {
  transform: translateX(4px);
}

/* 账号卡片悬停效果 */
.account-card {
  transition: all 0.3s ease;
}

.account-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}