/* 在原 style.css 末尾添加以下样式 */

/* 统计横幅 */
.stats-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
}

.stats-banner > div > div:first-child {
    color: white !important;
}

/* 阅读量标签 */
.post-views {
    font-size: 0.85em;
    color: #999;
    margin-left: 10px;
}

/* 标签样式 */
.tag {
    display: inline-block;
    background: var(--bg);
    color: var(--text);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9em;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.tag:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

/* 评论区样式 */
.comments-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border);
}

.comment {
    background: var(--bg);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 3px solid #3498db;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.comment-author {
    font-weight: bold;
    color: var(--text);
}

.comment-date {
    color: #888;
    font-size: 0.85em;
}

.comment-content {
    color: var(--text);
    line-height: 1.6;
}

.comment-form {
    background: var(--bg);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.comment-form textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--card-bg);
    color: var(--text);
    font-family: inherit;
    resize: vertical;
}

.comment-form button {
    margin-top: 10px;
    padding: 10px 25px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
}

.comment-form button:hover {
    background: #2980b9;
}
