.pxs-eev {
	--pxs-eev-pink: #ff2b90;
	--pxs-eev-purple: #6f22ff;
	--pxs-eev-violet: #ad39ff;
	--pxs-eev-text: #fff;
	--pxs-eev-muted: rgba(255, 255, 255, 0.84);
	--pxs-eev-bg: #030513;
	--pxs-eev-inner-width: 1720px;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	color: var(--pxs-eev-text);
	background:
		radial-gradient(circle at 50% 0%, rgba(111, 34, 255, 0.18), transparent 27%),
		radial-gradient(circle at 7% 50%, rgba(255, 43, 144, 0.16), transparent 21%),
		radial-gradient(circle at 92% 50%, rgba(111, 34, 255, 0.18), transparent 20%),
		var(--pxs-eev-bg);
	font-family: "Inter", "Open Sans", Arial, sans-serif;
}

.pxs-eev,
.pxs-eev * {
	box-sizing: border-box;
}

.pxs-eev::before,
.pxs-eev::after {
	position: absolute;
	z-index: -1;
	top: 160px;
	width: 470px;
	height: 430px;
	content: "";
	pointer-events: none;
	opacity: 0.72;
}

.pxs-eev::before {
	left: -205px;
	background: repeating-radial-gradient(ellipse at 0% 50%, transparent 0 17px, rgba(255, 43, 144, 0.24) 18px 19px, transparent 20px 35px);
	transform: rotate(-8deg);
}

.pxs-eev::after {
	right: -205px;
	background: repeating-radial-gradient(ellipse at 100% 50%, transparent 0 17px, rgba(255, 43, 144, 0.22) 18px 19px, transparent 20px 35px);
	transform: rotate(8deg);
}

.pxs-eev svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.pxs-eev svg [fill="none"] {
	fill: none;
}

.pxs-eev__inner {
	width: min(var(--pxs-eev-inner-width), calc(100% - 96px));
	margin: 0 auto;
	padding: 44px 0 42px;
}

.pxs-eev__header {
	text-align: center;
}

.pxs-eev__eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	color: var(--pxs-eev-pink);
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 5px;
	line-height: 1;
}

.pxs-eev__eyebrow span {
	width: 54px;
	height: 1px;
	background: var(--pxs-eev-pink);
}

.pxs-eev__title {
	margin: 16px 0 0;
	color: transparent;
	background: linear-gradient(96deg, #ff2b74 16%, #c33cff 52%, #6122ff 86%);
	background-clip: text;
	-webkit-background-clip: text;
	font-size: clamp(64px, 7.1vw, 104px);
	font-weight: 950;
	line-height: 0.9;
	letter-spacing: 0;
	-webkit-text-fill-color: transparent;
}

.pxs-eev__music-rule {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 34px;
	margin-top: 28px;
	color: var(--pxs-eev-pink);
	font-size: 44px;
}

.pxs-eev__music-rule span {
	width: 112px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--pxs-eev-pink));
}

.pxs-eev__music-rule span:last-child {
	background: linear-gradient(90deg, var(--pxs-eev-pink), transparent);
}

.pxs-eev__intro {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(40px, 5.7vw, 94px);
	margin-top: 28px;
}

.pxs-eev__intro-item {
	display: grid;
	grid-template-columns: 78px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
	min-width: 0;
}

.pxs-eev__intro-icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin-top: 8px;
	border: 2px solid var(--pxs-eev-pink);
	border-radius: 8px;
	color: var(--pxs-eev-pink);
	background: rgba(255, 43, 144, 0.07);
	box-shadow: 0 0 19px rgba(255, 43, 144, 0.22);
	font-size: 42px;
}

.pxs-eev__intro-item p {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 19px;
	font-weight: 500;
	line-height: 1.5;
}

.pxs-eev__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	margin-top: 34px;
}

.pxs-eev__card {
	overflow: hidden;
	min-width: 0;
	border: 1.5px solid var(--pxs-eev-pink);
	border-radius: 15px;
	background: rgba(12, 7, 28, 0.86);
	box-shadow: 0 0 24px rgba(255, 43, 144, 0.13), inset 0 0 36px rgba(255, 255, 255, 0.025);
}

