.animated-border-wrapper {
	font-family:
		system-ui,
		-apple-system,
		sans-serif;
	padding: 40px 20px;
	display: flex;
	justify-content: center;
}

.animated-card {
	position: relative;
	width: 100%;
	max-width: 450px;
	border-radius: 16px;
	padding: 2px;
	background: #e5e7eb;
	overflow: hidden;
	display: flex;
}

.animated-card::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(transparent,
			transparent,
			transparent,
			#6366f1,
			#10b981,
			transparent);
	animation: borderSpin 4s linear infinite;
}

@keyframes borderSpin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.animated-card-inner {
	position: relative;
	background: #ffffff;
	border-radius: 14px;
	padding: 32px;
	z-index: 1;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.animated-tag {
	font-size: 11px;
	font-weight: 700;
	color: #6366f1;
	letter-spacing: 1px;
	display: block;
	margin-bottom: 12px;
}

.animated-card-inner h3 {
	font-size: 20px;
	margin: 0 0 12px 0;
	color: #0f172a;
}

.animated-card-inner p {
	font-size: 14px;
	color: #64748b;
	margin: 0;
	line-height: 1.6;
}