.support {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 999;
}


.support_btn.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.support_green_marker {
    gap: 0.5rem;
    display: flex;
    padding: 0 1rem;
    line-height: 3rem;
    font-size: 15px;
    align-items: center;
}

.support_green_marker::before {
    content: "";
    display: inline-block;
    position: relative;
    width: 0.5rem;
    height: 0.5rem;
    line-height: 0.5rem;
    border-radius: 0.2rem;
    vertical-align: 0.1em;
    background-color: #51d161;
    background-image: linear-gradient(to right bottom,#80dc7a,#23c748);
}

.support_content {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    background: var(--card);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.support_content.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.support_title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-custom);
}

.support_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--bg-table);
}

.support_header svg {
    cursor: pointer;
    fill: var(--text-custom);
    width: 16px;
    height: 16px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.support_header svg:hover {
    opacity: 1;
}

.support_content_info {
    gap: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support_content_logo {
    position: relative;
    display: inline-block;
}

.support_logo {
    width: 5rem;
    height: 5rem;
    border-radius: var(--br-50);
}

.support_logo_icon_online {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #51d161;
    border-radius: 50%;
}

.support_discord {
    font-weight: 600;
}

.support_text {
    color: var(--text-custom);
    margin-bottom: 1rem;
    font-size: 14px;
    line-height: 1.4;
}