/* ==========================================================================
   ATVMB Newsletter - Public & Popup Styles (Premium Salient Branding Edition)
   ========================================================================== */

:root {
	--atvmb-primary: #002df3;
	/* Premium Electric Royal Blue */
	--atvmb-primary-hover: #ff4500;
	/* Orangey-Red Accent to match rotating text */
	--atvmb-success: #10b981;
	/* Emerald Green Success */
	--atvmb-error: #ff4d4d;
	/* High-Contrast Soft Red */
	--atvmb-dark-bg: rgba(9, 13, 26, 0.94);
	/* Elegant dark slate-blue glass overlay */
	--atvmb-border-radius: 12px;
	--atvmb-transition: all 0.22s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Prevent scroll on body when popup is active */
body.atvmb-no-scroll {
	overflow: hidden !important;
	position: relative;
	height: 100vh !important;
}

/* --- Common Unified Form Elements --- */
.atvmb-newsletter-container {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	width: 100%;
	max-width: 480px;
	box-sizing: border-box;
	text-align: left;
}

.atvmb-newsletter-container * {
	box-sizing: border-box;
}

.atvmb-newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.atvmb-form-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.atvmb-form-field label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	color: #475569;
	margin: 0;
}

.atvmb-context-popup .atvmb-form-field label {
	color: #94a3b8;
	/* Refined label shade for dark popups */
}

.atvmb-form-field label .required {
	color: var(--atvmb-error);
	margin-left: 2px;
}

.atvmb-form-field label .optional {
	font-size: 11px;
	font-weight: 400;
	color: #64748b;
	text-transform: none;
	margin-left: 4px;
}

.atvmb-form-field input[type="text"],
.atvmb-form-field input[type="email"],
.atvmb-form-field input[type="tel"] {
	width: 100%;
	padding: 12px 16px;
	font-size: 14px;
	border: 1px solid #94a3b8;
	/* Thinner and darker border */
	border-radius: var(--atvmb-border-radius);
	background-color: #fff;
	color: #0f172a;
	transition: var(--atvmb-transition);
	outline: none;
}

.atvmb-context-popup .atvmb-form-field input[type="text"],
.atvmb-context-popup .atvmb-form-field input[type="email"],
.atvmb-context-popup .atvmb-form-field input[type="tel"] {
	background-color: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	/* Thinner and more muted dark-popup border */
	color: #f8fafc;
}

.atvmb-form-field input:focus {
	border-color: var(--atvmb-primary);
	box-shadow: 0 0 0 3px rgba(0, 45, 243, 0.12);
}

.atvmb-context-popup .atvmb-form-field input:focus {
	border-color: var(--atvmb-primary);
	background-color: rgba(255, 255, 255, 0.07);
	box-shadow: 0 0 0 3px rgba(0, 45, 243, 0.25);
}

/* --- Webkit Browser Autofill overrides to prevent jarring white/yellow background flashing --- */
.atvmb-context-popup .atvmb-form-field input:-webkit-autofill,
.atvmb-context-popup .atvmb-form-field input:-webkit-autofill:hover,
.atvmb-context-popup .atvmb-form-field input:-webkit-autofill:focus,
.atvmb-context-popup .atvmb-form-field input:-webkit-autofill:active {
	-webkit-text-fill-color: #f8fafc !important;
	-webkit-box-shadow: 0 0 0 1000px #111625 inset !important;
	/* Matches MAMP deep slate container */
	transition: background-color 5000000s ease-in-out 0s;
}

.atvmb-context-shortcode .atvmb-form-field input:-webkit-autofill,
.atvmb-context-shortcode .atvmb-form-field input:-webkit-autofill:hover,
.atvmb-context-shortcode .atvmb-form-field input:-webkit-autofill:focus,
.atvmb-context-shortcode .atvmb-form-field input:-webkit-autofill:active {
	-webkit-text-fill-color: #0f172a !important;
	-webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
	transition: background-color 5000000s ease-in-out 0s;
}

