.vt-cam-guard {
	position: relative;
	box-sizing: border-box;
	width: min(94vw, 665px);
	max-width: 665px;
	margin: 12px auto;
	padding: 14px 12px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	color: #0f172a;
	text-align: center;
}

.vt-cam-guard__backdrop {
	position: fixed;
	inset: 0;
	background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.08), transparent 35%), radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.08), transparent 35%);
	backdrop-filter: blur(50px);
	z-index: 0;
	pointer-events: none;
}

.vt-cam-card {
	position: relative;
	z-index: 1;
	--vt-cam-tone-1: #2563eb;
	--vt-cam-tone-2: #3b82f6;
	--vt-cam-tone-ring: rgba(59, 130, 246, 0.55);
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	padding: 20px 16px 18px 16px;
	box-shadow: 0 18px 55px rgba(15, 23, 42, 0.12);
	overflow: hidden;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
	max-width: 665px;
	width: 100%;
	margin: 0 auto;
}

.vt-cam-card,
.vt-cam-card * {
	box-sizing: border-box;
}

.vt-cam-card__glass {
	position: absolute;
	inset: 0;
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(99, 102, 241, 0.1));
	opacity: 0.6;
	pointer-events: none;
}

.vt-cam-card h1,
.vt-cam-card h2,
.vt-cam-card h3,
.vt-cam-card h4,
.vt-cam-card h5,
.vt-cam-card h6 {
	color: #0f172a !important;
	margin: 0 0 10px 0;
	line-height: 1.3;
	font-weight: 700;
}

.vt-cam-card__orbs::before,
.vt-cam-card__orbs::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	filter: blur(40px);
	opacity: 0.2;
}

.vt-cam-card__orbs::before {
	width: 120px;
	height: 120px;
	top: -40px;
	right: -24px;
	background: linear-gradient(135deg, var(--vt-cam-tone-1, rgba(59, 130, 246, 0.6)), var(--vt-cam-tone-2, rgba(99, 102, 241, 0.4)));
	opacity: 0.25;
}

.vt-cam-card__orbs::after {
	width: 110px;
	height: 110px;
	bottom: -50px;
	left: -24px;
	background: linear-gradient(135deg, var(--vt-cam-tone-2, rgba(236, 72, 153, 0.6)), var(--vt-cam-tone-1, rgba(59, 130, 246, 0.4)));
	opacity: 0.18;
}

.vt-cam-card__icon-ring {
	margin: 0 auto 16px auto;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	position: relative;
	background: linear-gradient(135deg, #3b82f6, #6366f1);
	box-shadow: 0 10px 30px rgba(59, 130, 246, 0.25);
}

.vt-cam-card__icon-ring::after {
	content: "";
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	border: 2px solid var(--vt-cam-tone-ring, rgba(59, 130, 246, 0.5));
	animation: vtCamPulse 2.2s ease-out infinite;
	opacity: 0.35;
}

.vt-cam-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	font-size: 24px;
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
	background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.vt-cam-card__icon-img {
	width: 80% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: contain !important;
	display: block;
}

.vt-cam-card__title {
	margin: 0 0 10px 0;
	font-size: 18px;
	font-weight: 700;
	color: #0f172a !important;
}

.vt-cam-card__body {
	margin: 0 0 20px 0;
	font-size: 13px !important;
	line-height: 20px !important;
	color: #334155 !important;
}

.vt-cam-card__body p {
	margin: 0 0 20px 0 !important;
	font-size: 13px !important;
	line-height: 20px !important;
	color: #334155 !important;
}

.vt-cam-card__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: stretch;
	width: 100%;
	max-width: 460px;
	margin: 0 auto;
	padding: 0 4px;
}

.vt-cam-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	padding: 12px 18px;
	border-radius: 12px;
	font-weight: 600;
	transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
	min-width: 0;
	width: 100%;
	border: 0;
}

