body {
	margin: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.container {
	text-align: center;
	background: rgba(255, 255, 255, 0.08);
	padding: 50px;
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	max-width: 600px;
}

h1 {
	font-size: 2.8rem;
	margin-bottom: 10px;
}

h2 {
	font-weight: 300;
	font-size: 1.4rem;
	margin-bottom: 30px;
	color: #d1d5db;
}

p {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 40px;
}

.btn {
	text-decoration: none;
	padding: 15px 35px;
	border-radius: 30px;
	background: #38bdf8;
	color: #0f172a;
	font-weight: bold;
	transition: transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 10px 20px rgba(56, 189, 248, 0.4);
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(56, 189, 248, 0.6);
}

footer {
	margin-top: 30px;
	font-size: 0.9rem;
	color: #9ca3af;
}