.footer {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    padding-bottom: 0.7em;
    background: none;
}
.footer-info {
    font-size: 0.82em;
    color: #555;
    text-align: center;
    letter-spacing: 0.04em;
    width: 100vw;
    user-select: none;
    margin-bottom: 0.2em;
    padding: 0.4em 0.6em;
    display: inline-block;
    background: none;
    box-shadow: none;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.footer-info a {
    color: #444;
    text-decoration: none;
    margin: 0 0.2em;
    font-weight: 500;
    transition: color 0.18s, background 0.18s;
    border-radius: 0.5em;
    padding: 0 0.2em;
}
.footer-info a:hover {
    color: #111;
    background: rgba(0,0,0,0.06);
    text-decoration: underline;
}
.footer-btn {
    background: var(--theme-color, #0099ff);
    border: none;
    border-radius: 1em;
    padding: 0.5em 1.5em;
    font-size: 0.95em;
    color: #fff;
    margin: 0 0.3em;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}
.footer-btn:hover {
    background: #005fa3;
    color: #fff;
}
#footer-changelog,
#footer-changelog:visited,
#footer-changelog:active,
#footer-changelog:hover,
#footer-changelog:focus {
    text-decoration: none !important;
} 
@media (max-width: 700px) {
    .footer {
        flex-direction: column;
        align-items: center;
        padding: 0.6em 0.2em !important;
    }
    .footer-info {
        width: 100vw;
        text-align: center;
        font-size: 0.8em;
        line-height: 1.6;
        word-break: break-all;
        white-space: normal;
        display: block;
        margin: 0 auto 0.1em auto;
    }
    .footer-info .footer-row {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100vw;
        gap: 0.2em;
    }
    .footer-info .footer-row + .footer-row {
        margin-top: 0.1em;
    }
} 