.theme-floating-actions {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 130;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.theme-floating-support,
.theme-floating-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    border: none;
    color: #ffffff;
    background: linear-gradient(135deg, #0f4fa8 0%, #0b3d91 100%);
    box-shadow: 0 10px 20px rgba(11, 61, 145, 0.22);
    cursor: pointer;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.theme-floating-support {
    padding: 0 18px;
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 700;
}

.theme-floating-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex: 0 0 44px;
}

.theme-floating-support:hover,
.theme-floating-top:hover {
    background: linear-gradient(135deg, #1d67c1 0%, #0f4fa8 100%);
    box-shadow: 0 14px 28px rgba(11, 61, 145, 0.32);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Modal */
.theme-support-modal {
    position: fixed;
    inset: 0;
    z-index: 190;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.theme-support-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.is-support-modal-open {
    overflow: hidden;
}

.theme-support-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 61, 145, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.theme-support-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    padding: 28px 26px 24px;
    border-radius: 18px;
    border: 1px solid #d9e2ef;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(11, 61, 145, 0.14);
}

.theme-support-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d9e2ef;
    background: transparent;
    color: #6e7f99;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color .25s ease, border-color .25s ease, background-color .25s ease;
}

.theme-support-modal__close:hover {
    color: #0b3d91;
    border-color: #1d67c1;
    background: #eaf3ff;
}

.theme-support-modal__header {
    margin-bottom: 22px;
}

.theme-support-modal__eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid #d9e2ef;
    background: #eaf3ff;
    color: #0b3d91;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.theme-support-modal__header h3 {
    margin: 0 0 10px;
    color: #10233f;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    line-height: 1.1;
    letter-spacing: -.03em;
}

.theme-support-modal__header p {
    margin: 0;
    color: #42526b;
    font-size: .98rem;
    line-height: 1.65;
}

.theme-support-modal__options {
    display: grid;
    gap: 12px;
}

.theme-support-modal__option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid #e8eef7;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    transition: transform .22s ease, border-color .22s ease, background-color .22s ease;
}

.theme-support-modal__option:hover {
    transform: translateY(-2px);
    border-color: #1d67c1;
    background: #f5f9ff;
}

.theme-support-modal__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf3ff;
    color: #0b3d91;
    font-size: 1.15rem;
}

.theme-support-modal__copy {
    display: grid;
    gap: 4px;
}

.theme-support-modal__copy strong {
    color: #10233f;
    font-size: 1rem;
    font-weight: 800;
}

.theme-support-modal__copy small {
    color: #42526b;
    font-size: .9rem;
    line-height: 1.55;
}

@media (max-width: 720px) {
    .theme-floating-actions {
        right: 16px;
        bottom: 16px;
        gap: 10px;
    }

    .theme-floating-support {
        padding: 0 14px;
        font-size: .86rem;
    }

    .theme-support-modal {
        padding: 16px;
    }

    .theme-support-modal__dialog {
        padding: 24px 18px 18px;
        border-radius: 16px;
    }

    .theme-support-modal__option {
        padding: 14px;
        grid-template-columns: 1fr;
        justify-items: flex-start;
    }
}
