/* 卡片圆角和阴影 */
.service-card,
.bookmark-card {
  border-radius: 18px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

/* 鼠标悬停效果 */
.service-card:hover,
.bookmark-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.35) !important;
}

/* 顶部标题稍微更醒目 */
#information-widgets {
  margin-bottom: 1.5rem;
}

/* 页面整体透明感 */
body {
  backdrop-filter: blur(2px);
}
