/* ========== 重构后的地图样式（核心修改区域） ========== */
.map-section {
    width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}

.map-container {
    width: 100%;
}

/* 新增：魔力宝贝全地图导航标题样式 */
.map-header {
    margin-bottom: 30px;
    text-align: center;
}

.map-title {
    /* 替换：浅杏色标题 */
    color: #e69a88;
    font-size: 28px;
    font-weight: 700;
    /* 替换：奶油黄文字阴影 */
    text-shadow: 0 0 10px rgba(240, 217, 156, 0.8);
    margin: 0;
    padding-bottom: 15px;
    /* 替换：浅木色分隔线 */
    border-bottom: 2px solid rgba(168, 136, 96, 0.45);
}

.kingdom-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    margin: 0 auto;
}

/* 替换：奶油木色渐变背景（原紫色渐变） */
.kingdom-item {
    background: linear-gradient(135deg, rgba(230, 154, 136, 0.2), rgba(240, 217, 156, 0.1));
    border-radius: 8px;
    /* 替换：浅木色边框 */
    border: 1px solid rgba(168, 136, 96, 0.25);
    padding: 20px;
    transition: all 0.3s ease;
}

.kingdom-item:hover {
    transform: translateY(-3px);
    /* 替换：暖调hover阴影 */
    box-shadow: 0 6px 20px rgba(168, 136, 96, 0.25);
    /* 替换：浅杏色hover边框 */
    border-color: rgba(230, 154, 136, 0.45);
    /* 替换：hover暖调渐变背景 */
    background: linear-gradient(135deg, rgba(230, 154, 136, 0.3), rgba(240, 217, 156, 0.2));
    transition: 0.3s;
}

.kingdom-name {
    /* 替换：浅杏色王国名称 */
    color: #e69a88;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    /* 替换：浅木色虚线分隔线 */
    border-bottom: 1px dashed rgba(168, 136, 96, 0.2);
}
.kingdom-name a{
    /* 替换：浅杏色链接 */
    color: #e69a88;
    text-decoration: none;
    transition: color 0.3s ease;
}
.kingdom-name a:hover {
    /* 替换：珊瑚红hover */
    color: #e87a6f;
}

/* 王国图标样式 */
.icon-kingdom {
    margin-right: 8px;
    /* 替换：奶油黄图标 */
    color: #f0d99c;
}

/* 删除响应式：移除flex-wrap */
.island-horizontal {
    /* display: flex;
    gap: 20px; */
    
    align-items: stretch;
}

.island-card {
    /* 替换：奶油木色半透背景 */
    background: rgba(240, 232, 216, 0.85);
    border-radius: 6px;
    padding: 15px;
    width: 31.3333%;
    float:left;
    margin:1%;
    /* 替换：浅木色边框 */
    border: 1px solid rgba(168, 136, 96, 0.2);
}

.island-name {
    /* 替换：浅杏色岛屿名称 */
    color: #e69a88;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}
.island-name a{
    /* 替换：浅杏色链接 */
    color: #e69a88;
    text-decoration: none;
    transition: color 0.3s ease;
}
.island-name a:hover {
    /* 替换：珊瑚红hover */
    color: #e87a6f;
}

/* 岛屿图标样式 */
.icon-island {
    margin-right: 6px;
    /* 替换：浅杏色图标 */
    color: #e69a88;
}

/* 删除响应式：移除flex-wrap */
.village-tags {
    display: flex;
    gap: 8px;
}

.village-tag {
    /* 替换：浅杏色半透背景 */
    background: rgba(230, 154, 136, 0.15);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    /* 替换：浅木色边框 */
    border: 1px solid rgba(168, 136, 96, 0.15);
}

/* 替换：深木纹村庄标签文字 */
.village-tag a {
    color: #584830;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.village-tag a:hover {
    /* 替换：珊瑚红hover */
    color: #e87a6f;
    /* 替换：奶油黄文字阴影 */
    text-shadow: 0 0 6px rgba(240, 217, 156, 0.5);
}

/* 村庄图标样式 */
.icon-village {
    margin-right: 5px;
    /* 替换：浅杏色图标 */
    color: #e69a88;
}

.village-tag.no-sub {
    /* 替换：中木纹禁用文字 */
    color: #786040;
    cursor: default;
    display: inline-flex;
    align-items: center;
}