/* ========== 新增：地图模块样式 ========== */
.map-container {
    width: 1200px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.map-card {
    /* 替换：奶油木色渐变背景 */
    background: linear-gradient(135deg, #f0e8d8, #e8e0c8);
    /* 替换：浅木色边框 */
    border: 1px solid rgba(168, 136, 96, 0.35);
    border-radius: 8px;
    padding: 25px;
    /* 替换：暖调阴影 */
    box-shadow: 0 4px 15px rgba(168, 136, 96, 0.15);
    transition: all 0.3s ease;
}

.map-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    /* 替换：暖调渐变装饰线 */
    background: linear-gradient(90deg, #e69a88, #f0d99c, #e87a6f);
    border-radius: 8px 8px 0 0;
}

.map-card:hover {
    /* 替换：暖调hover阴影 */
    box-shadow: 0 6px 20px rgba(168, 136, 96, 0.25);
    /* 替换：浅杏色hover边框 */
    border-color: rgba(230, 154, 136, 0.6);
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    /* 替换：浅木色分隔线 */
    border-bottom: 1px solid rgba(168, 136, 96, 0.25);
}

.map-title {
    /* 替换：浅杏色标题 */
    color: #e69a88;
    font-size: 22px;
    /* 替换：奶油黄文字阴影 */
    text-shadow: 0 0 8px rgba(240, 217, 156, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-title::before {
    content: "🗺️";
    font-size: 20px;
}

/* 地图导航标签 */
.map-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.map-tab {
    padding: 8px 18px;
    /* 替换：浅杏色半透背景 */
    background: rgba(230, 154, 136, 0.1);
    /* 替换：浅木色边框 */
    border: 1px solid rgba(168, 136, 96, 0.25);
    border-radius: 20px;
    /* 替换：深木纹文字 */
    color: #584830;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-tab.active {
    /* 替换：暖调渐变背景 */
    background: linear-gradient(135deg, #e69a88, #f0d99c);
    /* 替换：浅杏色激活边框 */
    border-color: #e69a88;
    color: #fff;
    /* 替换：暖调激活阴影 */
    box-shadow: 0 0 10px rgba(230, 154, 136, 0.4);
}

.map-tab:hover {
    /* 替换：浅杏色hover背景 */
    background: rgba(230, 154, 136, 0.2);
    /* 替换：浅杏色hover边框 */
    border-color: rgba(230, 154, 136, 0.5);
}

/* 地图内容区域 */
.map-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-image-wrapper {
    width: 100%;
    /* 替换：奶油木色半透背景 */
    background: rgba(240, 232, 216, 0.8);
    /* 替换：浅木色边框 */
    border: 1px solid rgba(168, 136, 96, 0.25);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.map-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    /* 替换：暖调图片阴影 */
    box-shadow: 0 0 15px rgba(230, 154, 136, 0.2);
}

/* 哥拉尔城地图信息 */
.map-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.map-info-item {
    padding: 15px;
    /* 替换：奶油木色渐变背景 */
    background: linear-gradient(135deg, rgba(240, 232, 216, 0.05), rgba(232, 224, 200, 0.05));
    border-radius: 8px;
    /* 替换：浅杏色左侧装饰线 */
    border-left: 3px solid #e69a88;
}

.map-info-title {
    /* 替换：浅杏色标题 */
    color: #e69a88;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.map-info-desc {
    /* 替换：深木纹文字 */
    color: #584830;
    font-size: 14px;
    line-height: 1.6;
}

.map-info-desc a {
    /* 替换：浅杏色链接 */
    color: #e69a88;
    text-decoration: underline;
}

.map-info-desc a:hover {
    /* 替换：珊瑚红hover */
    color: #e87a6f;
    /* 替换：奶油黄文字阴影 */
    text-shadow: 0 0 5px rgba(240, 217, 156, 0.5);
}

.more-btn {
    /* 替换：暖调渐变背景 */
    background: linear-gradient(135deg, #e69a88, #f0d99c);
    border: none;
    color: #fff;
    width: 120px;
    height: 40px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 40px;
}

.more-btn:hover {
    transform: scale(1.05);
    /* 替换：暖调hover阴影 */
    box-shadow: 0 0 12px rgba(230, 154, 136, 0.5);
}