*,
::before,
::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	min-width: 320px;
	margin: 0;
	color: #f0f0f0;
	background-color: #202124;
	font-size: 16px;
	font-family: 'Segoe UI', sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	overflow: hidden;
}

.container {
	width: 90%;
	max-width: 900px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(15px);
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	text-align: center;
}

h1 {
	color: #ffffff;
	font-size: 2rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

hr {
	border: none;
	height: 1px;
	background: linear-gradient(90deg, transparent, #888, transparent);
	margin: 1.5rem 0;
}

a {
	color: #4dabf7;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

a:hover {
	color: #1e90ff;
}

pre {
	background: rgba(255, 255, 255, 0.15);
	padding: 1rem;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.6;
	overflow-x: auto;
	color: #e0e0e0;
}

.button {
	display: inline-block;
	padding: 0.8rem 1.5rem;
	border-radius: 12px;
	background: linear-gradient(135deg, #0078D4, #005a9e);
	color: #ffffff;
	font-size: 1rem;
	font-weight: bold;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.1s ease;
	border: none;
	outline: none;
}

.button:hover {
	background: linear-gradient(135deg, #005a9e, #003e72);
	transform: scale(1.05);
}
