.final-cta-block {
	width: 100%;
}

.final-cta {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 1.5rem;
	--final-cta-button-overhang: 2.5rem;
}

.final-cta__panel {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding: 3rem 1.5rem;
	border-radius: 1rem;
	overflow: visible;
	background-color: var(--home-surface, var(--home-page-bg));
}


h2.final-cta__title {
	font-family: var(--font-homepage-section-title);
	color: #fff;
	text-transform: uppercase;
	margin: 0;
}

a.final-cta__button {
	color:white;
	text-align: center;
}

h3.why-players__card-title {
	font-weight: normal;
}

@media (min-width: 768px) {
	.final-cta__panel {
		padding: 72px 3rem;
		border-radius: 2rem;
	}
}

@media (max-width: 767px) {
	.final-cta__panel {
		flex-direction: column;
		text-align: center;
		gap: 0.5rem;
		padding: 2rem 1.5rem;
	}
}

.final-cta__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	z-index: 1;
	max-width: 640px;
}

@media (min-width: 768px) {
	.final-cta__content {
		padding-bottom: 2rem;
	}
}

@media (max-width: 767px) {
	.final-cta__content {
		align-items: center;
		order: 1;
	}
}


@media (max-width: 767px) {
	.final-cta__title {
		display: flex;
		flex-direction: column;
		align-items: center;
		font-size: 1.9rem;
	}
}

@media (min-width: 768px) {
	.final-cta__title {
		font-size: 2rem;
	}
}

@media (min-width: 1024px) {
	.final-cta__title {
		font-size: 2.5rem;
	}
}

@media (max-width: 767px) {
	.final-cta__title-sub {
		font-size: 0.85em;
	}
}

.final-cta__subtitle {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.875rem;
	line-height: 1.4;
	margin: 0;
}

@media (min-width: 768px) {
	.final-cta__subtitle {
		font-size: 1rem;
	}
}

.final-cta__art {
	flex-shrink: 0;
	width: clamp(220px, 36%, 420px);
	height: auto;
	object-fit: contain;
	pointer-events: none;
	user-select: none;
}

@media (min-width: 768px) {
	.final-cta__art {
		position: absolute;
		z-index: 0;
		right: 2rem;
		bottom: 0;
	}
}

@media (max-width: 767px) {
	.final-cta__art {
		order: 2;
		width: clamp(200px, 70%, 300px);
	}
}

.final-cta__button {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: calc(var(--final-cta-button-overhang) * -1);
	border: none;
	cursor: pointer;
	color: #fff;
	background: linear-gradient(180deg, #fc6819 0%, #fd8225 100%);
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 9999px;
	font-size: 1rem;
	line-height: 1.1;
	padding: 1rem 2rem;
	max-width: calc(100% - 2rem);
	box-shadow: 0 0.5rem 1.25rem rgba(252, 104, 25, 0.35);
	transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

@media (min-width: 768px) {
	.final-cta__button {
		font-size: 1.75rem;
		padding: 1.5rem 4rem;
	}
}

.final-cta__button:hover {
	transform: translateY(-2px);
	box-shadow: 0 0.75rem 1.5rem rgba(252, 104, 25, 0.45);
	filter: brightness(1.05);
	color: #fff;
}

.final-cta__button:active {
	transform: translateY(0);
	box-shadow: 0 0.375rem 0.75rem rgba(252, 104, 25, 0.35);
}