.age-verification-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.8);
}

.age-verification-popup {
	background-color: #000000;
	color: #ffffff;
	padding: 40px;
	text-align: center;
	max-width: 90%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
	position: relative;
	/* Default values - will be overridden by inline styles */
	border-radius: 10px;
	box-sizing: border-box;
}

/* Responsive width on smaller screens */
@media (max-width: 768px) {
	#age-verification-popup.age-verification-popup {
		width: 90% !important;
		max-width: 90% !important;
		min-width: 90% !important;
		padding: 30px 20px !important;
	}
}

.age-verification-popup.hidden {
	display: none;
}

.av-logo-container {
	margin-bottom: 20px;
	text-align: center;
	width: 100%;
}

.av-logo {
	max-width: 200px;
	max-height: 150px;
	width: auto;
	height: auto;
	margin: 0 auto;
	display: block;
	object-fit: contain;
}

.av-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.av-text {
	font-size: 18px;
	line-height: 1.6;
	margin: 0 0 20px 0;
}

.av-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.av-button {
	padding: 12px 30px;
	font-size: 16px;
	border: none !important;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
	font-weight: 600;
	min-width: 150px;
	/* Default colors - will be overridden by inline styles */
	background-color: #0073aa;
	color: #ffffff;
}

.av-button:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.av-button:active {
	transform: translateY(0);
}

body.age-verification-blocked {
	overflow: hidden !important;
	height: 100% !important;
	position: fixed !important;
	width: 100% !important;
}

