/* 背景渐变和图片 */
body {
  background: linear-gradient(to right, #fbc2eb, #a6c1ee);
  /* 移除背景图片 */
}

/* 分组容器样式 */
.group-container {
  background: rgba(255, 255, 255, 0.3);
  /* 半透明白色背景 */
  backdrop-filter: blur(10px);
  /* 背景模糊效果 */
  border-radius: 12px;
  /* 圆角 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* 阴影 */
}

/* 链接悬停效果 */
a:hover {
  transform: translateY(-2px);
  /* 轻微上移 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* 阴影 */
}

/* 标题样式 */
h1 {
  color: #4a5568;
  /* 标题颜色 */
}

/* 链接文字颜色 */
.link-text {
  color: #2d3748;
  /* 链接文字颜色 */
}