.bpcp-restricted {
	--bpcp-bg: var(--color-bg-card, #111120);
	--bpcp-text: var(--color-text-primary, #ffffff);
	--bpcp-text-muted: var(--color-text-secondary, #c8c8dd);
	--bpcp-border: var(--color-border-subtle, rgba(255, 255, 255, 0.08));

	box-sizing: border-box;
	max-width: 42rem;
	margin: 2rem auto;
	padding: 2.25rem 1.75rem;
	border: 1px solid var(--bpcp-border);
	border-radius: 16px;
	background:
		radial-gradient(ellipse 80% 100% at 100% 0%, rgba(126, 34, 206, 0.2) 0%, transparent 55%),
		var(--bpcp-bg);
	color: var(--bpcp-text) !important;
	text-align: center;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.bpcp-restricted__message {
	margin: 0 0 1.5rem;
	color: var(--bpcp-text-muted) !important;
	font-size: 1.05rem;
	line-height: 1.55;
}

.bpcp-restricted__message p {
	margin: 0 0 0.75rem;
	color: inherit !important;
}

.bpcp-restricted__message p:last-child {
	margin-bottom: 0;
}

.bpcp-restricted__login {
	margin: 0;
	display: flex;
	justify-content: center;
}

.bpcp-restricted__login-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 11rem;
	height: 3rem;
	min-height: 3rem;
	padding: 0 2rem;
	border: none;
	border-radius: 16px;
	background: var(--gradient-accent, linear-gradient(90deg, #0066ff, #1a4cff, #7e22ce));
	box-shadow:
		0 0 12px rgba(126, 34, 206, 0.18),
		0 8px 24px rgba(0, 102, 255, 0.2);
	color: #ffffff !important;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1 !important;
	text-transform: uppercase;
	text-decoration: none !important;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.bpcp-restricted__login-link:hover,
.bpcp-restricted__login-link:focus {
	transform: translateY(-2px);
	filter: brightness(1.08);
	color: #ffffff !important;
	box-shadow:
		0 0 16px rgba(126, 34, 206, 0.28),
		0 0 8px rgba(0, 102, 255, 0.22);
}

.bpcp-restricted__login-link:focus-visible {
	outline: none;
	box-shadow:
		0 0 0 3px rgba(0, 102, 255, 0.25),
		0 0 12px rgba(126, 34, 206, 0.18);
}

.bpcp-restricted__login-link:active {
	transform: translateY(0);
	filter: brightness(0.96);
}

@media (max-width: 600px) {
	.bpcp-restricted {
		margin: 1.25rem 0;
		padding: 1.5rem 1.15rem;
	}

	.bpcp-restricted__login-link {
		width: 100%;
		max-width: 18rem;
	}
}
