/* Brutalist form controls — The Trial, Age Gate, sharp UI */

.eg-brutal-option {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.85rem 1rem;
	margin-bottom: 0.5rem;
	border: 1px solid var(--forest-moss);
	cursor: pointer;
	transition: border-color var(--brutal-cut), background var(--brutal-cut), color var(--brutal-cut);
}

.eg-brutal-option:hover {
	border-color: var(--brutal-border);
	background: rgba(255, 255, 255, 0.03);
}

.eg-brutal-option input {
	appearance: none;
	-webkit-appearance: none;
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.eg-brutal-box {
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	margin-top: 0.2rem;
	border: 1px solid var(--brutal-border);
	background: transparent;
	transition: background var(--brutal-cut), border-color var(--brutal-cut);
}

.eg-brutal-option input:checked + .eg-brutal-box {
	background: var(--brutal-checked);
	border-color: #ffffff;
}

.eg-brutal-option:has(input:checked) {
	border-color: var(--brutal-border);
}

.eg-brutal-label {
	flex: 1;
	line-height: 1.5;
}

.eg-matching-options {
	margin-bottom: 0.5rem;
}

.eg-matching-options label:not(.eg-brutal-option) {
	display: block;
	padding: 0.85rem 1rem;
	margin-bottom: 0.5rem;
	border: 1px solid var(--forest-moss);
	cursor: pointer;
}

.eg-age-form .eg-brutal-option {
	justify-content: flex-start;
	text-align: left;
	margin: 1.5rem auto;
	max-width: 420px;
}

.eg-age-form select {
	border-radius: 0;
}

.eg-alias-box input {
	border-radius: 0;
}

.eg-alias-box button,
.eg-game-plan-actions .eg-btn {
	border-radius: 0;
}
