* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle at top, #1e293b, #020617);
	color: #e5e7eb;
}

.home-container {
	text-align: center;
	padding: 2.5rem 2rem;
	border-radius: 1rem;
	background: rgba(15, 23, 42, 0.9);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.home-container h1 {
	font-size: 2.2rem;
	margin-bottom: 0.75rem;
}

.home-container p {
	margin-bottom: 1.75rem;
	color: #9ca3af;
}

.button-row {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.button-row .btn {
	padding: 0.75rem 1.5rem;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	color: #0f172a;
	background: linear-gradient(135deg, #22c55e, #a3e635);
	transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
	box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.button-row .btn:nth-child(2) {
	background: linear-gradient(135deg, #38bdf8, #6366f1);
	box-shadow: 0 10px 25px rgba(59, 130, 246, 0.45);
}

.links-label {
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.button-row.secondary .btn {
	background: rgba(15, 23, 42, 0.9);
	color: #e5e7eb;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.7);
}

.button-row.secondary .btn:hover {
	filter: brightness(1.15);
}

.button-row .btn:hover {
	transform: translateY(-2px);
	filter: brightness(1.05);
}

.button-row .btn:active {
	transform: translateY(0);
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.7);
}

@media (max-width: 480px) {
	.home-container {
		width: 100%;
		margin: 0 1rem;
		padding-inline: 1.5rem;
	}

	.home-container h1 {
		font-size: 1.8rem;
	}
}

