/* Arcade Hero block – frontend */
.arcade-hero {
	position: relative;
	padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
	color: #fff;
	background-color: #030303;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.arcade-hero.no-bg {
	background-image: radial-gradient(circle at top, rgba(255, 0, 0, 0.2), rgba(0, 0, 0, 0.95));
}

.arcade-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(10, 10, 10, 0.85));
	mix-blend-mode: multiply;
	pointer-events: none;
}

.arcade-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: clamp(2rem, 5vw, 3rem);
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.arcade-hero.is-vert-top .arcade-hero__inner {
	justify-content: flex-start;
}

.arcade-hero.is-vert-center .arcade-hero__inner {
	justify-content: center;
}

.arcade-hero__content {
	max-width: 40rem;
	text-align: left;
}

.arcade-hero__content.is-width-narrow {
	max-width: 32rem;
}

.arcade-hero__content.is-width-wide {
	max-width: 52rem;
}

.arcade-hero__heading {
	font-size: clamp(2.2rem, 6vw, 3.8rem);
	line-height: 1.05;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 1rem;
}

.arcade-hero__subheading {
	font-size: clamp(1rem, 2.3vw, 1.25rem);
	color: #e0e0e0;
	margin: 0 0 1.5rem;
}

.arcade-hero__cta {
	display: inline-flex;
}

.arcade-hero__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 2.5rem;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.08em;
	border: 2px solid #ff2745;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 0 20px rgba(255, 39, 69, 0.45);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.arcade-hero__button:visited {
	color: #fff;
}

.arcade-hero__button:hover,
.arcade-hero__button:focus {
	background: #ff2745;
	box-shadow: 0 0 35px rgba(255, 39, 69, 0.75);
	transform: translateY(-2px);
	color: #fff;
}

.arcade-hero__image {
	text-align: center;
}

.arcade-hero__image img {
	max-width: min(420px, 80vw);
	width: 100%;
	display: block;
	margin: 0 auto;
	filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.75));
}

.arcade-hero__image-placeholder {
	padding: 2rem;
	border: 1px dashed rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
	.arcade-hero__inner {
		flex-direction: row;
		align-items: center;
	}

	.arcade-hero__content {
		flex: 1;
	}

	.arcade-hero__image {
		flex: 0 0 45%;
	}
}
