/* Footer styles */
.site-footer {
    background: var(--bg-panel);
    border-top: 1px solid var(--border);
    padding: 30px 20px;
    margin-top: 60px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

