#support-container {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1040;
}

.support-launcher {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 8px 17px 8px 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(24, 25, 29, 0.82);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.support-launcher:hover,
.support-launcher:focus {
    color: #ffffff;
    background: rgba(11, 13, 18, 0.94);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
    transform: translateY(-2px);
    text-decoration: none;
}

.support-launcher:focus-visible {
    outline: 3px solid rgba(239, 53, 77, 0.45);
    outline-offset: 4px;
}

.support-launcher-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ef354d;
    color: #ffffff;
    font-size: 13px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.support-launcher-label {
    white-space: nowrap;
}

@media (max-width: 575px) {
    #support-container {
        right: 16px;
        bottom: 16px;
    }

    .support-launcher {
        min-height: 42px;
        padding-right: 14px;
        font-size: 11px;
    }

    .support-launcher-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}
