/* Reset & base */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	background: linear-gradient(135deg, #575cba, #666acaf2);
	background-size: cover;
}
body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	min-height: 100vh;
	color: #f8fafc;
	display: flex;
	justify-content: center;
	align-items: center;
}

.intro {
	height: 100%;
	width: 100%;
	max-width: 96rem;
	padding: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.intro-content {
	margin: 0 4rem 0 4rem;
	width: 100%;
}

.intro-content h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.intro-content p {
	font-size: 1.2rem;
	margin-bottom: 0.8rem;
}

.intro-content .highlight {
	font-size: 1.4rem;
	font-weight: bold;
	color: #ffffff;
	text-shadow: 1px 1px 2px #333;
}

.intro-content img {
	width: 100%;
	max-height: 70%;
	object-fit: contain;
	margin: 2rem auto;
	display: block;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.footer {
	margin-top: 2rem;
	font-size: 1rem;
	opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
	.intro-content h1 {
		font-size: 2rem;
	}
	.intro-content img {
		width: 80%;
	}
}