.pxs-eev__media {
	position: relative;
	height: 226px;
	overflow: hidden;
	background: #150719;
}

.pxs-eev__media::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(3, 5, 19, 0.02) 0%, rgba(3, 5, 19, 0.15) 65%, rgba(3, 5, 19, 0.86) 100%);
	pointer-events: none;
}

.pxs-eev__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.pxs-eev__card-body {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 24px;
	min-height: 184px;
	padding: 26px 30px 27px;
}

.pxs-eev__card-icon {
	display: grid;
	place-items: center;
	width: 63px;
	height: 63px;
	color: var(--pxs-eev-pink);
	font-size: 58px;
	filter: drop-shadow(0 0 15px rgba(255, 43, 144, 0.52));
}

.pxs-eev__card h3 {
	margin: 0;
	color: #fff;
	font-size: clamp(30px, 2.3vw, 36px);
	font-weight: 950;
	line-height: 1.1;
}

.pxs-eev__card p {
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 18px;
	line-height: 1.43;
}

.pxs-eev__quote {
	display: grid;
	grid-template-columns: 64px minmax(0, auto) 64px;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin: 32px 0 0;
	padding: 24px 40px 25px;
	border: 1.5px solid var(--pxs-eev-purple);
	border-radius: 14px;
	background: linear-gradient(90deg, rgba(255, 43, 144, 0.13), rgba(111, 34, 255, 0.12)), rgba(10, 7, 28, 0.72);
	box-shadow: inset 0 0 34px rgba(255, 255, 255, 0.025);
	text-align: center;
}

.pxs-eev__quote span {
	color: var(--pxs-eev-pink);
	font-family: Georgia, serif;
	font-size: 62px;
	line-height: 1;
	text-shadow: 0 0 18px rgba(255, 43, 144, 0.55);
}

.pxs-eev__quote p {
	margin: 0;
	color: var(--pxs-eev-pink);
	font-family: "Segoe Script", "Brush Script MT", cursive;
	font-size: clamp(35px, 3.5vw, 54px);
	font-weight: 700;
	line-height: 1.18;
	text-shadow: 0 0 17px rgba(255, 43, 144, 0.38);
}

@media (max-width: 1180px) {
	.pxs-eev__inner {
		width: min(100% - 48px, 920px);
	}

	.pxs-eev__intro,
	.pxs-eev__cards {
		grid-template-columns: 1fr;
	}

	.pxs-eev__card {
		max-width: 680px;
		margin: 0 auto;
	}
}

@media (max-width: 640px) {
	.pxs-eev__inner {
		width: calc(100% - 28px);
		padding: 34px 0;
	}

	.pxs-eev__eyebrow {
		gap: 12px;
		font-size: 16px;
		letter-spacing: 3px;
	}

	.pxs-eev__eyebrow span {
		width: 34px;
	}

	.pxs-eev__title {
		font-size: clamp(42px, 12vw, 58px);
	}

	.pxs-eev__music-rule {
		gap: 18px;
		margin-top: 20px;
		font-size: 34px;
	}

	.pxs-eev__music-rule span {
		width: 62px;
	}

	.pxs-eev__intro-item {
		grid-template-columns: 58px minmax(0, 1fr);
		gap: 18px;
	}

	.pxs-eev__intro-icon {
		width: 50px;
		height: 50px;
		font-size: 32px;
	}

	.pxs-eev__intro-item p,
	.pxs-eev__card p {
		font-size: 16px;
	}

	.pxs-eev__media {
		height: 205px;
	}

	.pxs-eev__card-body {
		grid-template-columns: 58px minmax(0, 1fr);
		gap: 16px;
		padding: 22px;
	}

	.pxs-eev__card-icon {
		width: 50px;
		height: 50px;
		font-size: 45px;
	}

	.pxs-eev__card h3 {
		font-size: 25px;
	}

	.pxs-eev__quote {
		grid-template-columns: 30px minmax(0, 1fr) 30px;
		gap: 10px;
		padding: 22px 16px;
	}

	.pxs-eev__quote span {
		font-size: 36px;
	}

	.pxs-eev__quote p {
		font-size: clamp(26px, 8vw, 36px);
	}
}
