/* 页脚 - 使用更具体的选择器 */
footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 80px 0 40px !important;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 25px;
}

.footer-about p {
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    gap: 15px;
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact i {
    color: var(--primary-yellow);
    width: 20px;
}