.vt-cam-btn--primary {
	color: #ffffff !important;
	background: linear-gradient(135deg, var(--vt-cam-tone-1, #2563eb), var(--vt-cam-tone-2, #3b82f6));
	box-shadow: 0 12px 30px rgba(59, 130, 246, 0.35) !important;
}

.vt-cam-btn--ghost {
	color: #475569;
	font-size: 13px;
	padding: 8px 12px;
}

.vt-cam-btn--primary:hover {
	transform: scale(1.02);
	box-shadow: 0 14px 34px rgba(59, 130, 246, 0.4);
}

.vt-cam-btn--primary:active {
	transform: scale(0.98);
}

.vt-cam-btn__icon {
	font-size: 14px;
}

.vt-cam-card--tone-login .vt-cam-card__icon {
	--vt-cam-tone-1: #3b82f6;
	--vt-cam-tone-2: #6366f1;
	--vt-cam-tone-ring: rgba(59, 130, 246, 0.55);
	background: linear-gradient(135deg, var(--vt-cam-tone-1), var(--vt-cam-tone-2));
}

.vt-cam-card--tone-login .vt-cam-btn--tone-login {
	background: linear-gradient(135deg, var(--vt-cam-tone-1), var(--vt-cam-tone-2));
}

.vt-cam-card--tone-login {
	--vt-cam-tone-1: #3b82f6;
	--vt-cam-tone-2: #6366f1;
	--vt-cam-tone-ring: rgba(59, 130, 246, 0.55);
}

.vt-cam-card--tone-verify {
	--vt-cam-tone-1: #f59e0b;
	--vt-cam-tone-2: #f97316;
	--vt-cam-tone-ring: rgba(249, 115, 22, 0.55);
}

.vt-cam-card--tone-verify .vt-cam-card__icon {
	background: linear-gradient(135deg, var(--vt-cam-tone-1), var(--vt-cam-tone-2));
}

.vt-cam-card--tone-verify .vt-cam-btn--tone-verify {
	background: linear-gradient(135deg, var(--vt-cam-tone-1), var(--vt-cam-tone-2));
	box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
}

.vt-cam-card--tone-verify .vt-cam-btn--tone-verify {
	background: linear-gradient(135deg, #f59e0b, #f97316);
	color: #ffffff;
	box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
	border: 0;
}

.vt-cam-card--tone-premium {
	--vt-cam-tone-1: #9333ea;
	--vt-cam-tone-2: #ec4899;
	--vt-cam-tone-ring: rgba(147, 51, 234, 0.55);
}

.vt-cam-card--tone-premium .vt-cam-card__icon {
	background: linear-gradient(135deg, var(--vt-cam-tone-1), var(--vt-cam-tone-2));
}

.vt-cam-card--tone-premium .vt-cam-btn--tone-premium {
	background: linear-gradient(135deg, var(--vt-cam-tone-1), var(--vt-cam-tone-2));
	box-shadow: 0 12px 30px rgba(147, 51, 234, 0.35);
}

.vt-cam-card--tone-default {
	--vt-cam-tone-1: #334155;
	--vt-cam-tone-2: #0f172a;
	--vt-cam-tone-ring: rgba(51, 65, 85, 0.55);
}

.vt-cam-card--tone-default .vt-cam-card__icon {
	background: linear-gradient(135deg, var(--vt-cam-tone-1), var(--vt-cam-tone-2));
}

.vt-cam-card--tone-default .vt-cam-btn--tone-default {
	background: linear-gradient(135deg, var(--vt-cam-tone-1), var(--vt-cam-tone-2));
	box-shadow: 0 12px 30px rgba(51, 65, 85, 0.35);
}

@keyframes vtCamPulse {
	0% { transform: scale(1); opacity: 0.35; }
	70% { transform: scale(1.25); opacity: 0; }
	100% { transform: scale(1.25); opacity: 0; }
}

@media (max-width: 480px) {
	.vt-cam-guard {
		width: min(94vw, 520px);
		margin: 8px auto;
		padding: 12px 10px;
	}

	.vt-cam-card__orbs::before,
	.vt-cam-card__orbs::after {
		display: none;
	}

	.vt-cam-card__orbs::before {
		width: 120px;
		height: 120px;
		top: -40px;
		right: -24px;
	}
	.vt-cam-card__orbs::after {
		width: 110px;
		height: 110px;
		bottom: -40px;
		left: -24px;
	}

	.vt-cam-card {
		border-radius: 18px;
		padding: 16px 12px 14px 12px;
	}

	.vt-cam-card__title {
		font-size: 17px;
	}

	.vt-cam-card__body {
		font-size: 12px;
		line-height: 18px;
	}
}

@media (max-width: 360px) {
	.vt-cam-guard {
		width: 96vw;
		max-width: 480px;
		padding: 10px 8px;
	}

	.vt-cam-card {
		padding: 14px 10px 12px 10px;
	}

	.vt-cam-btn {
		padding: 10px 14px;
	}
}

@media (min-width: 768px) {
	.vt-cam-guard {
		margin: 32px auto;
		padding: 20px;
	}

	.vt-cam-card {
		padding: 28px 24px 24px 24px;
	}

	.vt-cam-btn {
		min-width: 240px;
		width: auto;
	}

	.vt-cam-card__icon-ring {
		width: 72px;
		height: 72px;
	}

	.vt-cam-card__icon {
		width: 64px;
		height: 64px;
		font-size: 26px;
	}
}
