/* 自定义样式 - 增强Gemini主题 */
:root {
  --theme-color: #6200ee;  /* 主题颜色 */
  --background-color: #f8f9fa;  /* 背景颜色 */
  --text-color: #333;  /* 文字颜色 */
  --link-color: #0056b3;  /* 链接颜色 */
}

body {
  background-color: var(--background-color);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.site-title {
  font-weight: bold;
  color: var(--theme-color);
}

.post-title-link {
  color: var(--theme-color);
  transition: color 0.3s ease;
}

.post-title-link:hover {
  color: var(--link-color);
}

.headband {
  background: var(--theme-color);
}

/* 添加动画效果 */
.post-block {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 美化导航菜单 */
.menu-item a {
  border-radius: 4px;
  transition: background-color 0.3s;
}

.menu-item a:hover {
  background-color: rgba(0,0,0,0.1);
}

/* 美化代码块 */
pre {
  border-radius: 5px;
}

/* 美化引用块 */
blockquote {
  border-left: 4px solid var(--theme-color);
  background-color: rgba(98, 0, 238, 0.05);
}

/* 美化头像 */
.site-author-image {
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  max-width: 120px;
  margin: 0 auto 10px;
  display: block;
}

.site-author-image:hover {
  transform: scale(1.05);
}

.site-author-name {
  margin: 0;
  font-size: 1.2em;
  color: var(--theme-color);
  font-weight: bold;
  text-align: center;
}

.site-description {
  font-size: 0.9em;
  color: #666;
  font-style: italic;
  margin: 5px 0 15px;
  text-align: center;
}

/* 美化社交图标 */
.links-of-author {
  margin-top: 15px;
}

.links-of-author-item {
  margin: 5px 10px;
}

.links-of-author-item a {
  border-radius: 50%;
  background-color: rgba(98, 0, 238, 0.1);
  transition: background-color 0.3s;
}

.links-of-author-item a:hover {
  background-color: rgba(98, 0, 238, 0.2);
}
