/* Base styles */
body {
    background-color: #333;
    color: #e0e0e0;
}

.post-content h4 {
    position: relative;
    font-size: 1.25em;
    font-weight: 700;
    margin: 1.5em 0 0.8em;
    padding-left: 1.2em;
    color: #e0e0e0; /* 使用你的主文字色 */
    line-height: 1.4;
}

.post-content h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.6em;
    height: 0.6em;
    background-color: #e0e0e0;
    border-radius: 1px; /* 可选：轻微圆角保持现代感 */
}

/* Link styles */
a {
    color: #5cd5fb;
}

a:hover {
    font-weight: 700;
}

/* Header styles */
.header-line {
    border-color: #e0e0e0;
}

.site-title a,
nav a,
ul a {
    color: #e0e0e0;
}

/* Post styles */
.post-title, 
.post-meta, 
.post-date {
    color: #e0e0e0;
}

.post-category {
    border-color: #e0e0e0;
    color: #bb86fc;
}

.post-content a {
    color: #5cd5fb;
}

/* Comments styles */
.comments-area {
    border-top: 3px solid #e0e0e0;
}

.comment-list {
    border: 1px solid #e0e0e0;
}

.login-info,
.logout-link {
    color: #e0e0e0;
}

.comment-author,
.comment-reply a {
    color: #e0e0e0;
}

.comment-time {
    color: #b6b6b6;
}

/* Blockquote styles */
/* Blockquote styles */
blockquote {
    background-color: #2d2d2d; /* 深色模式下的背景色 */
    color: #e0e0e0; /* 与深色模式下的主文字颜色保持一致 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 深色模式下调整阴影 */
}

blockquote:before,
blockquote:after {
    color: #e0e0e0; /* 引号颜色改为浅色 */
    opacity: 0.4; /* 保持相同的透明度 */
}

blockquote p {
    color: #e0e0e0; /* 确保段落文字颜色符合深色主题 */
    font-style: italic;
    font-weight: 300;
}
}