/* footer.css */
footer {
    background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
    color: white;
    text-align: center;
    padding: 20px 0;
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

footer p {
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border-bottom: 1px dashed rgba(255,255,255,0.5);
    padding-bottom: 2px;
}

footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    border-bottom: none;
    padding-bottom: 0;
}