/* Footer Styles */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 40px;
    margin-top: 100px;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-brand a {
    color: inherit;
    text-decoration: none;
}

.footer-brand a:hover {
    color: var(--color-blue);
}

.footer-info {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 24px;
    transition: var(--transition-default);
}

.footer-links a:hover {
    color: var(--color-blue);
    transform: translateY(-2px);
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-tertiary);
    padding-top: 24px;
    border-top: 1px solid var(--border-primary);
}

.footer-badge {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-badge img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-badge img:hover {
    opacity: 1;
}