/* Overlay gelap + blur */
#popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	z-index: 9998;
	display: none;
}

/* Popup transparan */
#popup-box {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	background: transparent;
	padding: 0;
	z-index: 9999;
	display: none;
	max-width: 90%;
	max-height: 90%;
	animation: popupBounce 0.7s ease-out forwards;
}

/* Gambar */
#popup-box img {
	max-width: 100%;
	max-height: 80vh;
	display: block;
}

/* ANIMASI: Zoom → Bounce → Stop */
@keyframes popupBounce {
	0% {
		transform: translate(-50%, -50%) scale(0);
		opacity: 0;
	}
	60% {
		transform: translate(-50%, -50%) scale(1.1);
		opacity: 1;
	}
	80% {
		transform: translate(-50%, -50%) scale(0.95);
	}
	100% {
		transform: translate(-50%, -50%) scale(1);
	}
}