/* --- Input Placeholder Custom Styles (Dimmed) --- */
.atvmb-newsletter-container input::placeholder {
	color: rgba(71, 85, 105, 0.45) !important;
	opacity: 1 !important;
	/* Firefox override */
}

.atvmb-newsletter-container input:-ms-input-placeholder {
	color: rgba(71, 85, 105, 0.45) !important;
}

.atvmb-newsletter-container input::-ms-input-placeholder {
	color: rgba(71, 85, 105, 0.45) !important;
}

.atvmb-context-popup input::placeholder {
	color: rgba(248, 250, 252, 0.28) !important;
	/* High-end highly dimmed placeholder */
	opacity: 1 !important;
}

.atvmb-context-popup input:-ms-input-placeholder {
	color: rgba(248, 250, 252, 0.28) !important;
}

.atvmb-context-popup input::-ms-input-placeholder {
	color: rgba(248, 250, 252, 0.28) !important;
}

/* --- Custom Checkbox Layout --- */
.atvmb-checkbox-field {
	margin: 8px 0;
}

.atvmb-checkbox-label {
	display: flex;
	align-items: center;
	cursor: pointer;
	user-select: none;
	font-weight: 600 !important;
	color: #334155 !important;
}

.atvmb-context-popup .atvmb-checkbox-label,
.atvmb-context-popup .atvmb-checkbox-label .label-text {
	color: #cbd5e1 !important;
}

.atvmb-checkbox-label input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.atvmb-custom-checkbox {
	position: relative;
	height: 20px;
	width: 20px;
	background-color: #f1f5f9;
	border: 1.5px solid #94a3b8;
	border-radius: 6px;
	margin-right: 10px;
	flex-shrink: 0;
	transition: var(--atvmb-transition);
}

.atvmb-context-popup .atvmb-custom-checkbox {
	background-color: rgba(255, 255, 255, 0.04);
	border: 1.5px solid rgba(255, 255, 255, 0.38);
}

.atvmb-checkbox-label:hover input~.atvmb-custom-checkbox {
	border-color: var(--atvmb-primary);
}

.atvmb-checkbox-label input:checked~.atvmb-custom-checkbox {
	background-color: var(--atvmb-primary);
	border-color: var(--atvmb-primary);
	box-shadow: 0 2px 8px rgba(0, 45, 243, 0.25);
}

