/* 1. 页脚标题：亮白 + 蓝色短横线 */
.site-footer h3, footer h3 {
    color: #FFFFFF !important;    
    font-weight: 700 !important;             
    padding-bottom: 8px !important;          
    border-bottom: 2px solid #00AEEF !important; 
    display: inline-block !important; 
    margin-bottom: 15px !important;          
    text-transform: uppercase !important;    
}

/* 2. 页脚文字颜色锁定为白色 */
.site-footer a, .site-footer li, .site-footer p, footer a, footer li, footer p {
    font-size: 15px !important;
    line-height: 1.8 !important; 
    color: #FFFFFF !important;
    text-decoration: underline !important;
    transition: all 0.3s ease !important; /* 增加平滑过渡时间 */
}

/* 3. 核心修复：蓝色发光闪现效果 (Hover) */
/* 增加多个选择器确保 100% 覆盖 */
.site-footer a:hover, 
footer a:hover, 
.site-footer li a:hover,
.site-footer .wp-block-column a:hover {
    color: #00AEEF !important; 
    text-shadow: 0 0 10px rgba(0, 174, 239, 0.8) !important; 
    text-decoration: none !important;
    cursor: pointer !important;
}

/* 4. 保护 Contact 栏目图标对齐 */
.site-footer .wp-block-column:last-child p,
.site-footer .wp-block-column:last-child a,
.site-footer .wp-block-column:last-child span {
    display: inline !important; 
    margin-bottom: 0 !important;
}

/* 5. 首页文字保护（防止变白消失） */
.entry-content p, .entry-content a, .entry-content h4 {
    color: #333333 !important;
}