#pad-popup {
    position: fixed;
    left: 0; right: 0; top: 0; bottom: 0;
    background: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 0;
    animation: pad-popup-fadein 0.5s;
}
#pad-popup-content {
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border-radius: 18px;
    border: 1.5px solid #e5e7eb;
    padding: 2.5em 2.5em 2.5em 2.5em;
    min-width: 340px;
    max-width: 95vw;
    min-height: 120px;
    max-height: 90vh;
    overflow: auto;
    position: relative;
    font-size: 1.1em;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pad-popup-headline {
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.5em;
    color: #222;
    text-transform: uppercase;
}
.pad-popup-subheadline {
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 0.7em;
    color: #111;
    text-align: center;
    line-height: 1.1;
}
.pad-popup-supporting {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 1.5em;
    text-align: center;
}
.pad-popup-buttons {
    display: flex;
    gap: 1em;
    justify-content: center;
    margin-top: 2em;
    width: 100%;
}
.pad-popup-cta, .pad-popup-cta2 {
    padding: 1.1em 1.5em;
    font-size: 1.1em;
    font-weight: 700;
    border-radius: 6px;
    border: none;
    outline: none;
    cursor: pointer;
    min-width: 180px;
    text-align: center;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-decoration: none;
    display: inline-block;
}
.pad-popup-cta {
    background: #e53935;
    color: #fff;
}
.pad-popup-cta:hover {
    background: #b71c1c;
}
.pad-popup-cta2 {
    background: #e0e0e0;
    color: #222;
}
.pad-popup-cta2:hover {
    background: #bdbdbd;
}
@media (max-width: 600px) {
    #pad-popup {
        align-items: flex-end;
        padding: 0 0 2em 0;
    }
    #pad-popup-content {
        min-width: 0;
        width: 98vw !important;
        max-width: 98vw !important;
        padding: 1.2em 0.7em 1em 0.7em;
        font-size: 1em;
    }
    .pad-popup-headline {
        font-size: 1em;
    }
    .pad-popup-subheadline {
        font-size: 1.3em;
    }
    .pad-popup-cta, .pad-popup-cta2 {
        min-width: 100px;
        font-size: 1em;
        padding: 0.8em 0.7em;
    }
}
@keyframes pad-popup-fadein {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
} 