.pl-age-gate {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100vh;  
	height: 100dvh;  
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(42, 42, 42, 0.30);
	z-index: 999999;
	overflow: hidden;
	overscroll-behavior: contain;
	touch-action: none;
}

.pl-age-gate[hidden] {
	display: none !important;
}

.pl-age-gate__card {
	display: flex;
	width: 100%;
	max-width: 700px;
	max-height: calc(100vh - 40px);
	padding: 60px 48px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	border-radius: var(--Big, 32px);
	background: rgba(253, 254, 255, 0.82);
	box-shadow: 0 4px 16px 0 rgba(26, 26, 26, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	text-align: center;
	box-sizing: border-box;
}

.pl-age-gate__logo {
	margin: 0 0 8px;
	display: flex;
	justify-content: center;
}

.pl-age-gate__logo img,
.pl-age-gate__logo .custom-logo {
	display: block;
	max-width: 180px;
	height: auto;
}

.pl-age-gate__title {
	margin: 0;
	color: var(--greyscale-greyscale-900, #080D0B);
	text-align: center;
	font-family: 'Switzer', sans-serif;
	font-size: 40px !important;
	font-style: normal;
	font-weight: 500;
	line-height: 48px !important;
	text-transform: capitalize;
}

.pl-age-gate__body {
	margin: 0;
	color: var(--typography-primary-1, #090C16);
	text-align: center;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	width: 100%;
	max-height: min(320px, 50vh);
	overflow-y: auto;
	overscroll-behavior: contain;
	padding-right: 4px;
	scrollbar-width: thin;
	scrollbar-color: rgba(26, 26, 26, 0.3) transparent;
}

.pl-age-gate__body::-webkit-scrollbar {
	width: 6px;
}

.pl-age-gate__body::-webkit-scrollbar-thumb {
	background: rgba(26, 26, 26, 0.3);
	border-radius: 3px;
}

.pl-age-gate__body::-webkit-scrollbar-track {
	background: transparent;
}

.pl-age-gate__body p {
	margin: 0 0 12px;
}

.pl-age-gate__body p:last-child {
	margin-bottom: 0;
}

.pl-age-gate__actions {
	margin-top: 0;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

.pl-age-gate__btn {
	appearance: none;
	border: 0;
	cursor: pointer;
	padding: 14px 28px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
	border-radius: var(--Big, 32px);
	transition: background var(--pl-transition), color var(--pl-transition), transform var(--pl-transition-fast);
}

.pl-age-gate__confirm {
	color: var(--primary-2, #F7F9FC);
	background: var(--accent-1, #537FF4);
	border: 1px solid var(--accent-1, #537FF4);
}

.pl-age-gate__confirm:hover,
.pl-age-gate__confirm:focus-visible {
	background: var(--pl-accent-dark, #3F66D6);
	border-color: var(--pl-accent-dark, #3F66D6);
	transform: translateY(-1px);
	outline: none;
}

.pl-age-gate__deny {
	color: var(--primary-1, #1A1A1A);
	background: transparent;
	border: 1px solid var(--primary-1, #1A1A1A);
}

.pl-age-gate__deny:hover,
.pl-age-gate__deny:focus-visible {
	color: #FFFFFF;
	background: var(--primary-1, #1A1A1A);
	transform: translateY(-1px);
	outline: none;
}

.pl-age-gate__disclaimer[hidden] {
	display: none !important;
}

.pl-age-gate__disclaimer {
	margin: 0;
	color: var(--error, #E55649);
	text-align: center;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	width: 100%;
	max-height: min(200px, 35vh);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.pl-age-gate__disclaimer p {
	margin: 0;
}

body.pl-age-gate-open {
	overflow: hidden;
}

@media (max-width: 768px) {
	.pl-age-gate {
		padding: 24px;
	}

	.pl-age-gate__card {
		padding: 40px 24px;
		gap: 24px;
		border-radius: var(--Big, 32px);
	}

	.pl-age-gate__title {
		font-size: 24px !important;
		line-height: 32px !important;
		font-weight: 500 !important;
	}

	.pl-age-gate__body {
		font-size: 14px !important;
		line-height: 20px !important;
		font-weight: 400 !important;
	}

	.pl-age-gate__btn {
		flex: 1 1 100%;
	}
}
