/* ==================== PROMOTION SECTION ==================== */
.promotion-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
	margin-bottom: 50px;
	flex-wrap: wrap;
	position: relative;
	z-index: 10;
}

.promotion-text {
	font-size: clamp(16px, 4vw, 22px);
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: linear-gradient(135deg, #fff, #03cfc2);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.3s ease;
}

.promotion-code-container {
	position: relative;
	padding: 12px 25px;
	border-radius: 50px;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	background: transparent;
	z-index: 1;
}

.promotion-code-container::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200%;
	padding-bottom: 200%;
	height: 0;
	padding-top: 0;
	padding-left: 0;
	padding-right: 0;
	background: conic-gradient(
		transparent 60%,
		rgba(3, 207, 194, 0.1) 80%,
		#03cfc2 90%,
		#2689e8 100%
	);
	transform: translate(-50%, -50%);
	animation: rotate-snake 4s linear infinite;
	z-index: -2;
}

.promotion-code-container::after {
	content: "";
	position: absolute;
	inset: 2px;
	background: #0b1a26;
	border-radius: 50px;
	z-index: -1;
}

@keyframes rotate-snake {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.promotion-code-inner {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.promotion-code-text {
	position: relative;
	z-index: 2;
	font-size: 20px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 3px;
	display: inline-block;
	color: #2689e8;
	background: linear-gradient(135deg, #2689e8, #03cfc2);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
