/* Reset and basic layout */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: system-ui, sans-serif;
	background: linear-gradient(135deg, #1e1e2f, #2e2e4f);
	color: #f4f4f4;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.container {
	max-width: 800px;
	width: 90%;
	padding: 2rem;
	text-align: center;
}

header h1 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
}

header p {
	font-size: 1.2rem;
	color: #ccc;
	margin-bottom: 2rem;
}

.links {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.card {
	background: #282c34;
	padding: 1.2rem;
	border-radius: 10px;
	text-decoration: none;
	color: #f4f4f4;
	transition: transform 0.2s ease, background 0.3s ease;
	border: 1px solid #444;
}

.card:hover {
	transform: translateY(-5px);
	background: #3c4150;
}

footer {
	margin-top: 3rem;
	font-size: 0.9rem;
	color: #999;
}