.atvmb-custom-checkbox:after {
	content: "";
	position: absolute;
	display: none;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.atvmb-checkbox-label input:checked~.atvmb-custom-checkbox:after {
	display: block;
}

.atvmb-checkbox-label .label-text {
	font-size: 13px;
	letter-spacing: 0.1px;
}

/* --- Submit Button & Loader --- */
.atvmb-submit-btn {
	width: 100% !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	box-sizing: border-box !important;
	padding: 13px 20px !important;
	background: linear-gradient(135deg, #001ec8 0%, #0037f3 100%) !important;
	/* Darker vibrant Cobalt Blue */
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.16) !important;
	border-radius: var(--atvmb-border-radius) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: 1.1px !important;
	text-transform: uppercase !important;
	cursor: pointer !important;
	gap: 10px !important;
	box-shadow: 0 4px 16px rgba(0, 45, 243, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
	/* Inset top highlight border */
	transition: all 0.24s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.atvmb-submit-btn:hover {
	background: linear-gradient(135deg, #00129a 0%, #0028d2 100%) !important;
	/* Deep Royal Sapphire */
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 24px rgba(0, 45, 243, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.28) !important;
}

.atvmb-submit-btn:active {
	transform: translateY(-0.5px) !important;
}

.atvmb-submit-btn:disabled {
	opacity: 0.7 !important;
	cursor: not-allowed !important;
	transform: none !important;
	box-shadow: none !important;
}

.btn-spinner {
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #fff;
	animation: atvmb-spin 0.8s linear infinite;
}

@keyframes atvmb-spin {
	to {
		transform: rotate(360deg);
	}
}

/* --- AJAX Status Messaging --- */
.atvmb-form-message {
	padding: 12px 16px;
	border-radius: var(--atvmb-border-radius);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	animation: atvmb-fade-in 0.3s ease;
}

.atvmb-form-message.success {
	background-color: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.2);
	color: var(--atvmb-success);
}

.atvmb-form-message.error {
	background-color: rgba(255, 77, 77, 0.1);
	border: 1px solid rgba(255, 77, 77, 0.2);
	color: var(--atvmb-error);
}

.atvmb-context-popup .atvmb-form-message.success {
	background-color: rgba(16, 185, 129, 0.15);
	border-color: rgba(16, 185, 129, 0.3);
}

.atvmb-context-popup .atvmb-form-message.error {
	background-color: rgba(255, 77, 77, 0.15);
	border-color: rgba(255, 77, 77, 0.3);
}

/* --- Premium Inline Field Error Styles --- */
.atvmb-field-error {
	color: var(--atvmb-error);
	font-size: 12px;
	font-weight: 600;
	margin-top: 6px;
	display: flex;
	align-items: center;
	gap: 6px;
	animation: atvmb-fade-in 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.atvmb-field-error::before {
	content: "⚠";
	font-size: 13px;
	line-height: 1;
}

.atvmb-context-popup .atvmb-field-error {
	color: #ff6666;
	/* High-contrast red for dark overlays */
}

input.atvmb-input-error {
	border-color: var(--atvmb-error) !important;
	box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.18) !important;
}

.atvmb-context-popup input.atvmb-input-error {
	border-color: #ff6666 !important;
	box-shadow: 0 0 0 3px rgba(255, 102, 102, 0.3) !important;
}

/* --- Shortcode In-Line Container Specific Styling (Outstanding Light Edition) --- */
.atvmb-context-shortcode {
	padding: 42px 36px;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08); /* Minimal subtle border */
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02); /* Minimal soft dark glow */
	margin: 0 auto; /* Removed offset margins to fix vertical column alignment */
	position: relative;
	overflow: hidden;
}

/* Subtle gradient accent bar at the top of the card */
.atvmb-context-shortcode::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #002df3 0%, #ff4500 100%);
}

.atvmb-context-shortcode .atvmb-form-field > label:not(.atvmb-checkbox-label) {
	display: none; /* Hide labels for input fields to make it compact */
}

.atvmb-shortcode-header {
	margin-bottom: 24px;
	text-align: center;
}

