/* ================================================================
   GAMING CLUB AR - FOOTER.CSS
   Pie de pagina y barra de consentimiento de cookies.
   ================================================================ */
.footer-main {
	background-color: #070805;
	border-top: 1px solid var(--grid-line);
	padding-top: var(--gap-xl);
	padding-bottom: var(--gap-m);
}

.footer-main__grid {
	display: grid;
	gap: var(--gap-l);
	grid-template-columns: 1fr;
	padding-bottom: var(--gap-l);
	border-bottom: 1px solid var(--grid-line);
}

.footer-main__brand {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: var(--gap-s);
}

.footer-main__brand img {
	width: 30px;
	height: 30px;
}

.footer-main__brand span {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 17px;
}

.footer-main__desc {
	max-width: 42ch;
	font-size: 14px;
}

.footer-main__heading {
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--lime);
	margin-bottom: var(--gap-s);
	display: block;
}

.footer-main__list {
	display: grid;
	gap: 10px;
}

.footer-main__list a {
	font-size: 14px;
	color: var(--text-muted);
}

.footer-main__list a:hover {
	color: var(--lime);
}

.footer-main__legal-block p {
	font-size: 13px;
	margin-bottom: 6px;
}

.footer-main__bottom {
	display: flex;
	flex-direction: column;
	gap: var(--gap-xs);
	padding-top: var(--gap-m);
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--text-muted);
}

.footer-main__bottom a {
	color: var(--text-muted);
}

.footer-main__bottom a:hover {
	color: var(--lime);
}

/* ================================================================
   BARRA DE COOKIES (tray-consent)
   ================================================================ */
.tray-consent {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: calc(var(--z-header) + 10);
	background-color: #14170F;
	border: 1px solid var(--grid-line);
	padding: 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.tray-consent[hidden] {
	display: none;
}

.tray-consent__text {
	font-size: 13px;
	color: var(--text-muted);
	margin: 0;
}

.tray-consent__text a {
	color: var(--lime);
	border-bottom: 1px solid var(--lime);
}

.tray-consent__actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.tray-consent__actions .btn {
	padding: 11px 18px;
	font-size: 12px;
	min-height: 40px;
}

@media (min-width: 640px) {
	.footer-main__grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}

	.footer-main__bottom {
		flex-direction: row;
		justify-content: space-between;
	}

	.tray-consent {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		max-width: 620px;
		left: auto;
	}
}
