/* Floating, always-visible donate button. Replaces the old third-party
   Ko-fi floater; this one is first-party and just links to /donate. */
.mns-donate-fab {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 16px;
    background-color: #4361ee;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    transition: background-color 0.2s ease, transform 0.2s ease,
                box-shadow 0.2s ease;
}

.mns-donate-fab:hover {
    background-color: #3a56d4;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.mns-donate-fab:active {
    transform: translateY(0);
}

.mns-donate-fab img {
    width: 22px;
    height: 22px;
    display: block;
    filter: brightness(0) invert(1); /* white icon on blue */
}

@media (max-width: 480px) {
    .mns-donate-fab {
        padding: 12px;
        font-size: 0; /* icon-only on small screens */
        gap: 0;
    }
    .mns-donate-fab img {
        width: 24px;
        height: 24px;
    }
}
