.mpresentocard-body {
	margin: 0;
	padding: 0;
	background: #f4f6f8;
	font-family: Arial, Helvetica, sans-serif;
	color: #1f2937;
}

.mpresentocard-public-card,
.mpresentocard-state-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 16px;
	box-sizing: border-box;
}

.mpresentocard-card-inner,
.mpresentocard-state-card {
	width: 100%;
	max-width: 560px;
	background: #ffffff;
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	padding: 32px 24px;
	box-sizing: border-box;
}

.mpresentocard-card-header {
	text-align: center;
	margin-bottom: 24px;
}

.mpresentocard-card-title,
.mpresentocard-state-title {
	margin: 0 0 12px;
	font-size: 36px;
	line-height: 1.1;
	font-weight: 700;
	color: #111827;
}

.mpresentocard-card-description,
.mpresentocard-state-message {
	font-size: 16px;
	line-height: 1.6;
	color: #4b5563;
}

.mpresentocard-card-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.mpresentocard-section-bio .mpresentocard-bio {
	font-size: 16px;
	line-height: 1.7;
	color: #1f2937;
	text-align: center;
}

.mpresentocard-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mpresentocard-link-item {
	margin: 0;
}

.mpresentocard-link-item a {
	display: block;
	width: 100%;
	text-align: center;
	text-decoration: none;
	background: #111827;
	color: #ffffff;
	padding: 14px 18px;
	border-radius: 12px;
	font-weight: 600;
	transition: transform 0.2s ease, opacity 0.2s ease;
	box-sizing: border-box;
}

.mpresentocard-link-item a:hover {
	transform: translateY(-1px);
	opacity: 0.92;
}

.mpresentocard-not-found .mpresentocard-state-card,
.mpresentocard-paused .mpresentocard-state-card {
	text-align: center;
}

@media (max-width: 640px) {
	.mpresentocard-card-inner,
	.mpresentocard-state-card {
		padding: 24px 18px;
		border-radius: 14px;
	}

	.mpresentocard-card-title,
	.mpresentocard-state-title {
		font-size: 30px;
	}
}