/* Sessão Gooner Age Gate — dark / hot gooner aesthetic */
.sg-age-gate {
	position: fixed;
	inset: 0;
	z-index: 2147483646;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	box-sizing: border-box;
	background: #0a0a0a;
	color: #f5f5f5;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
}

.sg-age-gate.is-hidden {
	display: none !important;
}

html.sg-age-gate-lock,
body.sg-age-gate-lock {
	overflow: hidden !important;
	height: 100% !important;
	touch-action: none;
}

.sg-age-gate__panel {
	width: min(100%, 28rem);
	text-align: center;
	padding: 2rem 1.5rem;
	border: 1px solid rgba(255, 40, 60, 0.35);
	border-radius: 12px;
	background: linear-gradient(165deg, #141414 0%, #0a0a0a 55%, #120808 100%);
	box-shadow:
		0 0 0 1px rgba(255, 40, 60, 0.08),
		0 24px 64px rgba(0, 0, 0, 0.85),
		0 0 80px rgba(220, 20, 40, 0.12);
}

.sg-age-gate__badge {
	display: inline-block;
	margin: 0 0 1rem;
	padding: 0.35rem 0.85rem;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: #0a0a0a;
	background: #ff2a3c;
	border-radius: 999px;
	text-transform: uppercase;
}

.sg-age-gate__title {
	margin: 0 0 1rem;
	font-size: clamp(1.75rem, 5vw, 2.25rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #fff;
}

.sg-age-gate__body {
	margin: 0 0 0.75rem;
	font-size: 1.05rem;
	line-height: 1.55;
	color: #d0d0d0;
}

.sg-age-gate__body strong {
	color: #ff4d5e;
	font-weight: 700;
}

.sg-age-gate__hint {
	margin: 0 0 1.75rem;
	font-size: 0.9rem;
	color: #888;
}

.sg-age-gate__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.sg-age-gate__btn {
	appearance: none;
	border: none;
	cursor: pointer;
	width: 100%;
	padding: 0.95rem 1.25rem;
	font-size: 1.05rem;
	font-weight: 700;
	border-radius: 8px;
	transition: transform 0.12s ease, background 0.15s ease, opacity 0.15s ease;
}

.sg-age-gate__btn:active {
	transform: scale(0.98);
}

.sg-age-gate__btn--enter {
	background: #ff2a3c;
	color: #0a0a0a;
}

.sg-age-gate__btn--enter:hover,
.sg-age-gate__btn--enter:focus-visible {
	background: #ff4d5e;
	outline: none;
}

.sg-age-gate__btn--exit {
	background: transparent;
	color: #999;
	border: 1px solid #333;
}

.sg-age-gate__btn--exit:hover,
.sg-age-gate__btn--exit:focus-visible {
	color: #ccc;
	border-color: #555;
	outline: none;
}

@media (min-width: 480px) {
	.sg-age-gate__actions {
		flex-direction: row;
		justify-content: center;
	}

	.sg-age-gate__btn {
		width: auto;
		min-width: 10.5rem;
	}

	.sg-age-gate__btn--enter {
		flex: 1.4;
	}

	.sg-age-gate__btn--exit {
		flex: 1;
	}
}
