/* About page */
.about-content{
      text-align:center; 
      color:#000;
      font: normal normal 400 18px/1.5 "Inter", 
      -apple-system, 
      BlinkMacSystemFont, 
      "Segoe UI", 
      Roboto, 
      sans-serif;
  }
.about-content .name{
    font-size:50px; 
    font-weight:800;
}
.about-content .slogan{
    font-weight:700;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-links a {
  color: #333;
  font-size: 1.5rem;
  transition: color 0.25s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  color: #000;
  transform: translateY(-2px);
}

/* Tags page */
.tag-cloud {
  text-align: center;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
}

.tag-cloud a {
  display: inline-block;
  padding: 6px 16px;
  color: #555;
  text-decoration: none;
  border-radius: 30px;
  background: #f5f5f5;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  font-weight: normal;
}

.tag-cloud a:hover {
  color: #fff;
  background: #000;
  border-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

 .tag-cloud .tag-count{
  font-size:0.7em; 
  font-weight:normal;
  margin-left: 5px;
  opacity: 0.8;
 }

/* 热门标签：文章数量最多的 */
.tag-cloud a.hot {
  font-weight: bold;
  color: #000;
  background: #e8e8e8;
}

.tag-cloud a.hot:hover {
  color: #fff;
  background: #000;
}
    