/* ========================================
   百家乐技巧论坛 - 完整版CSS V4.0
   包含：侧边栏升级 + 诱导点击优化
   ======================================== */

:root {
    --primary: #4e73df;
    --primary-dark: #375a7f;
    --primary-light: #6c5ce7;
    --secondary: #6c5ce7;
    --danger: #e74c3c;
    --success: #27ae60;
    --warning: #f39c12;
    --bg-page: #f5f7fb;
    --bg-card: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border-color: #e8eaf6;
    --shadow: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
}

/* ========================================
   顶部横幅
   ======================================== */
.top-banner {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0 0 12px 12px;
    margin: 0 20px;
    box-shadow: var(--shadow);
}

/* ========================================
   主容器 - 适配260px侧边栏
   ======================================== */
.main-wrapper {
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 20px;
}

.main-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* ========================================
   左侧边栏 - 品牌+导航+引流三合一（260px）
   ======================================== */
.sidebar-left {
    position: sticky;
    top: 20px;
    width: 260px;
    flex-shrink: 0;
}

/* ① 站点品牌区 */
.sidebar-header {
    background: linear-gradient(135deg, #4e73df 0%, #6c5ce7 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(78, 115, 223, 0.3);
    text-align: center;
}

.sidebar-header .brand-icon {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
}

.sidebar-header .brand-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.sidebar-header .brand-subtitle {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
}

.sidebar-header .brand-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 11px;
}

.sidebar-header .brand-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ② 分类导航 - 块状卡片 */
.sidebar-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid #e8eaf6;
}

.sidebar-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ③ 分类按钮 - 块状卡片 */
.category-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #f8f9fc;
    border-radius: 10px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-list a:hover {
    background: #eef2ff;
    border-color: #d0d8f0;
    transform: translateX(3px);
    color: #4e73df;
}

/* ④ 当前选中态 - 强化 */
.category-list li.active a {
    background: linear-gradient(135deg, #4e73df 0%, #6c5ce7 100%);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(78, 115, 223, 0.35);
    border-color: transparent;
}

.category-list li.active a:hover {
    transform: translateX(3px);
    color: white;
}

.category-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* ⑥ 快捷入口区 */
.sidebar-quick {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid #e8eaf6;
}

.sidebar-quick h4 {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    border: 1px solid #ffe0b2;
    border-radius: 8px;
    color: #e65100;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    background: linear-gradient(135deg, #ffcc80 0%, #ffe0b2 100%);
    transform: translateX(3px);
    color: #bf360c;
}

.quick-links a::after {
    content: '→';
    font-size: 12px;
    opacity: 0.7;
}

/* ⑦ 底部小广告位 */
.sidebar-ad {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(238, 90, 111, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-ad:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(238, 90, 111, 0.4);
}

.sidebar-ad-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.sidebar-ad-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.sidebar-ad-subtitle {
    font-size: 11px;
    opacity: 0.95;
    margin-bottom: 10px;
}

.sidebar-ad-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: white;
    color: #ee5a6f;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ========================================
   中间内容区 - 自适应宽度
   ======================================== */
.content-main {
    flex: 1;
    min-width: 0;
}

.content-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 4px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title.new { border-left-color: #4e73df; }
.section-title.hot { border-left-color: var(--danger); }
.section-title.recommended { border-left-color: var(--warning); }

.post-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.post-list.compact { gap: 10px; }

/* ========================================
   帖子卡片 - 诱导点击优化
   ======================================== */
.post-card {
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 20px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.hot-sale {
    border: 2px solid var(--warning);
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 50%);
}

.hot-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, var(--warning) 0%, #e67e22 100%);
    color: white;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.post-card h2 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 12px;
}

.post-card h2 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.post-card h2 a:hover {
    color: var(--primary);
}

.post-meta-strong {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    flex-wrap: wrap;
}

.post-meta-strong .tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.post-meta-strong .views {
    color: var(--text-secondary);
    font-weight: 500;
}

.post-meta-strong .heat {
    color: var(--danger);
    font-weight: 600;
}

.post-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

/* 阅读按钮 + 伪评论 */
.post-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px dashed var(--border-color);
}

.read-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(78, 115, 223, 0.25);
}

.read-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(78, 115, 223, 0.35);
    color: white;
}

.fake-comments {
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.fake-comments:hover {
    color: var(--primary);
}

/* 热门卡片 */
.hot-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
}

