.app-footer {
    padding: 22px 16px 26px;
    text-align: center;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    align-items: center;
    gap: 10px 22px;
}

.footer-link {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.15s, opacity 0.15s;
    white-space: nowrap;
}

.footer-link:hover {
    color: #334155;
    opacity: 0.95;
}

.footer-link:active {
    opacity: 0.8;
}

.footer-copy {
    display: block;
    margin-top: 16px;
    color: #9ca3af;
    font-size: 12px;
    line-height: 1.5;
}