/* 底部组件样式 */
.footer-wrapper {
    background: linear-gradient(90deg, #1a2b44, #2c3e5c);
    color: white;
    padding: 40px 5% 30px;
    margin-top: 60px;
    border-top: 4px solid var(--accent-gold);
    position: relative;
}

.footer-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 94, 0.5), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-info {
    font-size: 15px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.footer-info p {
    margin-bottom: 8px;
}

.footer-copyright {
    text-align: center;
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-copyright a:hover {
    color: white;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .footer-wrapper {
        padding: 30px 20px 25px;
    }

    .footer-info {
        font-size: 14px;
    }
}