.atvmb-shortcode-title {
	font-size: 22px;
	font-weight: 850;
	letter-spacing: -0.6px;
	background: linear-gradient(135deg, #0f172a 30%, #002df3 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0;
}

/* Light theme input field styling overrides for embedded form */
.atvmb-context-shortcode .atvmb-form-field input[type="text"],
.atvmb-context-shortcode .atvmb-form-field input[type="email"],
.atvmb-context-shortcode .atvmb-form-field input[type="tel"] {
	background-color: #f8fafc !important;
	border: 1.5px solid #e2e8f0 !important;
	border-radius: 12px !important;
	padding: 13px 16px !important;
	font-size: 14px !important;
	color: #0f172a !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.atvmb-context-shortcode .atvmb-form-field input:focus {
	border-color: #002df3 !important;
	background-color: #ffffff !important;
	box-shadow: 0 0 0 4px rgba(0, 45, 243, 0.1) !important;
}

/* Custom Checkbox overrides for light embedded form */
.atvmb-context-shortcode .atvmb-checkbox-label,
.atvmb-context-shortcode .atvmb-checkbox-label .label-text {
	color: #334155 !important;
	font-weight: 600 !important;
}

.atvmb-context-shortcode .atvmb-custom-checkbox {
	background-color: #f8fafc !important;
	border: 1.5px solid #cbd5e1 !important;
	border-radius: 6px !important;
}

.atvmb-context-shortcode .atvmb-checkbox-label:hover input ~ .atvmb-custom-checkbox {
	border-color: #002df3 !important;
}

.atvmb-context-shortcode .atvmb-checkbox-label input:checked ~ .atvmb-custom-checkbox {
	background-color: #002df3 !important;
	border-color: #002df3 !important;
	box-shadow: 0 2px 8px rgba(0, 45, 243, 0.2) !important;
}

/* Submit Button overrides for light embedded form */
.atvmb-context-shortcode .atvmb-submit-btn {
	padding: 14px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: 0.5px !important;
	text-transform: none !important;
	border-radius: 12px !important;
	background: linear-gradient(135deg, #002df3 0%, #4f46e5 100%) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	box-shadow: 0 4px 14px rgba(0, 45, 243, 0.25) !important;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.atvmb-context-shortcode .atvmb-submit-btn:hover {
	background: linear-gradient(135deg, #ff4500 0%, #ff6a00 100%) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 20px rgba(255, 69, 0, 0.35) !important;
}

/* --- Popup Overlay & Compact Glassmorphic Modal --- */
.atvmb-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(8, 10, 24, 0.94);
	/* Deep elegant slate overlay to preserve contrast without lag-inducing blur filters */
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	will-change: opacity;
	transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.atvmb-popup-overlay.show {
	opacity: 1;
}

.atvmb-popup-modal {
	background: linear-gradient(145deg, rgba(20, 27, 47, 0.88) 0%, rgba(10, 14, 28, 0.96) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	/* Crisp elegant boundary line */
	box-shadow:
		0 30px 60px -15px rgba(0, 0, 0, 0.6),
		0 0 50px -10px rgba(0, 45, 243, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	/* Top border highlight */
	border-radius: 24px;
	width: 100%;
	max-width: 440px;
	padding: 32px 30px;
	/* Sophisticated breathing room */
	position: relative;
	display: flex;
	flex-direction: column;
	max-height: calc(100vh - 40px);
	transform: scale(0.93) translateY(20px);
	opacity: 0;
	will-change: transform, opacity;
	backface-visibility: hidden;
	transform-style: preserve-3d;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	color: #f8fafc;
	box-sizing: border-box;
}

.atvmb-popup-overlay.show .atvmb-popup-modal {
	transform: scale(1) translateY(0);
	opacity: 1;
}

.atvmb-popup-body {
	overflow-y: auto;
	max-height: 100%;
	-webkit-overflow-scrolling: touch;
	padding-right: 4px;
}

/* Custom Scrollbar for the popup body if it overflows on short screens */
.atvmb-popup-body::-webkit-scrollbar {
	width: 4px;
}

.atvmb-popup-body::-webkit-scrollbar-track {
	background: transparent;
}

.atvmb-popup-body::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 2px;
}

/* --- Compact Popup Elements Override --- */
.atvmb-context-popup .atvmb-newsletter-form {
	gap: 16px;
}

.atvmb-context-popup .atvmb-form-field {
	gap: 6px;
}

.atvmb-context-popup .atvmb-form-field label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.8px;
	margin-bottom: 2px;
	color: #cbd5e1;
}

.atvmb-context-popup .atvmb-form-field input[type="text"],
.atvmb-context-popup .atvmb-form-field input[type="email"],
.atvmb-context-popup .atvmb-form-field input[type="tel"] {
	padding: 12px 14px;
	font-size: 14px;
	border-radius: 12px;
	background-color: rgba(15, 23, 42, 0.6) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	color: #f8fafc !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-appearance: none;
}

.atvmb-context-popup .atvmb-form-field input:focus {
	border-color: #3b82f6 !important;
	background-color: rgba(15, 23, 42, 0.8) !important;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18) !important;
}

.atvmb-context-popup .atvmb-checkbox-field {
	margin: 6px 0 8px 0;
}

.atvmb-context-popup .atvmb-custom-checkbox {
	height: 20px;
	width: 20px;
	border-radius: 6px;
	background-color: rgba(15, 23, 42, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.atvmb-context-popup .atvmb-checkbox-label:hover input~.atvmb-custom-checkbox {
	border-color: #3b82f6;
}

.atvmb-context-popup .atvmb-checkbox-label input:checked~.atvmb-custom-checkbox {
	background-color: #3b82f6;
	border-color: #3b82f6;
	box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.atvmb-context-popup .atvmb-custom-checkbox:after {
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
}

.atvmb-context-popup .atvmb-submit-btn {
	padding: 14px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: 0.5px !important;
	text-transform: none !important;
	/* Elegant sentence case or minimal letter spacing */
	border-radius: 12px !important;
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	box-shadow: 0 4px 20px rgba(29, 78, 216, 0.3) !important;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.atvmb-context-popup .atvmb-submit-btn:hover {
	background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 30px rgba(29, 78, 216, 0.45) !important;
}

.atvmb-context-popup .atvmb-form-message {
	padding: 12px 14px;
	font-size: 14px;
	border-radius: 12px;
}

/* --- Close Button --- */
.atvmb-popup-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #94a3b8;
	font-size: 18px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	width: 32px;
	height: 32px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	z-index: 10;
}

.atvmb-popup-close:hover {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}

/* --- Popup Header Content --- */
.atvmb-popup-header {
	text-align: left;
	margin-bottom: 20px;
	padding-right: 36px;
	/* Leave space for close button */
}

.atvmb-popup-title-container {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

@keyframes atvmb-emoji-float {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-4px);
	}

	100% {
		transform: translateY(0px);
	}
}

.atvmb-popup-emoji-icon {
	font-size: 24px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(59, 130, 246, 0.12);
	border: 1px solid rgba(59, 130, 246, 0.25);
	border-radius: 12px;
	padding: 8px;
	box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
	animation: atvmb-emoji-float 4s ease-in-out infinite;
	will-change: transform;
}

.atvmb-popup-header h2 {
	font-size: 22px;
	font-weight: 800;
	margin: 0;
	letter-spacing: -0.5px;
	background: linear-gradient(135deg, #ffffff 30%, #bfdbfe 80%, #93c5fd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.2;
}

.atvmb-popup-header p {
	font-size: 14px;
	color: #94a3b8;
	line-height: 1.5;
	font-weight: 400;
	margin: 0;
}

/* Beautiful fading line separator between header and fields */
.atvmb-popup-header-divider {
	height: 1px;
	width: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
	margin-top: 18px;
	border: none;
}

/* --- Fade In Entrance --- */
@keyframes atvmb-fade-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* --- Responsive Adjustments --- */
@media (max-width: 480px) {
	.atvmb-popup-modal {
		padding: 24px 20px;
		border-radius: 20px;
	}

	.atvmb-popup-header h2 {
		font-size: 20px;
	}

	.atvmb-popup-header p {
		font-size: 13px;
	}
}

/* --- Dismiss Button Styling --- */
.atvmb-popup-dismiss-container {
	display: flex;
	justify-content: center;
	margin-top: 14px;
}

.atvmb-popup-dismiss-btn {
	background: none !important;
	border: none !important;
	color: #cbd5e1 !important;
	/* Slightly brighter for better elegance with bold weight */
	font-size: 13px !important;
	font-weight: 750 !important;
	text-decoration: underline !important;
	cursor: pointer !important;
	padding: 4px 12px !important;
	transition: color 0.2s ease !important;
}

.atvmb-popup-dismiss-btn:hover {
	color: #ffffff !important;
}

/* --- Animated Success Card Styling --- */
.atvmb-success-display {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 30px 10px;
	animation: atvmb-scale-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.atvmb-success-icon-badge {
	width: 64px;
	height: 64px;
	background-color: rgba(16, 185, 129, 0.12);
	border: 2.5px solid rgba(16, 185, 129, 0.3);
	color: #10b981;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.atvmb-success-check {
	width: 28px;
	height: 28px;
	stroke-width: 3px;
	stroke: currentColor;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.atvmb-success-heading {
	font-size: 20px;
	font-weight: 800;
	margin: 0 0 8px 0;
	color: #10b981;
}

.atvmb-context-shortcode .atvmb-success-heading {
	color: #0f172a; /* Dark text for light shortcode card */
}

.atvmb-success-text {
	font-size: 14px;
	color: #94a3b8;
	margin: 0;
	line-height: 1.5;
}

.atvmb-context-shortcode .atvmb-success-text {
	color: #475569; /* Dark text for light shortcode card */
}

@keyframes atvmb-scale-in {
	from {
		opacity: 0;
		transform: scale(0.9) translateY(10px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}