:root {
	--arg-btn-color: #1a7f4b;
	--arg-accent-color: #1a3a5c;
}

body.arg-gate-active {
	overflow: hidden !important;
}

#arg-gate-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background: rgba(230, 236, 240, 0.92);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#arg-gate-overlay * {
	box-sizing: border-box;
}

.arg-gate-card {
	background: #fff;
	width: 100%;
	max-width: 460px;
	border-radius: 20px;
	padding: 36px 32px 28px;
	box-shadow: 0 20px 50px rgba(20, 30, 40, 0.15);
	text-align: left;
}

.arg-gate-logo {
	text-align: center;
	margin-bottom: 22px;
}

.arg-gate-logo img {
	max-width: 180px;
	max-height: 70px;
	height: auto;
	width: auto;
}

#arg-gate-title {
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 10px;
	color: #14212b;
}

.arg-gate-desc {
	font-size: 14.5px;
	line-height: 1.5;
	color: #55636c;
	margin: 0 0 20px;
}

.arg-gate-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	border: 1px solid #e2e6ea;
	border-radius: 12px;
	padding: 14px 16px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.45;
	color: #23303a;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.arg-gate-row:hover {
	border-color: #c7ced4;
}

.arg-gate-row:has(.arg-gate-checkbox:checked) {
	border-color: var(--arg-accent-color);
	background: rgba(26, 58, 92, 0.03);
}

.arg-gate-checkbox {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	min-width: 20px;
	border: 2px solid #c7ced4;
	border-radius: 5px;
	margin-top: 1px;
	position: relative;
	cursor: pointer;
	background: #fff;
	transition: all 0.15s ease;
}

.arg-gate-checkbox:checked {
	background: var(--arg-accent-color);
	border-color: var(--arg-accent-color);
}

.arg-gate-checkbox:checked::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.arg-gate-submit {
	width: 100%;
	padding: 15px 18px;
	border: none;
	border-radius: 999px;
	font-size: 15.5px;
	font-weight: 600;
	color: #fff;
	background: #c3c9ce;
	cursor: not-allowed;
	margin-top: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: background 0.2s ease, transform 0.1s ease;
}

.arg-gate-submit:not(:disabled) {
	background: var(--arg-btn-color);
	cursor: pointer;
}

.arg-gate-submit:not(:disabled):hover {
	filter: brightness(1.05);
}

.arg-gate-submit:not(:disabled):active {
	transform: scale(0.99);
}

.arg-arrow {
	font-size: 16px;
}

.arg-gate-fine-print {
	font-size: 11.5px;
	line-height: 1.5;
	color: #8a949b;
	margin: 16px 0 0;
}

.arg-gate-fine-print a {
	color: #8a949b;
	text-decoration: underline;
}

.arg-gate-exit {
	margin-top: 22px;
	font-size: 13.5px;
	color: #55636c;
	text-align: center;
}

.arg-gate-exit a {
	color: #23303a;
	font-weight: 600;
	text-decoration: none;
}

.arg-gate-exit a:hover {
	text-decoration: underline;
}

@media (max-width: 480px) {
	.arg-gate-card {
		padding: 28px 22px 22px;
		border-radius: 16px;
	}
	#arg-gate-title {
		font-size: 22px;
	}
}
