#hs-banner-popup {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hs-banner-inner {
    background: #fff;
    padding: 2em;
    border-radius: 10px;
    position: relative;
    max-width: 85vw;
    max-height: 60vh;
    overflow: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    width: 600px;
    min-height: 300px;
}
.hs-banner-close {
    position: absolute;
    top: 0;
    right: 0.5em;
    background: transparent;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: #333;
}
.hs-banner-link {
    margin-top: 1em;
    text-align: right;
}