.mobile-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;

	display: flex;
	justify-content: center;
	align-items: center;

	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(8px);

	width: 100dvw;
	height: 100dvh;

	overflow-x: hidden;
	overflow-y: auto;
	padding: 1rem;
	box-sizing: border-box;
	touch-action: none;
}

.modal-inner {
	width: 100%;
	max-width: 400px;
	padding: 20px;
	box-sizing: border-box;
	text-align: center;
}

.modal-inner h1 {
	margin: 0 0 1rem;
}

.modal-inner h2 {
	color: var(--text-color-emphasis);
	filter: brightness(1.5);
	margin: 0 0 1rem;
}

.modal-inner p {
	font-size: 0.95rem;
	margin-bottom: 0.75rem;
	line-height: 1.5;
}
