/* Login Gate – Base Layout (colors/sizes injected inline from settings) */

#login-gate-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.login-gate-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: auto;
}

.login-gate-modal {
	position: relative;
	width: 90%;
	text-align: center;
	pointer-events: auto;
	animation: loginGateFadeIn 0.3s ease;
	box-sizing: border-box;
}

@keyframes loginGateFadeIn {
	from { opacity: 0; transform: translateY(-16px); }
	to   { opacity: 1; transform: translateY(0); }
}

.login-gate-logo {
	text-align: center;
}

.login-gate-logo img {
	height: auto;
	display: inline-block;
}

#login-gate-title {
	margin: 0 0 12px 0;
	font-weight: 600;
	line-height: 1.3;
}

.login-gate-message {
	margin: 0 0 28px 0;
	line-height: 1.5;
}

.login-gate-btn {
	display: inline-block;
	font-weight: 600;
	text-decoration: none !important;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease;
	box-sizing: border-box;
	text-align: center;
}

.login-gate-btn:hover,
.login-gate-btn:focus {
	text-decoration: none !important;
}

.login-gate-register {
	margin: 20px 0 0 0;
	font-size: 14px;
}

.login-gate-register a {
	text-decoration: underline;
	transition: color 0.2s ease;
}

/* Mobile */
@media (max-width: 480px) {
	.login-gate-modal {
		margin: 0 16px;
	}
}
