.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1E1405CC;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* above everything */
}
.overlay .popup {
    background: white;
    padding: 5px 30px 20px 30px;
    border-radius: 16px;
    max-width: 528px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.overlay .popup img {
    width: 72px;
    height: 72px;
}
.overlay .popup span {
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.15px;
    text-align: center;
    color: #000000DE;
}
.overlay .popup a {
    width: auto;
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.4px;
    margin-top: 15px;
}
/* Extra small devices (phones) */
@media (max-width: 767px) {
    .overlay .popup {
        padding: 0px 10px 10px 10px;
        gap: 5px;
        max-width: 200px;
    }
    .overlay .popup img {
        width: 52px;
        height: 52px;
    }
    .overlay .popup span,
    .overlay .popup a {
        font-size: 12px;
    }
}
/* Medium devices (tablets) */
@media (min-width: 768px) and (max-width: 991px) {
    .overlay .popup {
        padding: 0px 15px 10px 15px;
        gap: 10px;
        max-width: 380px;
    }
    .overlay .popup img {
        width: 52px;
        height: 52px;
    }
    .overlay .popup span,
    .overlay .popup a {
        font-size: 14px;
    }
}
/* Large devices (desktops) */
@media (min-width: 992px) and (max-width: 1400px) {
    .overlay .popup {
        padding: 5px 20px 20px 20px;
        gap: 10px;
        max-width: 450px;
    }
    .overlay .popup img {
        width: 62px;
        height: 62px;
    }
    .overlay .popup span,
    .overlay .popup a {
        font-size: 14px;
    }
}