/* css/index.css */
.promo-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    border: 1px solid #000;
    padding: 20px;
    background-color: #fff;
    width: 80%;
    max-width: 350px;
    opacity: 0;
    transition: opacity 1s, transform 1s;
    z-index: 1000;
}

.close-popup {
    position: absolute;
    top: -15px;
    right: -15px;
    background: red;
    color: white;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-image {
    width: 100%;
    height: 350px;
}
