:root {
	--bg: #0f1115;
	--card: #171a21;
	--border: #262b36;
	--text: #e8eaf0;
	--muted: #9aa3b2;
	--accent: #4f8cff;
}

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

html {
	height: 100%;
}

body {
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(1200px 600px at 50% -10%, #1a2030 0%, var(--bg) 60%);
	color: var(--text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	padding: 24px;
}

.card {
	width: 100%;
	max-width: 440px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 48px 40px;
	text-align: center;
	box-shadow: 0 24px 64px rgb(0 0 0 / 0.4);
}

.mark {
	width: 64px;
	height: 64px;
	margin: 0 auto 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--accent) 0%, #7b5cff 100%);
	color: #fff;
	font-size: 32px;
	font-weight: 700;
}

h1 {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.status {
	margin-top: 8px;
	color: var(--accent);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.tagline {
	margin-top: 20px;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.7;
}

.visit {
	margin-top: 28px;
	color: var(--text);
	font-size: 14px;
	line-height: 1.7;
}

.rule {
	margin: 32px auto 0;
	width: 48px;
	height: 3px;
	border-radius: 2px;
	background: var(--border);
}

.checkback {
	margin-top: 16px;
	color: var(--text);
	font-size: 15px;
	font-weight: 600;
}

/* --- little digging workman --- */

.digger {
	display: block;
	width: 160px;
	margin: 28px auto 0;
}

.shovel-arm {
	transform-origin: 96px 69px;
	animation: dig 1.6s ease-in-out infinite;
}

@keyframes dig {
	0%,
	100% {
		transform: rotate(-32deg);
	}
	45% {
		transform: rotate(34deg);
	}
	60% {
		transform: rotate(24deg);
	}
}

.man {
	animation: bob 1.6s ease-in-out infinite;
}

@keyframes bob {
	0%,
	100% {
		transform: translateY(0);
	}
	45% {
		transform: translateY(3px);
	}
	60% {
		transform: translateY(1px);
	}
}

.hole {
	transform-origin: 158px 104px;
	animation: dig-hole 4.8s ease-in-out infinite;
}

@keyframes dig-hole {
	0% {
		transform: scale(0.5);
	}
	80% {
		transform: scale(1.15);
	}
	100% {
		transform: scale(0.5);
	}
}

.pile {
	transform-origin: 178px 104px;
	animation: pile-grow 4.8s ease-in-out infinite;
}

.pile-2 {
	transform-origin: 170px 105px;
}

@keyframes pile-grow {
	0% {
		transform: scale(0.4);
	}
	80% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(0.4);
	}
}

.puff {
	opacity: 0;
}

.puff-1 {
	animation: puff 1.6s ease-out infinite;
}

.puff-2 {
	animation: puff 1.6s ease-out 0.15s infinite;
}

.puff-3 {
	animation: puff 1.6s ease-out 0.3s infinite;
}

@keyframes puff {
	0%,
	28% {
		opacity: 0;
		transform: translate(0, 0);
	}
	45% {
		opacity: 0.9;
	}
	75% {
		opacity: 0;
		transform: translate(-10px, -10px);
	}
	100% {
		opacity: 0;
	}
}

/* --- info sections --- */

.info {
	margin-top: 24px;
	display: grid;
	gap: 24px;
	text-align: left;
}

.info-block {
	background: rgb(255 255 255 / 0.03);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 18px 20px;
}

.info-block h2 {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--accent);
	margin-bottom: 8px;
}

.info-block p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7;
}

.info-block .address {
	color: var(--text);
}

.info-block .help {
	margin-top: 10px;
	font-weight: 600;
	color: var(--text);
}

.info-block a {
	color: var(--accent);
	text-decoration: none;
}

.info-block a:hover {
	text-decoration: underline;
}

@media (max-width: 480px) {
	.card {
		padding: 36px 24px;
	}
}
