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

body {
	width: 100%;
	height: 100dvh;
	background: #8cace8;
	background: linear-gradient(180deg, rgba(140, 172, 232, 1) 0%, rgba(173, 151, 192, 1) 100%);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.card {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 260px;
	padding: 20px 24px;
	border-radius: 16px;
	will-change: left, top;
	cursor: grab;
	user-select: none;
	box-shadow: 0 6px 10px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(148, 163, 184, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.5);
	background-color: rgba(255, 255, 255, 0.4);
}

.card h1 {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 6px;
}

.card p {
	font-size: 13px;
	opacity: 0.8;
	line-height: 1.5;
}
