.ccav-gate {
	--ccav-accent: #1d6fe0;
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.ccav-gate[hidden] { display: none; }

.ccav-gate__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(12, 14, 18, 0.82);
	backdrop-filter: blur(2px);
}

.ccav-gate__box {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 420px;
	background: #fff;
	color: #1d2327;
	border-radius: 14px;
	padding: 28px 24px 20px;
	text-align: center;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	max-height: calc(100vh - 32px);
	overflow-y: auto;
}

.ccav-gate__logo { max-width: 160px; height: auto; margin: 0 auto 12px; display: block; }

.ccav-gate__age {
	display: inline-block;
	margin: 0 0 10px;
	padding: 4px 14px;
	border-radius: 999px;
	background: var(--ccav-accent);
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
}

.ccav-gate__title { margin: 0 0 8px; font-size: 20px; line-height: 1.3; }
.ccav-gate__text { margin: 0 0 16px; font-size: 14px; line-height: 1.5; }

.ccav-gate__dob { display: flex; gap: 8px; justify-content: center; margin-bottom: 16px; }
.ccav-gate__field { display: flex; flex-direction: column; gap: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.ccav-gate__field input {
	width: 64px;
	padding: 10px 8px;
	font-size: 18px;
	text-align: center;
	border: 1px solid #c3c4c7;
	border-radius: 8px;
	background: #fff;
	color: inherit;
}
.ccav-gate__field--year input { width: 86px; }
.ccav-gate__field input:focus { outline: 2px solid var(--ccav-accent); outline-offset: 1px; }

.ccav-gate__actions { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.ccav-gate__btn {
	appearance: none;
	border: 0;
	border-radius: 8px;
	padding: 11px 20px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
}
.ccav-gate__btn--yes { background: var(--ccav-accent); color: #fff; }
.ccav-gate__btn--no { background: #f0f0f1; color: #1d2327; }
.ccav-gate.is-busy .ccav-gate__btn { opacity: .6; pointer-events: none; }

.ccav-gate__msg { margin: 12px 0 0; font-size: 14px; min-height: 1.2em; }
.ccav-gate__msg--err { color: #8a1f11; }
.ccav-gate__msg--ok { color: #1b5e20; }

.ccav-gate__note { margin: 14px 0 0; font-size: 11px; line-height: 1.5; color: #646970; }

.ccav-gate__close {
	position: absolute;
	top: 8px;
	right: 10px;
	appearance: none;
	background: none;
	border: 0;
	font-size: 26px;
	line-height: 1;
	color: #646970;
	cursor: pointer;
}

.ccav-locked { overflow: hidden; }

.ccav-badge {
	display: inline-block;
	padding: 1px 8px;
	border-radius: 999px;
	background: #fbeaea;
	color: #8a1f11;
	font-size: 12px;
	font-weight: 700;
	line-height: 18px;
	vertical-align: middle;
}
.ccav-badge--single { margin-bottom: 8px; }

@media (max-width: 420px) {
	.ccav-gate__box { padding: 22px 16px 16px; }
	.ccav-gate__field input { width: 56px; }
	.ccav-gate__field--year input { width: 76px; }
}
