/**
 * Animated Backgrounds — Base CSS
 *
 * Static positioning for the canvas container and overlay.
 * Per-row dynamic CSS is generated by Pond_Apex_Animated_BG_Renderer.
 *
 * @package Pond_Apex
 * @since   2.1.0
 */

.pa-ab-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
}

.pa-ab-canvas {
	display: block;
	width: 100%;
	height: 100%;
}

.pa-ab-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

/* ================================================================
   STROBE WARNING POPUP
   ================================================================ */

.pa-strobe-warning {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.88);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.pa-strobe-warning__box {
	background: #1a1a1a;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	padding: 36px 40px;
	max-width: 420px;
	width: calc(100% - 40px);
	text-align: center;
	color: #fff;
}

.pa-strobe-warning__icon {
	font-size: 2.5rem;
	margin: 0 0 12px;
	line-height: 1;
}

.pa-strobe-warning__title {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 0 12px;
	color: #fff;
}

.pa-strobe-warning__body {
	font-size: 0.9rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 24px;
}

.pa-strobe-warning__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pa-strobe-warning__btn {
	padding: 12px 20px;
	border-radius: 8px;
	border: none;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: opacity 0.2s;
}

.pa-strobe-warning__btn:hover {
	opacity: 0.85;
}

.pa-strobe-warning__btn--proceed {
	background: #4a9eff;
	color: #fff;
}

.pa-strobe-warning__btn--disable {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.8);
}
