footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    user-select: none;
}

.footer-copy {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    color: rgba(241, 241, 241, 0.35);
}

.site-information {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.site-information a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    color: rgba(241, 241, 241, 0.35);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-information a:hover {
    color: rgba(241, 241, 241, 0.75);
}

.footer-sep {
    font-size: 0.72rem;
    color: rgba(241, 241, 241, 0.18);
}

.footer-socials {
    display: flex;
    gap: 0.5rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
