/**
 * Backlot — Modal account locked (C7-BUGFIX-V2 #3)
 */
.bkl-modal--account-locked {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.bkl-modal--account-locked[hidden] { display: none; }

.bkl-modal--account-locked .bkl-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(11, 9, 8, 0.9);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
}

.bkl-modal--account-locked .bkl-modal__content {
	position: relative;
	max-width: 500px;
	width: 100%;
	background: linear-gradient(135deg, rgba(11, 9, 8, 0.98) 0%, rgba(30, 20, 10, 0.98) 100%);
	border: 1px solid rgba(245, 198, 107, 0.3);
	border-radius: 16px;
	padding: 36px 32px 28px;
	box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(245, 198, 107, 0.1);
	animation: bkl-modal-al-in 400ms cubic-bezier(0.16, 1, 0.3, 1);
	max-height: 90vh;
	overflow-y: auto;
}
@keyframes bkl-modal-al-in {
	from { opacity: 0; transform: translateY(20px) scale(0.96); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

.bkl-modal--account-locked .bkl-modal__close {
	position: absolute;
	top: 16px; right: 16px;
	width: 32px; height: 32px;
	display: flex; align-items: center; justify-content: center;
	background: transparent !important;
	border: 1px solid rgba(245, 198, 107, 0.3) !important;
	border-radius: 50% !important;
	color: #F5C66B !important;
	cursor: pointer;
	transition: all 200ms ease;
	padding: 0 !important;
}
.bkl-modal--account-locked .bkl-modal__close:hover {
	background: rgba(245, 198, 107, 0.1) !important;
	transform: rotate(90deg);
}
.bkl-modal--account-locked .bkl-modal__close svg {
	width: 16px; height: 16px;
}

.bkl-modal--account-locked .bkl-modal__title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-style: italic;
	font-size: 32px;
	color: #C9A84C;
	margin: 0 0 6px;
	text-align: center;
	font-weight: 500;
	line-height: 1.1;
}
.bkl-modal--account-locked .bkl-modal__subtitle {
	font-family: 'Geist Mono', 'SF Mono', Consolas, monospace;
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #F5C66B;
	opacity: 0.7;
	text-align: center;
	margin: 0 0 24px;
}
.bkl-modal--account-locked .bkl-modal__body p {
	font-family: 'Geist', system-ui, sans-serif;
	font-size: 14px;
	color: #F2E8DA;
	line-height: 1.6;
	margin: 0 0 14px;
	text-align: center;
}

.bkl-locked-info {
	padding: 14px 16px;
	background: rgba(245, 198, 107, 0.06);
	border-left: 3px solid #C9A84C;
	border-radius: 4px;
	font-family: 'Geist', system-ui, sans-serif;
	font-size: 13px;
	color: #F2E8DA;
	line-height: 1.5;
	margin: 20px 0;
	text-align: left;
}

.bkl-locked-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 24px;
}

.bkl-unlock-form label {
	display: block;
	margin-bottom: 16px;
}
.bkl-unlock-form label span {
	display: block;
	font-family: 'Geist', system-ui, sans-serif;
	font-size: 12px;
	color: #F5C66B;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 500;
}
.bkl-unlock-form input,
.bkl-unlock-form textarea {
	width: 100%;
	background: rgba(11, 9, 8, 0.8);
	border: 1px solid rgba(245, 198, 107, 0.3);
	color: #F2E8DA;
	font-size: 14px;
	padding: 10px 12px;
	border-radius: 8px;
	font-family: 'Geist', system-ui, sans-serif;
	box-sizing: border-box;
	resize: vertical;
}
.bkl-unlock-form input:focus,
.bkl-unlock-form textarea:focus {
	border-color: #F5C66B;
	box-shadow: 0 0 0 2px rgba(245, 198, 107, 0.18);
	outline: none;
}
.bkl-unlock-form small {
	display: block;
	margin-top: 4px;
	font-size: 11px;
	color: rgba(242, 232, 218, 0.5);
}

.bkl-modal--account-locked .bkl-btn-primary {
	background: linear-gradient(135deg, #C9A84C 0%, #9B7A2E 100%);
	color: #0B0908;
	font-family: 'Geist Mono', 'SF Mono', Consolas, monospace;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 13px 24px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease;
	width: 100%;
}
.bkl-modal--account-locked .bkl-btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(245, 198, 107, 0.3);
}
.bkl-modal--account-locked .bkl-btn-primary:disabled {
	opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none;
}
.bkl-modal--account-locked .bkl-btn-secondary {
	background: transparent;
	border: 1px solid rgba(245, 198, 107, 0.3);
	color: #F2E8DA;
	font-family: 'Geist Mono', 'SF Mono', Consolas, monospace;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 12px 24px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 200ms ease;
	width: 100%;
}
.bkl-modal--account-locked .bkl-btn-secondary:hover {
	border-color: #F5C66B;
	color: #F5C66B;
}

.bkl-unlock-feedback {
	margin-top: 14px;
	padding: 10px 12px;
	border-radius: 6px;
	font-size: 12px;
	text-align: center;
}
.bkl-unlock-feedback--error {
	background: rgba(217, 106, 106, 0.12);
	border: 1px solid rgba(217, 106, 106, 0.4);
	color: #f0a8a8;
}

@media (max-width: 640px) {
	.bkl-modal--account-locked .bkl-modal__content { padding: 28px 20px 20px; }
	.bkl-modal--account-locked .bkl-modal__title { font-size: 26px; }
}
@media (prefers-reduced-motion: reduce) {
	.bkl-modal--account-locked .bkl-modal__content { animation: none; }
	.bkl-modal--account-locked .bkl-btn-primary:hover { transform: none; }
}
