body {
	padding: 3rem 1.5rem;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background-color: #000000; /* Pure black background */
	color: #f3f4f6; /* Bright white/gray text */
	margin: 0;
}

.card {
	max-width: 600px;
	margin: 0 auto;
	padding: 24px;
	background: #0b0f19; /* Dark obsidian card background */
	border: 1px solid #1f2937; /* Muted gray-dark border */
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); 
}

.header-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

h1 {
	font-size: 24px;
	font-weight: 700;
	margin: 0;
	letter-spacing: -0.025em;
	color: #ffffff; 
}

.badge {
	background-color: #1e3a8a; /* Deep blue background */
	color: #dbeafe; /* Soft blue text */
	padding: 4px 10px;
	border-radius: 9999px;
	font-size: 12px;
	font-weight: 600;
	border: 1px solid #1d4ed8;
}

.description {
	color: #9ca3af; 
	font-size: 15px;
	line-height: 1.5;
	margin-top: 0;
	margin-bottom: 24px;
}

.stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 24px;
}

.stat-box {
	background-color: #111827; 
	border: 1px solid #1f2937; 
	padding: 14px;
	border-radius: 12px;
}

.stat-label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #94a3b8; 
	margin-bottom: 4px;
	font-weight: 600;
}

.stat-value {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #38bdf8; /* Neon-blue highlight */
}

.info-section {
	border-top: 1px solid #1f2937; 
	padding-top: 16px;
	margin-bottom: 24px;
}

.info-section p {
	font-size: 14px;
	color: #9ca3af;
	line-height: 1.5;
	margin: 0;
}

.footer-links {
	display: flex;
	gap: 12px;
}

.btn {
	flex: 1;
	text-align: center;
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 8px;
	background-color: #2563eb; 
	color: #ffffff;
	transition: background-color 0.2s;
}

.btn:hover {
	background-color: #1d4ed8;
}