.hot-rank {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8eaf6 0%, #f5f7fb 100%);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.hot-card:nth-child(1) .hot-rank {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

.hot-card:nth-child(2) .hot-rank {
    background: linear-gradient(135deg, #c0c0c0 0%, #e0e0e0 100%);
    color: #333;
}

.hot-card:nth-child(3) .hot-rank {
    background: linear-gradient(135deg, #cd7f32 0%, #daa520 100%);
    color: white;
}

.hot-content {
    flex: 1;
    min-width: 0;
}

.hot-content h2 {
    font-size: 15px;
    margin-bottom: 8px;
}

.hot-content .post-meta-strong {
    margin-bottom: 0;
}

.ad-card-inline {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border: 2px dashed #ffd700;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin: 16px 0;
}

.ad-card-inline img {
    max-width: 100%;
    border-radius: 8px;
}

/* ========================================
   右侧栏（240px）
   ======================================== */
.sidebar-right {
    position: sticky;
    top: 20px;
    width: 240px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.right-card {
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 18px;
    border: 1px solid var(--border-color);
}

.right-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 高转化广告块 */
.money-box {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    border: none;
    padding: 20px;
}

.money-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.money-icon {
    font-size: 32px;
}

.money-title {
    font-size: 16px;
    font-weight: 700;
}

.money-subtitle {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 2px;
}

.money-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 11px;
}

.money-features span {
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 20px;
}

.money-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: white;
    color: #ee5a6f;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.money-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.money-stats {
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
    opacity: 0.95;
}

/* 平台推荐 */
.ad-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 20px;
    text-align: center;
}

.ad-box-header {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ad-icon {
    font-size: 24px;
}

.ad-box-desc {
    font-size: 13px;
    opacity: 0.95;
    margin-bottom: 16px;
    line-height: 1.5;
}

.ad-box-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: white;
    color: #667eea;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.ad-box-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.ad-box-footer {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 14px;
    font-size: 11px;
    opacity: 0.9;
}

/* 热门关键词 */
.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.keyword-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.keyword-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.keyword-btn.hot {
    background: #fff3e0;
    border-color: #ff9800;
    color: #e65100;
}

.keyword-btn.hot:hover {
    background: #ff9800;
    color: white;
}

.keyword-btn.danger {
    background: #ffebee;
    border-color: #f44336;
    color: #c62828;
    font-weight: 500;
}

.keyword-btn.danger:hover {
    background: #f44336;
    color: white;
}

/* 列表样式 */
.hot-list, .read-list, .update-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hot-list.numbered li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.hot-list.numbered li:last-child {
    border-bottom: none;
}

.rank-num {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
}

.rank-num.top {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.hot-list a, .read-list a, .update-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.5;
    transition: var(--transition);
    flex: 1;
}

.hot-list a:hover, .read-list a:hover, .update-list a:hover {
    color: var(--primary);
}

.update-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.update-list li:last-child {
    border-bottom: none;
}

.update-time {
    font-size: 11px;
    color: var(--text-muted);
}

.ad-card {
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.ad-card img {
    width: 100%;
    height: auto;
    display: block;
}

.ad-label {
    text-align: center;
    padding: 6px;
    font-size: 11px;
    color: var(--text-muted);
    background: var(--bg-page);
    border-top: 1px solid var(--border-color);
}

/* ========================================
   站点信任区
   ======================================== */
.trust-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-top: 30px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--success) 0%, #2ecc71 100%);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ========================================
   分页
   ======================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 16px;
}

.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination span.current {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ========================================
   页脚
   ======================================== */
.site-footer {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-muted);
    font-size: 13px;
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
}

/* ========================================
   移动端响应式
   ======================================== */
@media (max-width: 1200px) {
    .main-container {
        flex-direction: column;
    }

    .sidebar-left,
    .sidebar-right {
        position: static;
        width: 100%;
    }

    .sidebar-left {
        display: none;
    }
}

@media (max-width: 992px) {
    .mobile-nav {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding: 10px 0;
        margin-bottom: 16px;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-nav a {
        flex-shrink: 0;
        padding: 10px 20px;
        background: var(--bg-card);
        border-radius: 20px;
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        border: 1px solid var(--border-color);
    }

    .mobile-nav a.active {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }

    .sidebar-right {
        order: 3;
        margin-top: 20px;
    }

    .content-main {
        order: 2;
    }

    .post-card {
        padding: 16px;
    }

    .post-card h2 {
        font-size: 15px;
        padding-right: 40px;
    }

    .post-meta-strong {
        gap: 10px;
        font-size: 12px;
    }

    .post-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-box {
        gap: 16px;
        padding: 20px;
    }

    .trust-item {
        font-size: 13px;
        width: calc(50% - 8px);
        justify-content: center;
    }
}

@media (min-width: 993px) {
    .mobile-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .top-banner {
        margin: 0 10px;
        font-size: 12px;
        padding: 10px;
    }

    .main-wrapper {
        padding: 0 10px;
        margin: 10px auto;
    }

    .section-title {
        font-size: 16px;
    }

    .hot-badge {
        right: 10px;
        padding: 3px 8px;
        font-size: 10px;
    }
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-page);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}


/* ========================================
   分类页专用样式 - 修复混乱问题
   ======================================== */

/* 分类Hero区域 - 清晰的头部 */
.category-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 1px solid #e8eaf6;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.category-hero-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.category-hero-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.category-hero-count {
    background: linear-gradient(135deg, #4e73df 0%, #6c5ce7 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.category-hero-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #e0e0e0;
}

.category-hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-icon {
    font-size: 18px;
}

.stat-num {
    font-size: 18px;
    font-weight: 700;
    color: #4e73df;
}

.stat-label {
    font-size: 13px;
    color: #999;
}

/* 区块标题头部 */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.section-subtitle {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

/* ========================================
   文章页专用样式
   ======================================== */

/* 文章内容区 */
.post-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.post-content p {
    margin-bottom: 16px;
}

.post-content h2,
.post-content h3 {
    margin: 24px 0 16px 0;
    color: #333;
}

.post-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 16px 0;
}

/* 伪评论区 */
.fake-comment-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e8eaf6;
}

.fake-comment-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #333;
}

.fake-comments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fake-comment {
    padding: 14px;
    background: #f8f9fc;
    border-radius: 10px;
    border: 1px solid #e8eaf6;
}

/* ========================================
   响应式优化
   ======================================== */

@media (max-width: 768px) {
    .category-hero {
        padding: 18px;
    }

    .category-hero-title {
        font-size: 20px;
    }

    .category-hero-stats {
        gap: 16px;
    }

    .stat-item {
        flex: 1;
        min-width: calc(50% - 8px);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}