/*
Theme Name: 极简博客
Theme URI: https://你的网站地址
Description: 基于Fukasawa风格的极简博客主题
Author: 你的名字
Author URI: https://你的地址
Version: 1.0
*/

/* 以下粘贴你的所有CSS代码（包括Tailwind配置、自定义样式等） */
@layer utilities {
  .content-auto {
    content-visibility: auto;
  }
  .text-balance {
    text-wrap: balance;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

html {
  scroll-behavior: smooth;
}

.post-image {
  transition: transform 0.3s ease;
}

.post-image:hover {
  transform: scale(1.02);
}

/* 评论区样式 */
.comment-list {
  list-style: none;
  padding: 0;
}

.comment {
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
}

.comment-meta {
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

.comment-author {
  font-weight: bold;
  margin-right: 0.5rem;
}

.comment-reply a {
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
  border: 1px solid #000;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.comment-reply a:hover {
  background-color: #000;
  color: #fff;
}

/* 注册表单样式 */
#register-form input,
#register-form textarea {
  width: 100%;
}

.error {
  color: #dc3232;
  margin-bottom: 1rem;
}