#tt-support-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#tt-support-overlay.active {
    display: flex;
}

#tt-support-popup {
    background: #ffffff;
    width: 90%;
    max-width: 520px;
    padding: 35px;
    border-radius: 6px;
    position: relative;
    text-align: center;
}

#tt-support-popup h2 {
    margin: 0 0 15px;
}

#tt-support-popup p {
    margin: 0 0 25px;
}

#tt-support-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: 0;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.tt-support-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.tt-support-btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.tt-support-primary {
    background: #2bb3a6;
    color: #ffffff;
}

.tt-support-primary:hover {
    background: #23978d;
    color: #ffffff;
}

.tt-support-secondary {
    background: #f2f2f2;
    color: #333333;
}

.tt-support-secondary:hover {
    background: #e4e4e4;
}

@media (max-width: 600px) {

    #tt-support-popup {
        padding: 25px;
    }

    .tt-support-buttons {
        flex-direction: column;
    }

    .tt-support-btn {
        width: 100%;
    }

}