/* 新版页脚样式 - 黑金风格 */
.new-footer {
    background: linear-gradient(180deg, #0f1621, #121212);
    position: relative;
    overflow: hidden;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(241, 237, 98, 0.2);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.6);
    
    /* 添加CSS变量用于鼠标跟随效果 */
    --x: 50%;
    --y: 0%;
}

/* 顶部发光边框 */
.new-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(241, 237, 98, 0.5), 
        transparent);
    z-index: 1;
}

/* 背景光晕效果 - 使用CSS变量实现鼠标跟随 */
.new-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at var(--x) var(--y), 
        rgba(241, 237, 98, 0.08) 0%, 
        transparent 50%
    );
    pointer-events: none;
    z-index: 0;
    transition: background 0.3s ease;
}

/* 页脚内容容器 */
.new-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* 页脚上部区域 */
.new-footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* 页脚左侧 - 站点信息 */
.new-footer-info {
    flex: 0 0 30%;
    margin-bottom: 20px;
}

.new-footer-logo {
    margin-bottom: 15px;
}

.new-footer-logo img {
    height: 40px;
    filter: drop-shadow(0 0 5px rgba(241, 237, 98, 0.5));
    transition: all 0.3s ease;
}

.new-footer-logo img:hover {
    filter: drop-shadow(0 0 8px rgba(241, 237, 98, 0.8));
    transform: scale(1.05);
}

.new-footer-desc {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.new-footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(241, 237, 98, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(241, 237, 98, 0.3);
    transition: all 0.3s ease;
    color: #f1ed62;
}

.social-icon:hover {
    background: rgba(241, 237, 98, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    border-color: rgba(241, 237, 98, 0.6);
    animation: social-pulse 1.5s infinite;
}

/* 页脚中部 - 导航链接 */
.new-footer-nav {
    flex: 0 0 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.new-footer-nav-group {
    flex: 0 0 45%;
    margin-bottom: 20px;
}

.new-footer-nav-title {
    color: #f1ed62;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 5px rgba(241, 237, 98, 0.3);
}

.new-footer-nav-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #f1ed62, transparent);
}

.new-footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.new-footer-nav-link {
    color: #999;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.new-footer-nav-link:before {
    content: "•";
    color: rgba(241, 237, 98, 0.5);
    margin-right: 8px;
    font-size: 10px;
    transition: all 0.3s ease;
}

.new-footer-nav-link:hover {
    color: #f1ed62;
    transform: translateX(5px);
    text-shadow: 0 0 5px rgba(241, 237, 98, 0.5);
    position: relative;
    z-index: 2;
}

.new-footer-nav-link:hover:before {
    color: #f1ed62;
}

/* 页脚右侧 - 联系信息 */
.new-footer-contact {
    flex: 0 0 25%;
    margin-bottom: 20px;
}

.new-footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #f1ed62;
    transform: translateX(3px);
}

.contact-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f1ed62;
}

/* 响应式按钮 */
.new-footer-support-btn {
    margin-top: 15px;
    background: rgba(241, 237, 98, 0.1);
    border: 1px solid #f1ed62;
    color: #f1ed62;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.new-footer-support-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(241, 237, 98, 0.2),
        transparent
    );
    transition: all 0.5s ease;
}

.new-footer-support-btn:hover {
    background: rgba(241, 237, 98, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.new-footer-support-btn:hover::before {
    left: 100%;
}

/* 页脚底部区域 */
.new-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.new-footer-copyright {
    color: #777;
    font-size: 12px;
    line-height: 1.6;
    flex: 1;
}

.copyright-link {
    color: #999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.copyright-link:hover {
    color: #f1ed62;
    text-shadow: 0 0 5px rgba(241, 237, 98, 0.5);
    position: relative;
    z-index: 2;
}

.copyright-line {
    margin-top: 5px;
}

.copyright-line p {
    color: #777;
    font-size: 12px;
    line-height: 1.5;
}

.new-footer-links {
    display: flex;
    gap: 15px;
}

.new-footer-bottom-link {
    color: #777;
    font-size: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.new-footer-bottom-link:hover {
    color: #f1ed62;
    text-shadow: 0 0 5px rgba(241, 237, 98, 0.5);
    position: relative;
    z-index: 2;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .new-footer-top {
        flex-direction: column;
    }
    
    .new-footer-info,
    .new-footer-nav,
    .new-footer-contact {
        flex: 0 0 100%;
    }
    
    .new-footer-nav {
        margin-top: 20px;
    }
    
    .new-footer-contact {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .new-footer-nav-group {
        flex: 0 0 100%;
    }
    
    .new-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .new-footer-copyright {
        margin-bottom: 15px;
    }
    
    .new-footer-links {
        justify-content: center;
    }
}

/* 装饰元素 */
.footer-decor {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241, 237, 98, 0.1) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}

.footer-decor-1 {
    top: 20%;
    left: 5%;
}

.footer-decor-2 {
    bottom: 10%;
    right: 5%;
}

/* 添加脉冲动画到社交图标 */
@keyframes social-pulse {
    0% { box-shadow: 0 0 0 0 rgba(241, 237, 98, 0.3); }
    70% { box-shadow: 0 0 0 10px rgba(241, 237, 98, 0); }
    100% { box-shadow: 0 0 0 0 rgba(241, 237, 98, 0); }
}

/* 添加按钮点击效果 */
.new-footer-support-btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
} 