position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.7);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}
.popup-content {
position: relative;
max-width: 400px;
width: 90%;
animation: popupFade 0.4s ease;
}
.popup-image {
width: 100%;
border-radius: 12px;
}
.close-btn {
position: absolute;
top: -10px;
right: -10px;
background: #fff;
color: #000;
font-size: 22px;
font-weight: bold;
width: 30px;
height: 30px;
text-align: center;
line-height: 30px;
border-radius: 50%;
cursor: pointer;
}
@keyframes popupFade {
from {
transform: scale(0.8);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}