/* ========== 中间内容区域核心样式（固定1200px） ========== */
/* 主布局容器 - 强制固定1200px宽度 */
.main-layout {
    width: 1200px !important;
    margin: 20px auto !important;
    display: flex;
    gap: 25px;
    position: relative;
}

/* 左侧主列（热门任务/热点攻略/最新动态） */
.left-main-column {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* 右侧边栏（排行榜/优质群） */
.right-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* 通用卡片样式（暖调童话风格，无蓝色） */
.column-card {
    /* 柔和奶油木色渐变 */
    background: linear-gradient(135deg, #f0e8d8, #e8e0c8);
    /* 温润浅木色边框 */
    border: 1px solid rgba(168, 136, 96, 0.35);
    border-radius: 10px;
    padding: 22px;
    /* 暖调柔和阴影 */
    box-shadow: 
        0 4px 20px rgba(168, 136, 96, 0.15),
        0 0 15px rgba(230, 154, 136, 0.08) inset;
    position: relative;
    overflow: hidden;
}

/* 卡片顶部装饰线（暖调渐变，无蓝色） */
.column-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    /* 优化后的暖调浅杏色+奶油黄+珊瑚红渐变，无蓝色 */
    background: linear-gradient(90deg, #e69a88, #f0d99c, #e87a6f);
    border-radius: 10px 10px 0 0;
}

/* 卡片内部轻微装饰（柔和奶油黄） */
.column-card::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    /* 暖调奶油黄装饰，无蓝色 */
    background: radial-gradient(circle, rgba(240, 217, 156, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* 卡片内容层（防止装饰层遮挡内容） */
.column-card > * {
    position: relative;
    z-index: 1;
}

/* 卡片头部（标题+更多按钮） */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 12px;
    /* 温润浅木色分隔线 */
    border-bottom: 1px solid rgba(168, 136, 96, 0.25);
}

.card-title {
    font-size: 19px;
    /* 优化后的浅杏色标题（更清晰），无蓝色 */
    color: #e69a88;
    font-weight: 600;
    padding-left: 10px;
    /* 浅杏色左侧装饰条（更清晰），无蓝色 */
    border-left: 4px solid #e69a88;
    margin: 0;
    /* 柔和奶油黄文字阴影 */
    text-shadow: 0 0 8px rgba(240, 217, 156, 0.25);
}

.more-btn {
    /* 深木纹文字色 */
    color: #584830;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.more-btn:hover {
    color: #e87a6f;
    /* 优化后的浅杏色背景（更清晰），无蓝色 */
    background: rgba(230, 154, 136, 0.15);
    /* 柔和奶油黄阴影 */
    text-shadow: 0 0 10px rgba(240, 217, 156, 0.35);
}

/* ========== 热门任务列表样式（暖调童话风格，无蓝色） ========== */
.task-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.task-item {
    padding: 14px 16px;
    /* 优化后的浅杏色半透背景（更清晰），无蓝色 */
    background: linear-gradient(135deg, rgba(230, 154, 136, 0.08), rgba(230, 154, 136, 0.03));
    border-radius: 8px;
    /* 温润浅木色边框 */
    border: 1px solid rgba(168, 136, 96, 0.2);
    transition: all 0.3s ease;
}

.task-item:hover {
    background: linear-gradient(135deg, rgba(230, 154, 136, 0.15), rgba(230, 154, 136, 0.08));
    border-color: rgba(230, 154, 136, 0.35);
    transform: translateY(-2px);
    /* 暖调柔和阴影 */
    box-shadow: 
        0 4px 12px rgba(168, 136, 96, 0.15),
        0 0 15px rgba(230, 154, 136, 0.12);
}

.task-item a {
    /* 深木纹文字色 */
    color: #584830;
    text-decoration: none;
    display: block;
}

.task-title {
    font-size: 15px;
    /* 优化后的浅杏色标题（更清晰），无蓝色 */
    color: #e69a88;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    /* 柔和浅木色阴影 */
    text-shadow: 0 0 4px rgba(168, 136, 96, 0.15);
}

.task-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    /* 浅木纹文字色 */
    color: #786040;
}

.rewrite-yes {
    /* 暖调珊瑚红高亮，无蓝色 */
    color: #e87a6f;
    font-weight: 500;
}

.rewrite-no {
    color: #887050;
}

/* ========== 热点攻略列表样式（暖调童话风格，无蓝色） ========== */
.guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.guide-item {
    padding: 14px 16px;
    /* 优化后的浅杏色半透背景（更清晰），无蓝色 */
    background: linear-gradient(135deg, rgba(230, 154, 136, 0.08), rgba(230, 154, 136, 0.03));
    border-radius: 8px;
    /* 温润浅木色边框 */
    border: 1px solid rgba(168, 136, 96, 0.2);
    transition: all 0.3s ease;
}

.guide-item:hover {
    background: linear-gradient(135deg, rgba(230, 154, 136, 0.15), rgba(230, 154, 136, 0.08));
    border-color: rgba(230, 154, 136, 0.35);
    transform: translateY(-2px);
    /* 暖调柔和阴影 */
    box-shadow: 
        0 4px 12px rgba(168, 136, 96, 0.15),
        0 0 15px rgba(230, 154, 136, 0.12);
}

.guide-item a {
    color: #584830;
    text-decoration: none;
    display: block;
}

.guide-title {
    font-size: 15px;
    color: #e69a88;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    text-shadow: 0 0 4px rgba(168, 136, 96, 0.15);
}

.guide-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: #786040;
}

/* ========== 最新动态列表样式（暖调童话风格，无蓝色） ========== */
.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.news-item {
    padding: 14px 16px;
    /* 优化后的浅杏色半透背景（更清晰），无蓝色 */
    background: linear-gradient(135deg, rgba(230, 154, 136, 0.08), rgba(230, 154, 136, 0.03));
    border-radius: 8px;
    /* 温润浅木色边框 */
    border: 1px solid rgba(168, 136, 96, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-item:hover {
    background: linear-gradient(135deg, rgba(230, 154, 136, 0.15), rgba(230, 154, 136, 0.08));
    border-color: rgba(230, 154, 136, 0.35);
    transform: translateY(-2px);
    /* 暖调柔和阴影 */
    box-shadow: 
        0 4px 12px rgba(168, 136, 96, 0.15),
        0 0 15px rgba(230, 154, 136, 0.12);
}

.news-item a {
    color: #584830;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

/* 增强头像装饰（优化后的暖调渐变，无蓝色） */
.news-avatar {
    width: 34px;
    height: 34px;
    /* 优化后的浅杏色+奶油黄渐变（更清晰），无蓝色 */
    background: linear-gradient(135deg, #e69a88, #f0d99c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
    /* 暖调柔和阴影 */
    box-shadow: 0 0 10px rgba(230, 154, 136, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-content {
    flex: 1;
}

.news-text {
    font-size: 14px;
    color: #e69a88;
    margin-bottom: 6px;
    text-shadow: 0 0 4px rgba(168, 136, 96, 0.15);
}

.news-time {
    font-size: 12px;
    color: #786040;
}

/* ========== 数据库贡献排行榜样式（暖调童话风格，无蓝色） ========== */
.rank-list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top:20px;
}

.rank-item {
    padding: 12px 14px;
    /* 优化后的浅杏色半透背景（更清晰），无蓝色 */
    background: linear-gradient(135deg, rgba(230, 154, 136, 0.08), rgba(230, 154, 136, 0.03));
    border-radius: 8px;
    /* 温润浅木色边框 */
    border: 1px solid rgba(168, 136, 96, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.rank-item:hover {
    background: linear-gradient(135deg, rgba(230, 154, 136, 0.15), rgba(230, 154, 136, 0.08));
    border-color: rgba(230, 154, 136, 0.35);
}

/* 增强排行榜数字装饰（优化后的暖调渐变，无蓝色） */
.rank-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-right: 12px;
    flex-shrink: 0;
    /* 暖调柔和阴影 */
    box-shadow: 0 2px 8px rgba(168, 136, 96, 0.2);
}

.top1 {
    /* 暖调珊瑚红+奶油黄渐变，无蓝色 */
    background: linear-gradient(135deg, #e87a6f, #f0d99c);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.top2 {
    /* 优化后的浅杏色+奶油黄渐变（更清晰），无蓝色 */
    background: linear-gradient(135deg, #e69a88, #f0d99c);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.top3 {
    /* 温润浅木色+优化后的浅杏色渐变（更清晰），无蓝色 */
    background: linear-gradient(135deg, #786040, #e69a88);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rank-num:not(.top1):not(.top2):not(.top3) {
    /* 优化后的浅杏色背景（更清晰），无蓝色 */
    background: rgba(230, 154, 136, 0.25);
    color: #584830;
    border: 1px solid rgba(230, 154, 136, 0.25);
}

.rank-name {
    flex: 1;
    font-size: 14px;
    color: #e69a88;
    text-shadow: 0 0 4px rgba(168, 136, 96, 0.15);
}

.rank-score {
    font-size: 12px;
    color: #786040;
    margin-left: 10px;
    padding: 2px 6px;
    /* 温润浅木色背景 */
    background: rgba(168, 136, 96, 0.15);
    border-radius: 4px;
}

/* ========== 优质群推荐样式（暖调童话风格，无蓝色） ========== */
.group-list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top:20px;
}

.group-item {
    padding: 14px 16px;
    /* 优化后的浅杏色半透背景（更清晰），无蓝色 */
    background: linear-gradient(135deg, rgba(230, 154, 136, 0.08), rgba(230, 154, 136, 0.03));
    border-radius: 8px;
    /* 温润浅木色边框 */
    border: 1px solid rgba(168, 136, 96, 0.2);
    transition: all 0.3s ease;
}

.group-item:hover {
    background: linear-gradient(135deg, rgba(230, 154, 136, 0.15), rgba(230, 154, 136, 0.08));
    border-color: rgba(230, 154, 136, 0.35);
    transform: translateY(-2px);
    /* 暖调柔和阴影 */
    box-shadow: 
        0 4px 12px rgba(168, 136, 96, 0.15),
        0 0 15px rgba(230, 154, 136, 0.12);
}

.group-name {
    font-size: 15px;
    color: #e69a88;
    font-weight: 500;
    margin-bottom: 6px;
    text-shadow: 0 0 4px rgba(168, 136, 96, 0.15);
}

.group-desc {
    font-size: 12px;
    color: #786040;
    margin-bottom: 6px;
    line-height: 1.4;
}

.group-code {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    padding: 4px 8px;
    /* 优化后的浅杏色+奶油黄渐变（更清晰），无蓝色 */
    background: linear-gradient(135deg, #e69a88, #f0d99c);
    border-radius: 4px;
    display: inline-block;
    /* 暖调柔和阴影 */
    box-shadow: 0 2px 8px rgba(230, 154, 136, 0.25);
}

/* ========== 侧边栏广告样式（暖调童话风格，无蓝色） ========== */
.sidebar-ad {
    /* 柔和奶油木色渐变 */
    background: linear-gradient(135deg, #f0e8d8, #e8e0c8);
    /* 温润浅木色边框 */
    border: 1px solid rgba(168, 136, 96, 0.35);
    border-radius: 10px;
    padding: 18px;
    /* 暖调柔和阴影 */
    box-shadow: 
        0 4px 20px rgba(168, 136, 96, 0.15),
        0 0 15px rgba(230, 154, 136, 0.08) inset;
}

.ad-label {
    font-size: 12px;
    /* 优化后的浅杏色（更清晰），无蓝色 */
    color: #e69a88;
    margin-bottom: 10px;
    display: block;
    font-weight: 500;
}

.ad-content {
    font-size: 14px;
    /* 深木纹文字色 */
    color: #584830;
    line-height: 1.6;
    /* 柔和浅木色阴影 */
    text-shadow: 0 0 4px rgba(168, 136, 96, 0.15);
}