body {
	font-family: Arial, sans-serif;
	background: linear-gradient(135deg, #e0e7ff 0%, #b3e0ff 100%);
	color: #1e293b;
	margin: 0;
	min-height: 100vh;
	animation: fadeInBg 1.2s ease;
}

.container {
	max-width: 800px;
	margin: 2.5rem auto;
	background: rgba(255,255,255,0.95);
	border-radius: 18px;
	box-shadow: 0 8px 32px rgba(135,206,250,0.10);
	padding: 2rem 1.5rem;
	animation: slideInUp 1.1s cubic-bezier(.5,1.8,.5,1);
}

h1, h2 {
	color: #1e293b;
	text-align: center;
}

.box {
	background: #f1f5f9;
	border: 1px solid #b3e0ff;
	border-radius: 10px;
	padding: 1.2rem 1.5rem;
	margin: 1.5rem 0;
	box-shadow: 0 2px 8px rgba(135,206,250,0.08);
	font-size: 1.08rem;
}

.highlight {
	color: #b91c1c;
	font-weight: bold;
	font-size: 1.25rem;
	background: #fee2e2;
	border-radius: 8px;
	padding: 0.4em 1em;
	display: inline-block;
	box-shadow: 0 2px 8px rgba(255,0,0,0.08);
}

.img-row {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	margin: 2rem 0 1rem 0;
}

.responsive-img {
	max-width: 200px;
	width: 100%;
	border-radius: 12px;
	margin: 0 0.5rem;
	box-shadow: 0 1px 6px rgba(0,0,0,0.07);
	cursor: pointer;
	transition: transform 0.2s;
}
.responsive-img:hover {
	transform: scale(1.06);
	box-shadow: 0 4px 16px rgba(135,206,250,0.18);
}

.img-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	overflow: auto;
	background: rgba(0,0,0,0.7);
	align-items: center;
	justify-content: center;
}
.img-modal-content {
	margin: auto;
	display: block;
	max-width: 90vw;
	max-height: 80vh;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.25);
	animation: popIn 0.5s cubic-bezier(.5,1.8,.5,1);
}
.img-modal-close {
	position: absolute;
	top: 2.5vh;
	right: 4vw;
	color: #fff;
	font-size: 2.5rem;
	font-weight: bold;
	cursor: pointer;
	text-shadow: 0 2px 8px #000;
	z-index: 10000;
}

@keyframes fadeInBg {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes slideInUp {
	from { transform: translateY(60px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}
@keyframes popIn {
	0% { transform: scale(0.7); opacity: 0; }
	80% { transform: scale(1.1); opacity: 1; }
	100% { transform: scale(1); }
}

@media (max-width: 600px) {
	.container {
		padding: 0.7rem;
	}
	.img-row {
		gap: 0.5rem;
	}
	.responsive-img {
		max-width: 120px;
	}
}
