/**
 * Panosboats Image Guard private login / UnderConstruction screen.
 */

.pig-private-screen {
	--pig-private-overlay-opacity: 0.45;
	--pig-private-card-opacity: 0.92;
	--pig-private-logo-width: 240px;
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.pig-private-screen__bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #0d3d56 0%, #1a6b8a 48%, #0a2a3d 100%);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.pig-private-screen__overlay {
	position: absolute;
	inset: 0;
	background: rgba(6, 24, 38, var(--pig-private-overlay-opacity));
}

.pig-private-screen__card {
	position: relative;
	z-index: 2;
	width: min(100%, 560px);
	padding: 40px 36px 36px;
	border-radius: 18px;
	background: rgba(255, 255, 255, var(--pig-private-card-opacity));
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
	text-align: center;
	backdrop-filter: blur(6px);
}

.pig-private-screen__logo {
	display: block;
	width: var(--pig-private-logo-width);
	max-width: 100%;
	height: auto;
	margin: 0 auto 24px;
}

.pig-private-screen__title {
	margin: 0 0 12px;
	color: #0d3d56;
	font-size: clamp(1.6rem, 4vw, 2.2rem);
	font-weight: 700;
	line-height: 1.2;
}

.pig-private-screen__subtitle {
	margin: 0 0 28px;
	color: #35586b;
	font-size: clamp(1rem, 2.5vw, 1.15rem);
	line-height: 1.5;
}

.pig-private-screen__login {
	display: inline-block;
	min-width: 180px;
	padding: 14px 32px;
	border-radius: 999px;
	background: linear-gradient(135deg, #0f5f7f 0%, #1a8aad 100%);
	color: #ffffff;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(15, 95, 127, 0.35);
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.pig-private-screen__login:hover,
.pig-private-screen__login:focus {
	background: linear-gradient(135deg, #0c4f69 0%, #167999 100%);
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(15, 95, 127, 0.42);
	outline: none;
}

.pig-private-screen__login:focus-visible {
	outline: 3px solid rgba(26, 138, 173, 0.45);
	outline-offset: 3px;
}

@media (max-width: 480px) {
	.pig-private-screen {
		padding: 16px;
	}

	.pig-private-screen__card {
		padding: 28px 22px 24px;
		border-radius: 14px;
	}

	.pig-private-screen__login {
		width: 100%;
		min-width: 0;
		box-sizing: border-box;
	}
}
