/* ===== WADE X BROWSER-FOR-1000-ACCOUNTS BANNER (bigbanner) ===== */

.banner-carousel {
	max-width: 100%;
	width: 100%;
	height: 350px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(
			70% 50% at 50% 0%,
			rgba(221, 56, 56, 0.19) 0%,
			rgba(221, 56, 56, 0) 50%
		),
		linear-gradient(176.37deg, #272f42 -22%, #171c2b 52.96%, #0f131c 139.62%);
	outline: 1px solid rgba(0, 212, 255, 0.1);
	box-shadow:
		inset 0 0 3px rgba(0, 212, 255, 0.08),
		inset 0 4px 62px rgba(0, 212, 255, 0.25);
}

.bigbanner {
	--color-accent: #ec6262;
	--color-accent-2: #dd3838;
	--color-accent-3: #ef6b6b;
	--color-muted: #94a3b8;
	--color-title: #f0f8ff;
	--color-promo-bg: #1b202d;

	position: relative;
	overflow: hidden;
	isolation: isolate;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	/* max-width: 1440px; */
	height: 350px;
	margin: 0 auto;
	padding: 30px 20px;
	font-family: 'Inter', sans-serif;
}

.bigbanner__hit {
	position: absolute;
	inset: 0;
	z-index: 0;
}

/* Decorative wolf watermarks, shown in full (not cropped) near the left/right edges */
.bigbanner__wolf {
	position: absolute;
	top: 150px;
	width: auto;
	aspect-ratio: 457 / 500;
	height: 535px;
	opacity: 0.05;
	pointer-events: none;
	transform: translateY(-50%);
	z-index: 0;
}

.bigbanner__wolf img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.bigbanner__wolf--left {
	left: -250px;
}

.bigbanner__wolf--right {
	right: -250px;
}

.bigbanner__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	text-align: center;
}

.bigbanner__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-bottom: 50px;
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
}

.bigbanner__nav span.bigbanner__nav-item {
	color: inherit;
}

.bigbanner__nav span.bigbanner__nav-sep {
	color: rgba(255, 255, 255, 0.1);
}

.bigbanner__title {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--color-title);
	margin-bottom: 18px;
}

.bigbanner__title-lead,
.bigbanner__title-account {
	display: inline;
}

.bigbanner__title-accent {
	color: var(--color-accent);
}

.bigbanner__subtitle {
	font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.125rem);
	line-height: 1.2;
	letter-spacing: 0.02em;
	color: var(--color-muted);
	margin-bottom: 50px;
}

.bigbanner__cta {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	width: min(415px, 100%);
	background: var(--color-promo-bg);
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
}

.bigbanner__btn {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex-shrink: 0;
	min-height: 62px;
	padding: 23px 27px;
	border-radius: 12px;
	background: linear-gradient(
		129.63deg,
		var(--color-accent-3) 0%,
		var(--color-accent-2) 100%
	);
	box-shadow:
		0 0 50px 0 rgba(226, 85, 85, 0.35),
		0 4px 24px 0 rgba(0, 0, 0, 0.3);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.03em;
	color: #ffffff;
	white-space: nowrap;
	text-decoration: none;
	transition:
		filter 0.15s ease,
		transform 0.15s ease;
}

.bigbanner__btn:hover {
	filter: brightness(1.06);
	color: #ffffff;
	text-decoration: none;
}

.bigbanner__btn:active {
	transform: translateY(1px);
}

.bigbanner__btn-arrow {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.bigbanner__promo {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-width: 0;
	height: 62px;
	margin-left: -12px;
	padding-left: 12px;
}

.bigbanner__promo-label {
	font-size: 14px;
	color: var(--color-muted);
}

.bigbanner__promo-code {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.01em;
	background: linear-gradient(
		145.42deg,
		var(--color-accent-3) 0%,
		var(--color-accent-2) 100%
	);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}

/* Tablet: scale the headline while keeping all available width usable. */
@media (max-width: 1100px) {
	.bigbanner {
		padding-inline: 24px;
	}

	.bigbanner__title {
		font-size: clamp(2.5rem, 6.2vw, 4rem);
	}
}

/* Mobile composition from the 390 px Figma frame. */
@media (max-width: 768px) {
	.banner-carousel,
	.bigbanner {
		min-height: 408px;
	}

	.bigbanner {
		justify-content: flex-start;
		padding: 29px 19px 29px;
	}

	.bigbanner__inner {
		align-items: flex-start;
		text-align: left;
	}

	.bigbanner__nav {
		justify-content: flex-start;
		gap: 9px;
		width: 100%;
		margin-bottom: 22px;
		font-size: 12px;
		line-height: 1;
	}

	.bigbanner__title {
		width: 100%;
		margin-bottom: 6px;
		font-size: clamp(2rem, 9.23vw, 2.25rem);
		line-height: 1.15;
		letter-spacing: -0.02em;
	}

	.bigbanner__subtitle {
		width: 100%;
		margin-bottom: 30px;
		max-width: 320px;
		font-size: 14px;
		line-height: 1.5;
		letter-spacing: 0.02em;
	}

	.bigbanner__cta {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		border-radius: 12px;
	}

	.bigbanner__btn {
		width: 100%;
		min-height: 62px;
		padding: 23px 20px;
	}

	.bigbanner__promo {
		flex: none;
		width: 100%;
		height: 71px;
		margin-left: 0;
		padding-left: 0;
		gap: 7px;
	}

	.bigbanner__promo-label {
		font-size: 12px;
		opacity: 0.7;
	}

	.bigbanner__wolf--left {
		display: none;
	}

	.bigbanner__wolf--right {
		top: -65px;
		right: -90px;
		width: auto;
		opacity: 1;
		height: 200px;
		transform: none;
		opacity: 0.03;
		transform: none;
	}
}

/* Very narrow screens: preserve every label and let the block grow vertically. */
@media (max-width: 374px) {
	.bigbanner {
		padding-inline: 16px;
	}

	.bigbanner__nav {
		gap: 8px;
		font-size: 11px;
	}

	.bigbanner__title {
		font-size: clamp(1.75rem, 9.4vw, 2.1rem);
	}

	.bigbanner__subtitle {
		font-size: 13px;
	}

	.bigbanner__btn {
		padding-inline: 14px;
	}
}
