/* 首页焦点区 */
.hero {
    margin: 30px 0 25px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 30px -8px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(212, 175, 55, 0.2) inset;
}

.hero-bg {
    background: linear-gradient(125deg, #f7f2e6 0%, #e9dbc4 100%);
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 32px;
}

.hero-bg i {
    font-size: 70px;
    color: #b68b40;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.05));
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(255,255,255,0.98) 0%, rgba(255,250,240,0.6) 100%);
    padding: 45px 30px 20px;
    backdrop-filter: blur(3px);
}

.hero-overlay h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1e2f3d;
    text-shadow: 2px 2px 0 rgba(255,255,255,0.5);
    letter-spacing: 4px;
}

.hero-overlay p {
    font-size: 18px;
    color: #3e5468;
    font-weight: 400;
}

.hero-badge {
    background: #d4af37;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 40px;
    font-weight: 700;
    margin-top: 16px;
    color: #0f1a24;
    box-shadow: 0 8px 14px rgba(184, 134, 51, 0.2);
    border: 1px solid #f3dfa8;
}

/* 四大分类卡片 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 45px 0;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e8dccd;
    border-radius: 24px;
    padding: 22px 18px;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.03), 0 4px 10px rgba(212, 175, 55, 0.05);
    transition: all 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 28px 35px -12px rgba(184, 134, 51, 0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #e3d3b5;
    padding-bottom: 16px;
    margin-bottom: 18px;
}

.card-header i {
    font-size: 32px;
    color: #b88633;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #1f3a4b;
}

.card-list li {
    padding: 10px 0 8px 5px;
    border-bottom: 1px solid #f0e4d4;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #2c4253;
}

.card-list li i {
    color: #c9a03d;
    margin-right: 14px;
}

.card-list li a {
    color: #2c4253;
    text-decoration: none;
    transition: color 0.15s;
}

.card-list li a:hover {
    color: #b88633;
}

/* 新服速递表格区 */
.server-section {
    background: #ffffffd6;
    backdrop-filter: blur(8px);
    border-radius: 36px;
    padding: 30px 35px;
    margin: 40px 0;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.04);
}

.section-title {
    display: flex;
    align-items: baseline;
    border-left: 12px solid #d4af37;
    padding-left: 24px;
    margin-bottom: 28px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #1c3a4f;
}

.section-title span {
    margin-left: 20px;
    color: #7e6d54;
    font-size: 17px;
}

.server-table-wrapper {
    overflow-x: auto;
    margin: 0 -5px;
    padding: 0 5px;
}

.server-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.server-table th {
    text-align: left;
    padding: 14px 12px;
    border-bottom: 2px solid #d4af37;
    font-size: 18px;
    color: #3b4f5e;
    white-space: nowrap;
}

.server-table td {
    padding: 18px 12px;
    border-bottom: 1px solid #e3d7c5;
    color: #1f3a4b;
    vertical-align: middle;
}

.feature-desc {
    color: #3e5b6e;
    font-size: 15px;
    line-height: 1.4;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    background: #f3efe8;
    padding: 2px 12px;
    border-radius: 30px;
    font-size: 13px;
    border: 1px solid #e2cfae;
    white-space: nowrap;
}

.feature-item i {
    color: #b88633;
    margin-right: 4px;
}

.btn-download {
    background: #d4af37;
    border: none;
    color: #16232e;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(184, 134, 51, 0.15);
    transition: 0.1s;
    display: inline-block;
    border: 1px solid #ecd59e;
    white-space: nowrap;
}

.btn-download:hover {
    background: #c19b3c;
    box-shadow: 0 8px 16px rgba(184, 134, 51, 0.25);
    transform: translateY(-2px);
}

/* 两栏布局 */
.two-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 28px;
    margin: 40px 0;
}

.article-panel {
    background: #fffffff0;
    backdrop-filter: blur(4px);
    border-radius: 28px;
    padding: 26px 30px;
    border: 1px solid #e4d3ba;
    box-shadow: 0 15px 24px -12px rgba(0, 0, 0, 0.04);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #d4af37;
    padding-bottom: 16px;
    margin-bottom: 22px;
}

.panel-header i {
    font-size: 30px;
    color: #b88633;
}

.panel-header h3 {
    font-size: 28px;
    letter-spacing: 4px;
    color: #1c3a4f;
}

.post-item {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
    border-bottom: 1px dashed #d4c5ae;
    padding-bottom: 18px;
}

.post-item:last-child {
    border-bottom: none;
}

.post-img {
    width: 100px;
    height: 70px;
    background: #f5efe6;
    border-radius: 18px;
    border: 1px solid #e2cfae;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b68b40;
    font-size: 30px;
    overflow: hidden;
    flex-shrink: 0;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content h4 {
    font-size: 19px;
    color: #1b374b;
}

.post-content h4 a {
    color: #1b374b;
    text-decoration: none;
    transition: color 0.15s;
}

.post-content h4 a:hover {
    color: #b88633;
}

.post-meta {
    font-size: 13px;
    color: #8a9aa8;
    margin-top: 8px;
}

.post-meta i {
    color: #b88633;
    margin-right: 4px;
}

/* 响应式 */
@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .two-columns {
        grid-template-columns: 1fr;
    }
    .hero-overlay h2 {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .hero-overlay h2 {
        font-size: 24px;
    }
    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    .section-title h2 {
        font-size: 24px;
    }
    .server-section {
        padding: 20px 16px;
    }
    .post-item {
        flex-direction: column;
    }
    .post-img {
        width: 100%;
    }
}