.small-img {
	max-width: 220px;
	width: 60%;
	margin: 0 auto 15px auto;
	display: block;
}
body {
	font-family: Arial, sans-serif;
	background: linear-gradient(135deg, #e0e7ff 0%, #b3e0ff 60%, #ece2be 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.97);
	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: linear-gradient(90deg, #e0f7fa 60%, #f1f5f9 100%);
	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;
	animation: fadeInSection 0.9s cubic-bezier(.5,1.8,.5,1);
}

.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);
	animation: popIn 0.7s cubic-bezier(.5,1.8,.5,1);
}

.img-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 2rem 0 1rem 0;
	animation: fadeInSection 0.9s cubic-bezier(.5,1.8,.5,1);
}

.responsive-img {
	max-width: 100%;
	width: 100%;
	border-radius: 12px;
	margin-bottom: 15px;
	box-shadow: 0 1px 6px rgba(0,0,0,0.07);
	transition: transform 0.3s, box-shadow 0.3s;
}
.responsive-img:hover {
	transform: scale(1.04);
	box-shadow: 0 4px 16px rgba(135,206,250,0.18);
}

.nc-proof {
	display: flex;
	flex-direction: column;
	align-items: center;
	animation: fadeInSection 0.9s cubic-bezier(.5,1.8,.5,1);
}

.caption {
	text-align: center;
	color: #2563eb;
	font-size: 1rem;
	margin-top: 0.5rem;
	margin-bottom: 1.5rem;
}

@keyframes fadeInBg {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes slideInUp {
	from { transform: translateY(60px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInSection {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
	0% { transform: scale(0.7); opacity: 0; }
	80% { transform: scale(1.1); opacity: 1; }
	100% { transform: scale(1); }
}

@media (max-width: 700px) {
	.container {
		padding: 0.7rem;
	}
	.responsive-img {
		max-width: 100vw;
	}
}
