#promo-popup-overlay {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#popup-link {
    text-decoration: none;
}

#promo-popup {
    position: relative;
    background: #fff;
    max-width: 100%;
    box-shadow: 0px 0px 30px 0px rgba(2, 2, 2, 1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#promo-popup-content {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

#promo-popup-image {
    display: block;
    width: 100%;
    height: auto;
}

.promo-button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
}

.promo-close {
    position: absolute;
    top: -16px;
    right: -16px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: 2px solid white;
    z-index: 2;
}