/**
 * Age Verification Modal Styles
 *
 * @package Podsmarket_Core
 */

.pm-age-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	animation: pmAgeFadeIn 0.3s ease-out;
}

@keyframes pmAgeFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.pm-age-modal-box {
	background: #FFFFFF;
	border-radius: 16px;
	max-width: 480px;
	width: 100%;
	padding: 40px 36px;
	text-align: center;
	box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
	border: 1px solid rgba(226, 232, 240, 0.8);
	animation: pmAgeScaleUp 0.3s ease-out;
}

@keyframes pmAgeScaleUp {
	from { transform: scale(0.94); }
	to { transform: scale(1); }
}

.pm-age-modal-badge {
	display: inline-block;
	background: #FEF3C7;
	color: #D97706;
	font-size: 0.95rem;
	font-weight: 800;
	padding: 6px 16px;
	border-radius: 9999px;
	margin-bottom: 18px;
}

.pm-age-modal-title {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1.6rem;
	font-weight: 800;
	color: #0F172A;
	margin-bottom: 12px;
	line-height: 1.25;
}

.pm-age-modal-desc {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 0.92rem;
	color: #475569;
	line-height: 1.6;
	margin-bottom: 28px;
}

.pm-age-modal-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 20px;
}

.pm-age-btn {
	padding: 14px 20px;
	border-radius: 10px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
	width: 100%;
}

.pm-age-btn-accept {
	background-color: #6366F1;
	color: #FFFFFF;
	box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.pm-age-btn-accept:hover {
	background-color: #4F46E5;
	transform: translateY(-1px);
}

.pm-age-btn-reject {
	background-color: #F1F5F9;
	color: #64748B;
	border: 1px solid #E2E8F0;
}

.pm-age-btn-reject:hover {
	background-color: #E2E8F0;
	color: #0F172A;
}

.pm-age-modal-note {
	display: block;
	font-size: 0.75rem;
	color: #94A3B8;
	line-height: 1.4;
}
