.ez-popup {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.ez-popup-content {
    background: #fff;
    width: 340px;
    margin: 8% auto;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    position: relative;
    animation: ezFadeIn 0.4s ease;
}

.ez-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
}

.ez-text {
    font-size: 14px;
    margin-bottom: 15px;
    color: #555;
}

.ez-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.ez-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 10px 20px;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

.ez-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 18px;
}

@keyframes ezFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}