/* =========================================================
   ProjectX — Custom Home (v2)
   Aligned with single-product-lottery.php palette & components
   ========================================================= */

.px-home {
	--px-bg: #000;
	--px-bg-2: #0a0f0c;
	--px-card: #0b120d;
	--px-fg: #e9ffe9;
	--px-muted: #8a9188;
	--px-neon: #25ff5a;
	--px-neon-2: #00d64a;
	--px-red: #e5001f;
	--px-gold: #d4af37;
	--px-border: rgba(255,255,255,.08);
	--px-radius: 16px;
	--px-container: 1240px;

	background: var(--px-bg);
	color: var(--px-fg);
	font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
	overflow-x: hidden;
}
.px-home * { box-sizing: border-box; }

.px-container { max-width: var(--px-container); margin: 0 auto; padding: 0 24px; }

/* ============ Section scaffolding ============ */
.px-section { padding: 96px 0; }
.px-section__eyebrow {
	display: inline-block;
	color: var(--px-neon);
	font-family: "Orbitron", sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .28em;
	margin-bottom: 14px;
	font-weight: 700;
}
.px-section__title {
	font-family: "Orbitron", "Rajdhani", sans-serif;
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 800;
	letter-spacing: -0.01em;
	margin: 0 0 10px;
	color: #fff;
	line-height: 1.05;
}
.px-section__sub { color: var(--px-muted); margin: 0 0 48px; font-size: 16px; line-height: 1.5; }
.px-section__head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 56px; flex-wrap: wrap; }
.px-section__head .px-section__sub { margin-bottom: 0; }
.px-section__head--center { justify-content: center; text-align: center; margin-bottom: 56px; }
.px-section__head--center > div { max-width: 600px; }

.px-link {
	color: var(--px-neon);
	text-decoration: none;
	font-family: "Orbitron", sans-serif;
	font-weight: 700;
	letter-spacing: .08em;
	font-size: 13px;
	text-transform: uppercase;
	transition: text-shadow .2s ease;
}
.px-link:hover { text-shadow: 0 0 14px var(--px-neon); }

/* ============ Pills ============ */
.px-pill {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 5px 12px;
	border-radius: 999px;
	font-family: "Orbitron", sans-serif;
	font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
	margin-bottom: 14px;
}
.px-pill--green {
	color: var(--px-neon);
	background: rgba(37,255,90,.10);
	border: 1px solid rgba(37,255,90,.35);
}

/* ============ Buttons ============ */
.px-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 14px 24px;
	border-radius: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 13px;
	text-decoration: none;
	transition: transform .18s ease, box-shadow .2s ease, background .2s ease, filter .15s ease;
	cursor: pointer;
	border: 1px solid transparent;
	line-height: 1;
	font-family: "Orbitron", sans-serif;
}
.px-btn--sm { padding: 10px 16px; font-size: 11px; border-radius: 10px; }
.px-btn--xl { padding: 18px 30px; font-size: 15px; }
.px-btn--primary {
	background: linear-gradient(180deg, #3bff75, var(--px-neon) 55%, var(--px-neon-2));
	color: #021809;
	box-shadow: 0 14px 36px -10px rgba(37,255,90,.6), inset 0 1px 0 rgba(255,255,255,.3);
}
.px-btn--primary:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 18px 48px -10px rgba(37,255,90,.7), 0 0 0 4px rgba(37,255,90,.18); }
.px-btn--ghost {
	background: transparent; color: #fff; border-color: rgba(255,255,255,.2);
}
.px-btn--ghost:hover { border-color: var(--px-neon); color: var(--px-neon); background: rgba(37,255,90,.04); }
.px-btn--gold {
	background: linear-gradient(135deg, #f5d97a, #d4af37 55%, #8b6f12);
	color: #1a1400;
	border-color: rgba(212,175,55,.5);
	box-shadow: 0 14px 36px -10px rgba(212,175,55,.55);
}
.px-btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -10px rgba(212,175,55,.7); }


/* =========================================================
   1. HERO
   ========================================================= */
.px-hero {
	position: relative;
	min-height: 94vh;
	display: flex; align-items: center;
	overflow: hidden;
	isolation: isolate;
	padding: 100px 0 60px;
}
.px-hero__bg {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	z-index: -3;
	filter: brightness(.65) saturate(1.1);
}
.px-hero__overlay {
	position: absolute; inset: 0; z-index: -2;
	background:
		radial-gradient(70% 60% at 18% 45%, rgba(0,0,0,.45), transparent 75%),
		linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.85) 100%);
}
/* Matrix-style overlay — same as single product */
.px-hero__matrix {
	position: absolute; inset: 0; z-index: -1;
	background-image:
		linear-gradient(rgba(37,255,90,.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(37,255,90,.04) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(70% 60% at 50% 40%, #000 20%, transparent 80%);
	-webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000 20%, transparent 80%);
	pointer-events: none;
	animation: pxHomeMatrix 16s linear infinite;
}
@keyframes pxHomeMatrix {
	0% { background-position: 0 0, 0 0; }
	100% { background-position: 0 48px, 48px 0; }
}

.px-hero__inner {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 56px;
	align-items: center;
	max-width: var(--px-container);
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}

.px-hero__live-pill {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 16px;
	background: rgba(0,0,0,.55);
	border: 1px solid rgba(37,255,90,.25);
	border-radius: 999px;
	color: rgba(255,255,255,.85);
	font-family: "Orbitron", sans-serif;
	font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
	margin-bottom: 24px;
	backdrop-filter: blur(8px);
}
.px-hero__live-pill strong { color: var(--px-neon); }
.px-hero__live-pill .px-hero__sep { opacity: .4; }
.px-hero__dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--px-neon);
	box-shadow: 0 0 12px var(--px-neon);
	animation: pxPulse 1.6s ease-in-out infinite;
}
@keyframes pxPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.85); } }

.px-hero__title {
	font-family: "Orbitron", "Rajdhani", sans-serif;
	font-size: clamp(44px, 6.5vw, 88px);
	line-height: 0.95;
	font-weight: 900;
	text-transform: uppercase;
	margin: 0 0 20px;
	letter-spacing: -0.01em;
	color: #fff;
}
.px-hero__title-hl { display: block; }
.px-hero__x { color: var(--px-red); text-shadow: 0 0 40px rgba(229,0,31,.35); }
.px-hero__lead {
	font-size: 18px; color: rgba(255,255,255,.78);
	max-width: 52ch; margin: 0 0 32px; line-height: 1.55;
}
.px-hero__cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.px-hero__live { max-width: 620px; }
.px-hero__featured {
	display: flex; align-items: baseline; gap: 12px; margin-bottom: 10px;
	flex-wrap: wrap;
}
.px-hero__featured-label {
	font-family: "Orbitron", sans-serif;
	color: rgba(255,255,255,.5);
	font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
	font-weight: 700;
}
.px-hero__featured-title {
	color: #fff; font-size: 16px; font-weight: 700;
}
.px-live__progress {
	height: 8px; border-radius: 999px;
	background: rgba(255,255,255,.08);
	overflow: hidden;
	margin-bottom: 14px;
	box-shadow: inset 0 1px 2px rgba(0,0,0,.5);
}
.px-live__bar {
	height: 100%; width: var(--pct, 0%);
	background: linear-gradient(90deg, var(--px-neon), #8effc5);
	box-shadow: 0 0 14px rgba(37,255,90,.55);
	transition: width .6s ease;
	border-radius: 999px;
}
.px-live__meta { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.px-live__chip {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 12px;
	background: rgba(0,0,0,.45);
	border: 1px solid var(--px-border);
	border-radius: 999px;
	font-size: 12px; color: rgba(255,255,255,.75);
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	backdrop-filter: blur(4px);
}
.px-live__chip strong {
	color: var(--px-neon);
	font-weight: 800;
	font-family: "Orbitron", sans-serif;
	font-size: 12px;
}

.px-hero__showcase {
	position: relative;
	display: block;
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 4/3;
	border: 1px solid rgba(37,255,90,.2);
	box-shadow: 0 40px 100px -30px rgba(37,255,90,.35), 0 0 0 1px rgba(0,0,0,.5) inset;
	transition: transform .35s ease, box-shadow .3s ease;
}
.px-hero__showcase:hover {
	transform: translateY(-4px);
	box-shadow: 0 50px 120px -30px rgba(37,255,90,.5), 0 0 0 1px rgba(0,0,0,.5) inset;
}
.px-hero__showcase img { width: 100%; height: 100%; object-fit: cover; display: block; }
.px-hero__showcase-glow {
	position: absolute; inset: -40%;
	background: radial-gradient(40% 40% at 50% 50%, rgba(37,255,90,.35), transparent 70%);
	z-index: 0; pointer-events: none;
	animation: pxGlow 6s ease-in-out infinite;
	opacity: .5;
}
@keyframes pxGlow {
	0%, 100% { transform: translate(-10%, -10%); }
	50% { transform: translate(10%, 10%); }
}
.px-hero__showcase-tag {
	position: absolute; top: 16px; left: 16px;
	background: rgba(0,0,0,.72); backdrop-filter: blur(10px);
	color: var(--px-neon);
	font-family: "Orbitron", sans-serif;
	font-size: 11px; font-weight: 800;
	text-transform: uppercase; letter-spacing: .18em;
	padding: 7px 14px; border-radius: 999px;
	border: 1px solid rgba(37,255,90,.3);
	z-index: 1;
}

@media (max-width: 960px) {
	.px-hero { min-height: auto; padding: 80px 0 40px; }
	.px-hero__inner { grid-template-columns: 1fr; gap: 32px; }
	.px-hero__showcase { display: none !important; }
}
@media (max-width: 720px) {
	.px-hero { padding: 60px 0 24px !important; }
	.px-hero__live { display: none !important; }
	.px-hero__inner { gap: 18px !important; }
	.px-community { padding: 24px 0 !important; }
}


/* =========================================================
   COMMUNITY BAR (Telegram + WhatsApp)
   ========================================================= */
.px-community { padding: 40px 0; background: #000; }
.px-community__card {
	padding: 28px 32px;
	border-radius: 20px;
	border: 1px solid rgba(37,255,90,.22);
	background:
		radial-gradient(80% 60% at 0% 0%, rgba(37,255,90,.12), transparent 60%),
		radial-gradient(60% 80% at 100% 100%, rgba(37,255,90,.06), transparent 55%),
		linear-gradient(180deg, #0e1a11, #070b08);
	box-shadow: 0 24px 60px -24px rgba(37,255,90,.25);
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 32px;
	align-items: center;
}
.px-community__copy h3 {
	font-family: "Orbitron", sans-serif;
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	margin: 8px 0 0;
	line-height: 1.3;
	letter-spacing: .01em;
	max-width: 46ch;
}
.px-community__links { display: flex; gap: 12px; flex-wrap: wrap; }
.px-community__link {
	display: inline-flex; align-items: center; gap: 12px;
	padding: 14px 20px;
	border-radius: 14px;
	background: rgba(255,255,255,.03);
	border: 1px solid var(--px-border);
	color: #fff;
	text-decoration: none;
	transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .2s ease;
	min-width: 190px;
}
.px-community__link:hover {
	transform: translateY(-2px);
}
.px-community__link svg { flex: 0 0 auto; }
.px-community__link span { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.px-community__link strong {
	font-family: "Orbitron", sans-serif;
	font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.px-community__link em {
	font-style: normal;
	font-family: "Rajdhani", sans-serif;
	font-size: 12px; color: rgba(255,255,255,.55);
	font-weight: 500;
}
.px-community__link--tg {
	color: #29b6f6;
	border-color: rgba(41,182,246,.25);
}
.px-community__link--tg:hover {
	background: rgba(41,182,246,.08);
	border-color: rgba(41,182,246,.5);
	box-shadow: 0 16px 36px -12px rgba(41,182,246,.45);
}
.px-community__link--wa {
	color: #25d366;
	border-color: rgba(37,211,102,.25);
}
.px-community__link--wa:hover {
	background: rgba(37,211,102,.08);
	border-color: rgba(37,211,102,.5);
	box-shadow: 0 16px 36px -12px rgba(37,211,102,.45);
}

@media (max-width: 760px) {
	.px-community__card { grid-template-columns: 1fr; padding: 22px 20px; gap: 18px; }
	.px-community__links { width: 100%; }
	.px-community__link { flex: 1; min-width: 0; justify-content: center; }
	.px-community__copy h3 { font-size: 17px; }
}


/* =========================================================
   ESCAPE MONEY teaser
   ========================================================= */
.px-escape {
	position: relative;
	padding: 96px 0 88px;
	background: #050202;
	border-top: 1px solid rgba(229,0,31,.18);
	border-bottom: 1px solid rgba(229,0,31,.18);
	overflow: hidden;
	isolation: isolate;
	text-align: center;
	color: #fff;
}
.px-escape__matrix {
	position: absolute; inset: 0; z-index: 0;
	background-image:
		linear-gradient(rgba(229,0,31,.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(229,0,31,.06) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(70% 70% at 50% 50%, #000 20%, transparent 80%);
	-webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000 20%, transparent 80%);
	pointer-events: none;
	opacity: .7;
}
/* Giant background X */
.px-escape__x {
	position: absolute;
	top: 50%; left: 50%;
	z-index: 0;
	font-family: "Orbitron", sans-serif;
	font-weight: 900;
	font-size: clamp(280px, 45vw, 760px);
	line-height: .85;
	letter-spacing: -0.04em;
	color: transparent;
	-webkit-text-stroke: 2px rgba(229,0,31,.6);
	pointer-events: none;
	user-select: none;
	background-image: linear-gradient(180deg, rgba(255,40,70,.20), rgba(229,0,31,.06));
	-webkit-background-clip: text;
	background-clip: text;
	transform-origin: 50% 54%;
	animation: pxEscapeBreath 3.6s ease-in-out infinite;
	will-change: transform, filter, text-shadow;
}
/* Multi-property pulse: scale + glow + stroke intensity */
@keyframes pxEscapeBreath {
	0% {
		transform: translate(-50%, -54%) scale(1);
		text-shadow:
			0 0 40px rgba(229,0,31,.35),
			0 0 120px rgba(229,0,31,.20),
			0 0 220px rgba(229,0,31,.12);
		-webkit-text-stroke-color: rgba(229,0,31,.5);
		filter: drop-shadow(0 0 8px rgba(229,0,31,.3));
	}
	50% {
		transform: translate(-50%, -54%) scale(1.045);
		text-shadow:
			0 0 80px rgba(255,30,60,.7),
			0 0 200px rgba(229,0,31,.45),
			0 0 320px rgba(255,30,60,.30);
		-webkit-text-stroke-color: rgba(255,30,60,.95);
		filter: drop-shadow(0 0 28px rgba(255,30,60,.55));
	}
	100% {
		transform: translate(-50%, -54%) scale(1);
		text-shadow:
			0 0 40px rgba(229,0,31,.35),
			0 0 120px rgba(229,0,31,.20),
			0 0 220px rgba(229,0,31,.12);
		-webkit-text-stroke-color: rgba(229,0,31,.5);
		filter: drop-shadow(0 0 8px rgba(229,0,31,.3));
	}
}

/* Faster scanline sweep on top */
.px-escape::before {
	content: '';
	position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(255,40,70,.06) 48%,
		rgba(255,40,70,.10) 50%,
		rgba(255,40,70,.06) 52%,
		transparent 100%
	);
	mix-blend-mode: screen;
	pointer-events: none;
	animation: pxEscapeScan 5s linear infinite;
}
@keyframes pxEscapeScan {
	0%   { transform: translateY(-110%); opacity: 0; }
	10%  { opacity: 1; }
	90%  { opacity: 1; }
	100% { transform: translateY(110%); opacity: 0; }
}

/* Rotating glow ring behind the X */
.px-escape::after {
	content: '';
	position: absolute;
	top: 50%; left: 50%;
	width: clamp(360px, 60vw, 920px);
	height: clamp(360px, 60vw, 920px);
	transform: translate(-50%, -50%);
	z-index: 0;
	background: conic-gradient(
		from 0deg,
		transparent 0deg,
		rgba(229,0,31,.18) 60deg,
		transparent 120deg,
		rgba(229,0,31,.10) 200deg,
		transparent 260deg,
		rgba(255,30,60,.20) 320deg,
		transparent 360deg
	);
	border-radius: 50%;
	filter: blur(40px);
	pointer-events: none;
	animation: pxEscapeSpin 18s linear infinite;
	mix-blend-mode: screen;
}
@keyframes pxEscapeSpin {
	from { transform: translate(-50%, -50%) rotate(0deg); }
	to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
	.px-escape__x { animation: none !important; }
	.px-escape::before, .px-escape::after { animation: none !important; }
}

.px-escape__inner {
	position: relative; z-index: 2;
	display: flex; flex-direction: column; align-items: center; gap: 22px;
}

/* Eyebrow */
.px-escape__eyebrow {
	font-family: "Orbitron", sans-serif;
	font-size: 12px; font-weight: 800;
	letter-spacing: .32em;
	color: rgba(255,255,255,.85);
	text-transform: uppercase;
}
.px-escape__eyebrow-x { color: #e5001f; text-shadow: 0 0 12px rgba(229,0,31,.6); }

/* Title */
.px-escape__title {
	margin: 6px 0 0;
	display: flex; flex-direction: column; align-items: center; gap: 0;
	font-family: "Orbitron", sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	line-height: .92;
	letter-spacing: -.01em;
}
.px-escape__title-1 {
	font-size: clamp(48px, 8vw, 110px);
	color: #fff;
	text-shadow: 0 4px 24px rgba(0,0,0,.65);
}
.px-escape__title-2 {
	font-size: clamp(48px, 8vw, 110px);
	color: #e5001f;
	text-shadow: 0 0 24px rgba(229,0,31,.5), 0 4px 24px rgba(0,0,0,.55);
}
.px-escape__title-sub {
	margin-top: 14px;
	font-size: clamp(18px, 2.4vw, 28px);
	letter-spacing: .42em;
	color: rgba(255,255,255,.85);
	font-weight: 700;
}
.px-escape__title-sub-x { color: #e5001f; }

/* Pill — corner-bracket frame */
.px-escape__pill {
	position: relative;
	display: inline-block;
	margin: 18px 0 4px;
	padding: 14px 28px;
	font-family: "Orbitron", sans-serif;
	font-size: 13px; letter-spacing: .12em;
	color: rgba(255,255,255,.85);
	text-transform: uppercase;
	font-weight: 600;
	text-decoration: none;
	transition: transform .18s ease, color .18s ease, box-shadow .2s ease;
}
.px-escape__pill strong { color: #fff; font-weight: 900; }
.px-escape__pill em { font-style: normal; color: #e5001f; font-weight: 800; text-shadow: 0 0 14px rgba(229,0,31,.45); }

/* CTA variant — solid red button */
.px-escape__pill--cta {
	cursor: pointer;
	margin: 24px 0 8px;
	padding: 18px 36px;
	background: linear-gradient(180deg, #ff3045 0%, #e5001f 60%, #b30015 100%);
	color: #fff !important;
	font-size: 14px;
	letter-spacing: .14em;
	border-radius: 4px;
	box-shadow:
		0 18px 40px -10px rgba(229,0,31,.75),
		0 0 0 1px rgba(255,255,255,.1) inset,
		0 0 32px rgba(229,0,31,.45);
	animation: pxEscapeCtaPulse 2.4s ease-in-out infinite;
}
.px-escape__pill--cta strong { color: #fff !important; }
.px-escape__pill--cta em {
	color: #fff !important;
	text-shadow: none !important;
	opacity: .92;
}
.px-escape__pill--cta .px-escape__pill-corner {
	width: 14px; height: 14px;
	border-color: #fff !important;
	border-width: 2px !important;
	box-shadow: 0 0 6px rgba(255,255,255,.5);
}
.px-escape__pill--cta:hover {
	transform: translateY(-3px) scale(1.02);
	background: linear-gradient(180deg, #ff4456 0%, #ff0a32 60%, #cc0019 100%);
	box-shadow:
		0 24px 50px -10px rgba(229,0,31,.9),
		0 0 0 1px rgba(255,255,255,.18) inset,
		0 0 48px rgba(229,0,31,.65);
	animation: none;
}
.px-escape__pill--cta:active {
	transform: translateY(-1px) scale(1);
}
@keyframes pxEscapeCtaPulse {
	0%, 100% {
		box-shadow:
			0 18px 40px -10px rgba(229,0,31,.75),
			0 0 0 1px rgba(255,255,255,.1) inset,
			0 0 32px rgba(229,0,31,.45);
	}
	50% {
		box-shadow:
			0 22px 50px -8px rgba(229,0,31,.95),
			0 0 0 1px rgba(255,255,255,.18) inset,
			0 0 56px rgba(229,0,31,.7),
			0 0 0 6px rgba(229,0,31,.18);
	}
}
.px-escape__pill-corner { transition: border-color .18s ease, box-shadow .2s ease; }
.px-escape__pill-corner {
	position: absolute; width: 16px; height: 16px;
	border: 2px solid rgba(229,0,31,.85);
}
.px-escape__pill-corner--tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.px-escape__pill-corner--tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.px-escape__pill-corner--bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.px-escape__pill-corner--br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

/* Perks row */
.px-escape__perks {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
	max-width: 920px;
	margin-top: 14px;
}
.px-escape__perk {
	position: relative;
	padding: 22px 22px;
	display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
	background: rgba(229,0,31,.04);
	transition: transform .25s ease;
}
.px-escape__perk:hover { transform: translateY(-3px); }
.px-escape__perk-frame {
	position: absolute; inset: 0; pointer-events: none;
	background:
		linear-gradient(#e5001f 0 0) top left no-repeat,
		linear-gradient(#e5001f 0 0) top left no-repeat,
		linear-gradient(#e5001f 0 0) top right no-repeat,
		linear-gradient(#e5001f 0 0) top right no-repeat,
		linear-gradient(#e5001f 0 0) bottom left no-repeat,
		linear-gradient(#e5001f 0 0) bottom left no-repeat,
		linear-gradient(#e5001f 0 0) bottom right no-repeat,
		linear-gradient(#e5001f 0 0) bottom right no-repeat;
	background-size: 16px 2px, 2px 16px, 16px 2px, 2px 16px, 16px 2px, 2px 16px, 16px 2px, 2px 16px;
	opacity: .9;
}
.px-escape__perk-ico {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px;
	color: #e5001f;
	margin-bottom: 4px;
	filter: drop-shadow(0 0 8px rgba(229,0,31,.4));
}
.px-escape__perk strong {
	font-family: "Orbitron", sans-serif;
	font-size: 13px; font-weight: 800;
	letter-spacing: .12em; text-transform: uppercase;
	color: #fff;
}
.px-escape__perk span {
	font-size: 12px; line-height: 1.5;
	color: rgba(255,255,255,.6);
	letter-spacing: .04em;
}

/* CTA */
.px-escape__cta {
	display: inline-flex; align-items: center; gap: 12px;
	margin-top: 20px;
	padding: 16px 28px;
	background: rgba(0,0,0,.45);
	border: 1px solid rgba(229,0,31,.5);
	color: #fff;
	font-family: "Orbitron", sans-serif;
	font-size: 13px; font-weight: 800;
	letter-spacing: .14em; text-transform: uppercase;
	text-decoration: none;
	transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
	box-shadow: 0 0 0 0 rgba(229,0,31,0);
}
.px-escape__cta:hover {
	background: rgba(229,0,31,.12);
	border-color: #e5001f;
	box-shadow: 0 14px 36px -10px rgba(229,0,31,.55), 0 0 24px rgba(229,0,31,.25);
	transform: translateY(-2px);
}
.px-escape__cta-arrow { color: #e5001f; font-size: 11px; }
.px-escape__cta-x { color: #e5001f; }

.px-escape__footnote {
	margin-top: 8px;
	font-family: "Orbitron", sans-serif;
	font-size: 11px;
	letter-spacing: .42em;
	color: rgba(255,255,255,.4);
	text-transform: uppercase;
}
.px-escape__footnote-x { color: #e5001f; }

@media (max-width: 760px) {
	.px-escape { padding: 64px 0 56px; }
	.px-escape__title-1, .px-escape__title-2 { font-size: 48px; }
	.px-escape__title-sub { font-size: 14px; letter-spacing: .35em; }
	.px-escape__pill { padding: 12px 22px; font-size: 11px; }

	/* Mobile perks — clean stacked cards, no corner brackets at all */
	.px-escape__perks {
		grid-template-columns: 1fr;
		gap: 10px;
		max-width: 360px;
		margin: 18px auto 0;
	}
	.px-escape__perk {
		flex-direction: row !important;
		align-items: center;
		gap: 14px;
		padding: 14px 16px;
		background: linear-gradient(180deg, rgba(229,0,31,.08), rgba(229,0,31,.02));
		border-left: 3px solid #e5001f;
		border-radius: 0 10px 10px 0;
		box-shadow: 0 0 18px -8px rgba(229,0,31,.35);
	}
	/* Hide ALL per-perk corner brackets cleanly on mobile */
	.px-escape__perk-frame { display: none !important; }

	.px-escape__perk-ico {
		flex: 0 0 40px;
		width: 40px; height: 40px;
		border: 1px solid rgba(229,0,31,.5);
		border-radius: 8px;
		background: rgba(229,0,31,.08);
		margin-bottom: 0;
	}
	.px-escape__perk strong {
		font-size: 12px;
		letter-spacing: .14em;
	}
	.px-escape__perk span {
		font-size: 11.5px;
		line-height: 1.45;
	}

	.px-escape__cta { font-size: 11px; padding: 14px 20px; flex-wrap: wrap; justify-content: center; text-align: center; }
	.px-escape__footnote { letter-spacing: .3em; font-size: 10px; }
}


/* =========================================================
   HOME ELITE — podium + perks under hero (styles inherit site.css .px-podium)
   ========================================================= */
/* Compact home Elite section (no podium — just header + perks + CTA) */
.px-home-elite { padding: 56px 0 !important; }
.px-home-elite__head {
	margin-bottom: 32px !important;
	max-width: none !important;
	width: 100% !important;
	justify-content: center !important;
	text-align: center !important;
}
.px-home-elite__head > div {
	max-width: 720px;
	margin: 0 auto;
}
.px-home-elite__head .px-section__sub { margin-top: 8px; margin-bottom: 0; }
.px-home-elite-perks {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	max-width: 1100px;
	margin: 0 auto !important;
	gap: 14px !important;
}
.px-home-elite-perks .px-vip__perk { padding: 22px 18px; gap: 10px; }
.px-home-elite-perks .px-vip__perk strong { font-size: 14px; }
.px-home-elite-perks .px-vip__perk span { font-size: 13px; }
.px-home-elite-cta { text-align: center; margin-top: 28px; }

@media (max-width: 900px) {
	.px-home-elite-perks { grid-template-columns: repeat(2, 1fr) !important; }
	.px-home-elite { padding: 40px 0 !important; }
}
@media (max-width: 560px) {
	.px-home-elite-perks { grid-template-columns: 1fr !important; }
}


/* =========================================================
   THE MOVEMENT — promo video section
   ========================================================= */
.px-movement {
	position: relative;
	padding: 80px 0;
	background:
		linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.92)),
		url('/wp-content/uploads/2025/08/7a0f3bde-abbb-4002-914a-f3b8c9088314.jpeg') center / cover no-repeat fixed;
	border-top: 1px solid var(--px-border);
	border-bottom: 1px solid var(--px-border);
	isolation: isolate;
	overflow: hidden;
}
.px-movement::before {
	content: '';
	position: absolute; inset: 0;
	background:
		radial-gradient(60% 80% at 50% 0%, rgba(37,255,90,.10), transparent 60%),
		radial-gradient(40% 60% at 100% 100%, rgba(37,255,90,.06), transparent 55%);
	pointer-events: none;
	z-index: 0;
}
.px-movement > * { position: relative; z-index: 1; }
.px-movement__hl {
	color: var(--px-neon);
	text-shadow: 0 0 24px rgba(37,255,90,.35);
}
.px-movement__video-wrap {
	position: relative;
	max-width: 960px;
	margin: 48px auto 0;
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(37,255,90,.28);
	box-shadow: 0 40px 100px -30px rgba(37,255,90,.4), 0 0 0 1px rgba(0,0,0,.5) inset;
	background: #000;
	aspect-ratio: 16/9;
}
.px-movement__video {
	width: 100%; height: 100%;
	display: block;
	object-fit: cover;
}
.px-movement__glow {
	position: absolute; inset: -40%;
	background: radial-gradient(50% 50% at 50% 50%, rgba(37,255,90,.18), transparent 70%);
	pointer-events: none;
	z-index: -1;
	animation: pxGlow 8s ease-in-out infinite;
}

@media (max-width: 720px) {
	.px-movement { padding: 56px 0; }
	.px-movement__video-wrap { margin-top: 32px; border-radius: 16px; }
}


/* =========================================================
   BE THE NEXT WINNER
   ========================================================= */
.px-next-winner {
	position: relative;
	padding: 96px 0;
	background:
		linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.92)),
		url('/wp-content/uploads/2025/10/1620ab63-4a61-4e49-a86c-e2c3dae66084.jpeg') center / cover no-repeat fixed;
	border-top: 1px solid rgba(212,175,55,.12);
	border-bottom: 1px solid rgba(212,175,55,.12);
	isolation: isolate;
	overflow: hidden;
}
.px-next-winner__matrix {
	position: absolute; inset: 0; z-index: -1;
	background-image:
		linear-gradient(rgba(212,175,55,.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(212,175,55,.05) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(60% 70% at 80% 50%, #000 30%, transparent 85%);
	-webkit-mask-image: radial-gradient(60% 70% at 80% 50%, #000 30%, transparent 85%);
	pointer-events: none;
}
.px-next-winner__inner {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 56px;
	align-items: center;
}
.px-next-winner__copy .px-section__eyebrow {
	color: var(--px-gold);
	margin-bottom: 16px;
	display: inline-block;
	font-family: "Orbitron", sans-serif;
	font-size: 11px;
	letter-spacing: .28em;
	font-weight: 700;
	text-transform: uppercase;
}
.px-next-winner__title {
	font-family: "Orbitron", sans-serif;
	font-size: clamp(42px, 6.5vw, 84px);
	font-weight: 900;
	line-height: .95;
	letter-spacing: .01em;
	text-transform: uppercase;
	margin: 0 0 14px;
	color: #fff;
}
.px-next-winner__hl {
	background: linear-gradient(135deg, #f5d97a, #d4af37 55%, #8b6f12);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 40px rgba(212,175,55,.35);
}
.px-next-winner__tag {
	font-family: "Orbitron", sans-serif;
	color: var(--px-neon);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	margin: 0 0 20px;
}
.px-next-winner__lead {
	color: rgba(255,255,255,.78);
	font-size: 16px;
	line-height: 1.7;
	max-width: 48ch;
	margin: 0 0 28px;
}
.px-next-winner__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.px-next-winner__showcase {
	display: block;
	text-decoration: none;
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(212,175,55,.35);
	background: linear-gradient(180deg, #1a1304, #0a0703);
	box-shadow: 0 40px 90px -30px rgba(212,175,55,.35), 0 0 0 1px rgba(0,0,0,.3) inset;
	transition: transform .3s ease, box-shadow .3s ease;
}
.px-next-winner__showcase:hover {
	transform: translateY(-4px);
	box-shadow: 0 50px 110px -30px rgba(212,175,55,.5);
}
.px-next-winner__media {
	position: relative;
	aspect-ratio: 16/10;
	overflow: hidden;
}
.px-next-winner__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.px-next-winner__showcase:hover .px-next-winner__media img { transform: scale(1.04); }
.px-next-winner__media-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.7) 100%);
}
.px-next-winner__media-tag {
	position: absolute; top: 14px; left: 14px;
	background: linear-gradient(135deg, #f5d97a, #d4af37 55%, #8b6f12);
	color: #1a1400;
	font-family: "Orbitron", sans-serif;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 999px;
}
.px-next-winner__card-body { padding: 22px 24px 24px; }
.px-next-winner__prize-title {
	display: block;
	font-family: "Orbitron", sans-serif;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .02em;
	line-height: 1.3;
	margin-bottom: 14px;
}
.px-next-winner__winner-box {
	display: flex; flex-direction: column; gap: 4px;
	padding: 14px 16px;
	border-radius: 12px;
	border: 1px solid rgba(212,175,55,.35);
	background: rgba(212,175,55,.08);
}
.px-next-winner__winner-label {
	font-family: "Orbitron", sans-serif;
	color: var(--px-gold);
	font-size: 10px;
	letter-spacing: .28em;
	text-transform: uppercase;
	font-weight: 800;
}
.px-next-winner__winner-ticket {
	font-family: "Orbitron", sans-serif;
	color: rgba(255,255,255,.6);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
}
.px-next-winner__winner-name {
	font-family: "Rajdhani", sans-serif;
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.2;
}

@media (max-width: 960px) {
	.px-next-winner {
		padding: 64px 0;
		/* iOS Safari ignores background-attachment: fixed → use scroll on mobile */
		background:
			linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.85)),
			url('/wp-content/uploads/2025/10/1620ab63-4a61-4e49-a86c-e2c3dae66084.jpeg') center top / cover no-repeat scroll;
	}
	.px-next-winner__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
	.px-next-winner {
		padding: 48px 0;
		min-height: 600px;
		background:
			linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.78)),
			url('/wp-content/uploads/2025/10/1620ab63-4a61-4e49-a86c-e2c3dae66084.jpeg') center top / cover no-repeat scroll;
	}
}


/* Package outro + CTA inside the Project X Package card */
.px-package-hero__outro {
	margin: 28px 0 0 !important;
	text-align: center;
	color: rgba(255,255,255,.78);
	font-size: 15px;
	line-height: 1.65;
	padding-top: 24px;
	border-top: 1px solid rgba(37,255,90,.12);
}
.px-package-hero__outro strong { color: var(--px-neon); font-weight: 800; }
.px-package-hero__cta { margin: 20px auto 0; text-align: center; }


/* =========================================================
   2. COMPETITIONS GRID
   ========================================================= */
.px-comps { background: linear-gradient(180deg, transparent, rgba(37,255,90,.015)); }
.px-comps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.px-comp-card {
	position: relative;
	background: linear-gradient(180deg, var(--px-card), var(--px-bg));
	border: 1px solid var(--px-border);
	border-radius: 18px;
	overflow: hidden;
	display: flex; flex-direction: column;
	transition: border-color .25s ease, transform .3s ease, box-shadow .3s ease;
	isolation: isolate;
}
.px-comp-card::before {
	content: ''; position: absolute; inset: 0;
	background: radial-gradient(80% 50% at 0% 0%, rgba(37,255,90,.08), transparent 60%);
	pointer-events: none; z-index: 0;
	opacity: 0; transition: opacity .3s ease;
}
.px-comp-card:hover {
	border-color: rgba(37,255,90,.35);
	transform: translateY(-4px);
	box-shadow: 0 30px 60px -25px rgba(37,255,90,.3);
}
.px-comp-card:hover::before { opacity: 1; }
.px-comp-card > * { position: relative; z-index: 1; }
/* Closed / sold-out card treatment */
.px-comp-card--closed .px-comp-card__media img { filter: grayscale(.6) brightness(.55) saturate(.7); }
.px-comp-card--closed:hover .px-comp-card__media img { filter: grayscale(.3) brightness(.75) saturate(.9); transform: scale(1.02); }
.px-comp-card--closed:hover {
	border-color: rgba(255,255,255,.2);
	box-shadow: 0 24px 50px -24px rgba(0,0,0,.6);
}
.px-comp-card__closed-overlay {
	position: absolute; inset: 0;
	background:
		radial-gradient(80% 60% at 50% 40%, rgba(0,0,0,.2), rgba(0,0,0,.75) 90%),
		linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.65) 100%);
	pointer-events: none;
}
.px-comp-card__soldout {
	position: absolute;
	inset: 0;
	display: flex; flex-direction: column;
	align-items: center; justify-content: center;
	gap: 4px;
	text-align: center;
	pointer-events: none;
}
.px-comp-card__soldout-label {
	font-family: "Orbitron", sans-serif;
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 900;
	letter-spacing: .22em;
	text-transform: uppercase;
	padding: 10px 22px;
	color: #fff;
	border: 2px solid rgba(255,255,255,.85);
	border-radius: 8px;
	background: rgba(0,0,0,.45);
	backdrop-filter: blur(6px);
	box-shadow: 0 10px 40px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.15);
	transform: rotate(-4deg);
	position: relative;
}
.px-comp-card__soldout-label::before,
.px-comp-card__soldout-label::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 28px; height: 1px;
	background: rgba(255,255,255,.55);
}
.px-comp-card__soldout-label::before { right: 100%; margin-right: 10px; }
.px-comp-card__soldout-label::after  { left: 100%; margin-left: 10px; }
.px-comp-card__soldout-sub {
	margin-top: 8px;
	font-family: "Orbitron", sans-serif;
	font-size: 10px; font-weight: 700;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: rgba(255,255,255,.7);
	transform: rotate(-4deg);
}
.px-comp-card__progress--full .px-comp-card__bar {
	background: linear-gradient(90deg, rgba(255,255,255,.5), rgba(255,255,255,.3));
	box-shadow: none;
}
.px-comp-card__meta--closed { opacity: .8; }
.px-comp-card__meta--closed strong { color: rgba(255,255,255,.85); }
.px-comp-card__countdown--closed {
	color: var(--px-gold) !important;
	font-family: "Orbitron", sans-serif;
	font-size: 11px !important;
	letter-spacing: .12em;
}
.px-comp-card__price-closed {
	color: rgba(255,255,255,.5);
	font-family: "Orbitron", sans-serif;
	font-size: 11px;
	letter-spacing: .15em;
	text-transform: uppercase;
	font-weight: 700;
}

/* Winner block on closed cards */
.px-comp-card__winner {
	padding: 12px 14px;
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(212,175,55,.10), rgba(212,175,55,.03));
	border: 1px solid rgba(212,175,55,.28);
	display: flex; flex-direction: column; gap: 3px;
}
.px-comp-card__winner-label {
	font-family: "Orbitron", sans-serif;
	font-size: 10px;
	font-weight: 800;
	color: var(--px-gold);
	letter-spacing: .22em;
	text-transform: uppercase;
}
.px-comp-card__winner-ticket {
	font-family: "Orbitron", sans-serif;
	font-size: 12px;
	color: rgba(255,255,255,.55);
	font-weight: 700;
	letter-spacing: .04em;
}
.px-comp-card__winner-name {
	font-family: "Rajdhani", sans-serif;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

/* Post-draw link row on closed cards */
.px-comp-card__links {
	display: flex; gap: 8px; flex-wrap: wrap;
}
.px-comp-card__link {
	flex: 1;
	display: inline-flex; align-items: center; justify-content: center; gap: 6px;
	padding: 9px 10px;
	border-radius: 10px;
	border: 1px solid rgba(37,255,90,.28);
	background: rgba(37,255,90,.06);
	color: var(--px-neon);
	font-family: "Orbitron", sans-serif;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background .18s ease, border-color .18s ease, transform .18s ease;
	min-width: 0;
	white-space: nowrap;
}
.px-comp-card__link:hover {
	background: rgba(37,255,90,.14);
	border-color: var(--px-neon);
	transform: translateY(-1px);
}
.px-comp-card__link svg { width: 14px; height: 14px; }

.px-comp-card__media {
	position: relative; display: block;
	aspect-ratio: 4/3;
	overflow: hidden;
	background: #050a07;
}
.px-comp-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: transform .5s ease;
}
.px-comp-card:hover .px-comp-card__media img { transform: scale(1.05); }
.px-comp-card__badge {
	position: absolute; top: 14px; left: 14px;
	background: rgba(0,0,0,.75); backdrop-filter: blur(8px);
	color: #fff;
	font-family: "Orbitron", sans-serif;
	font-size: 10px; font-weight: 800;
	text-transform: uppercase; letter-spacing: .18em;
	padding: 7px 12px; border-radius: 999px;
	border: 1px solid var(--px-border);
}
.px-comp-card__badge--hot {
	background: linear-gradient(180deg, #ff3c4a, #c8001b);
	border-color: rgba(255,255,255,.15);
	color: #fff;
}
.px-comp-card__badge--closed { background: rgba(20,20,20,.8); color: var(--px-muted); }

.px-comp-card__body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.px-comp-card__title {
	margin: 0;
	font-family: "Orbitron", sans-serif;
	font-size: 17px; line-height: 1.3; font-weight: 700;
	letter-spacing: .01em;
}
.px-comp-card__title a { color: #fff; text-decoration: none; transition: color .15s ease; }
.px-comp-card__title a:hover { color: var(--px-neon); }

.px-comp-card__progress {
	height: 6px; border-radius: 999px;
	background: rgba(255,255,255,.06);
	overflow: hidden;
	box-shadow: inset 0 1px 2px rgba(0,0,0,.5);
}
.px-comp-card__bar {
	height: 100%; width: var(--pct, 0%);
	background: linear-gradient(90deg, var(--px-neon), #8effc5);
	box-shadow: 0 0 10px rgba(37,255,90,.5);
	transition: width .6s ease;
}
.px-comp-card__meta {
	display: flex; justify-content: space-between; align-items: center;
	font-size: 12px; color: var(--px-muted);
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
}
.px-comp-card__meta strong { color: #fff; font-weight: 700; }
.px-comp-card__countdown {
	font-family: "Orbitron", sans-serif;
	color: var(--px-neon);
	font-size: 11px;
	letter-spacing: .08em;
	font-weight: 700;
}
.px-comp-card__foot {
	margin-top: auto;
	display: flex; justify-content: space-between; align-items: center; gap: 12px;
	padding-top: 6px;
	border-top: 1px solid var(--px-border);
}
.px-comp-card__price {
	font-size: 13px; color: var(--px-muted);
	font-family: "Rajdhani", sans-serif;
}
.px-comp-card__price strong {
	color: var(--px-neon);
	font-size: 18px;
	font-weight: 800;
	font-family: "Orbitron", sans-serif;
	margin-left: 4px;
}
.px-comp-card__price strong .woocommerce-Price-amount,
.px-comp-card__price strong .woocommerce-Price-amount bdi,
.px-comp-card__price strong .woocommerce-Price-currencySymbol {
	color: var(--px-neon);
	font: inherit;
	font-size: inherit;
	font-weight: inherit;
	font-family: inherit;
}

/* Sale price (regular crossed-out + new neon price) */
.px-comp-card__price strong del,
.px-comp-card__price strong ins {
	display: inline;
	background: transparent;
	text-decoration: none;
}
.px-comp-card__price strong del {
	color: rgba(255,255,255,.4) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	margin-right: 6px;
	position: relative;
	text-decoration: line-through;
	text-decoration-color: rgba(229,0,31,.6);
	text-decoration-thickness: 1.5px;
}
.px-comp-card__price strong del .woocommerce-Price-amount,
.px-comp-card__price strong del bdi,
.px-comp-card__price strong del .woocommerce-Price-currencySymbol {
	color: rgba(255,255,255,.4) !important;
	-webkit-text-fill-color: rgba(255,255,255,.4) !important;
	font-weight: 600 !important;
	font-size: 13px !important;
}
.px-comp-card__price strong ins {
	color: var(--px-neon);
	font-weight: 800;
	text-decoration: none;
}
.px-comp-card__price strong ins .woocommerce-Price-amount,
.px-comp-card__price strong ins bdi,
.px-comp-card__price strong ins .woocommerce-Price-currencySymbol {
	color: var(--px-neon) !important;
	-webkit-text-fill-color: var(--px-neon) !important;
}

@media (max-width: 960px) { .px-comps__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .px-comps__grid { grid-template-columns: 1fr; } }

.px-empty { text-align: center; color: var(--px-muted); padding: 48px; }


/* =========================================================
   3. HOW IT WORKS
   ========================================================= */
.px-how {
	background: linear-gradient(180deg, var(--px-bg-2), var(--px-bg));
	border-top: 1px solid var(--px-border);
	border-bottom: 1px solid var(--px-border);
}
.px-how__grid {
	list-style: none; padding: 0; margin: 0;
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.px-how__step {
	position: relative;
	padding: 36px 30px 32px;
	border: 1px solid var(--px-border);
	border-radius: 18px;
	background:
		radial-gradient(80% 50% at 0% 0%, rgba(37,255,90,.06), transparent 60%),
		linear-gradient(180deg, #0c140f, #070b08);
	transition: border-color .25s ease, transform .3s ease, box-shadow .3s ease;
	overflow: hidden;
	isolation: isolate;
}
.px-how__step::before {
	content: ''; position: absolute; left: 0; top: 14%; bottom: 14%;
	width: 3px; border-radius: 2px;
	background: var(--px-neon);
	opacity: .25; transition: opacity .3s ease;
}
.px-how__step:hover {
	border-color: rgba(37,255,90,.35);
	transform: translateY(-3px);
	box-shadow: 0 24px 50px -20px rgba(37,255,90,.25);
}
.px-how__step:hover::before { opacity: 1; }
.px-how__num {
	display: block;
	font-family: "Orbitron", sans-serif;
	color: var(--px-neon);
	font-size: 12px; letter-spacing: .25em; font-weight: 800;
	margin-bottom: 18px;
}
.px-how__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 56px; height: 56px;
	border-radius: 14px;
	background: rgba(37,255,90,.10);
	border: 1px solid rgba(37,255,90,.3);
	color: var(--px-neon);
	margin-bottom: 18px;
}
.px-how__step h3 {
	font-family: "Orbitron", sans-serif;
	font-size: 20px; margin: 0 0 10px; color: #fff; font-weight: 700;
	letter-spacing: .01em;
}
.px-how__step p { color: rgba(255,255,255,.65); margin: 0; line-height: 1.6; font-size: 14px; }

@media (max-width: 760px) { .px-how__grid { grid-template-columns: 1fr; } }


/* =========================================================
   4. PROJECT X PACKAGE (full-width hero)
   — Exactly mirrors single-product-lottery.php styling
   ========================================================= */
.px-package-hero { padding: 72px 0 56px; }
.px-package-hero__card {
	position: relative;
	padding: 44px 48px;
	border-radius: 24px;
	border: 1px solid rgba(37,255,90,.25);
	background:
		radial-gradient(80% 60% at 0% 0%, rgba(37,255,90,.14), transparent 60%),
		radial-gradient(60% 80% at 100% 100%, rgba(37,255,90,.08), transparent 55%),
		linear-gradient(180deg, #0e1a11, #070b08);
	box-shadow: 0 30px 80px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(0,0,0,.3) inset;
	overflow: hidden;
	isolation: isolate;
}
.px-package-hero__card::before {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(120deg, transparent 0%, rgba(37,255,90,.06) 50%, transparent 100%);
	background-size: 300% 100%;
	animation: pxPkgFlow 8s linear infinite;
	pointer-events: none; z-index: -1;
}
@keyframes pxPkgFlow {
	0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; }
}
.px-package-hero__head {
	display: flex; align-items: flex-start; gap: 24px;
	margin-bottom: 36px;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(37,255,90,.12);
}
.px-package-hero__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 76px; height: 76px; flex: 0 0 auto;
	border-radius: 18px;
	background: rgba(37,255,90,.12);
	border: 1px solid rgba(37,255,90,.35);
	color: var(--px-neon);
	box-shadow: 0 0 30px rgba(37,255,90,.18);
}
.px-package-hero__head h2 {
	margin: 8px 0 12px;
	font-family: "Orbitron", sans-serif;
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 800;
	color: #fff;
	letter-spacing: .01em;
	line-height: 1.1;
}
.px-package-hero__lead {
	margin: 0;
	color: rgba(255,255,255,.82);
	font-size: 15px;
	line-height: 1.65;
	max-width: 820px;
}
.px-package-hero__lead strong { color: var(--px-neon); font-weight: 700; }

.px-package-hero__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}
.px-package-hero__item {
	padding: 20px 18px;
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,.08);
	background: rgba(255,255,255,.02);
	display: flex; flex-direction: column; gap: 10px;
	transition: border-color .2s ease, background .2s ease, transform .25s ease;
}
.px-package-hero__item:hover {
	border-color: rgba(37,255,90,.35);
	background: rgba(37,255,90,.04);
	transform: translateY(-2px);
}
.px-package-hero__item-ico {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px;
	border-radius: 10px;
	background: rgba(37,255,90,.10);
	border: 1px solid rgba(37,255,90,.28);
	color: var(--px-neon);
}
.px-package-hero__item strong {
	color: #fff;
	font-family: "Orbitron", sans-serif;
	font-weight: 700;
	font-size: 13px;
	line-height: 1.25;
	letter-spacing: .01em;
}
.px-package-hero__item span {
	color: rgba(255,255,255,.6);
	font-size: 12px;
	line-height: 1.4;
}

@media (max-width: 960px) {
	.px-package-hero__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.px-package-hero__card { padding: 32px 26px; }
}
@media (max-width: 720px) {
	.px-package-hero { padding: 48px 0 32px; }
	.px-package-hero__card { padding: 26px 20px; border-radius: 18px; }
	.px-package-hero__head { flex-direction: column; gap: 14px; margin-bottom: 24px; padding-bottom: 20px; }
	.px-package-hero__icon { width: 56px; height: 56px; }
	.px-package-hero__head h2 { font-size: 24px; margin: 6px 0 8px; }
	.px-package-hero__lead { font-size: 14px; }
	.px-package-hero__grid { grid-template-columns: 1fr; gap: 10px; }
	.px-package-hero__item { padding: 14px; flex-direction: row; align-items: center; gap: 12px; }
	.px-package-hero__item-ico { width: 38px; height: 38px; flex: 0 0 auto; }
	.px-package-hero__item strong { font-size: 13px; }
	.px-package-hero__item > span:not(.px-package-hero__item-ico) { display: none; }
}


/* =========================================================
   5. WINNERS
   ========================================================= */
.px-winners {
	background: linear-gradient(180deg, var(--px-bg), var(--px-bg-2));
	border-top: 1px solid var(--px-border);
	border-bottom: 1px solid var(--px-border);
}
.px-winners__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.px-winner {
	margin: 0; position: relative;
	border-radius: 16px; overflow: hidden;
	aspect-ratio: 1;
	border: 1px solid var(--px-border);
	transition: transform .3s ease, border-color .2s ease, box-shadow .3s ease;
	isolation: isolate;
}
.px-winner:hover {
	transform: translateY(-3px);
	border-color: rgba(37,255,90,.4);
	box-shadow: 0 20px 40px -15px rgba(37,255,90,.25);
}
.px-winner img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(.15) saturate(.95); transition: filter .35s ease, transform .5s ease; }
.px-winner:hover img { filter: grayscale(0) saturate(1); transform: scale(1.05); }
.px-winner figcaption {
	position: absolute; bottom: 0; left: 0; right: 0;
	padding: 16px 14px 14px;
	background: linear-gradient(180deg, transparent, rgba(0,0,0,.92) 60%);
	display: flex; flex-direction: column; gap: 2px;
	font-size: 12px;
}
.px-winner__prize {
	color: var(--px-neon);
	font-family: "Orbitron", sans-serif;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .2em;
}
.px-winner figcaption strong {
	color: #fff; font-size: 14px; font-weight: 700;
	font-family: "Rajdhani", sans-serif;
}

@media (max-width: 1000px) { .px-winners__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .px-winners__grid { grid-template-columns: repeat(2, 1fr); } }


/* =========================================================
   6. ELITE TEASER
   ========================================================= */
.px-elite {
	background:
		radial-gradient(60% 80% at 80% 50%, rgba(212,175,55,.15), transparent 70%),
		linear-gradient(180deg, #0a0705, #0d0a03);
	border-top: 1px solid rgba(212,175,55,.15);
	border-bottom: 1px solid rgba(212,175,55,.15);
}
.px-elite__inner { max-width: 820px; }
.px-elite__eyebrow {
	color: var(--px-gold);
	font-family: "Orbitron", sans-serif;
	text-transform: uppercase; letter-spacing: .25em;
	font-size: 11px; font-weight: 800;
	margin: 0 0 16px;
}
.px-elite__title {
	font-family: "Orbitron", sans-serif;
	font-size: clamp(38px, 5vw, 64px);
	font-weight: 900; text-transform: uppercase;
	margin: 0 0 20px;
	background: linear-gradient(135deg, #f5d97a, #d4af37 50%, #8b6f12);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: .01em;
	line-height: 1;
}
.px-elite__x { color: var(--px-red); -webkit-text-fill-color: var(--px-red); }
.px-elite p { color: #c7bfa3; max-width: 60ch; margin: 0 0 28px; line-height: 1.65; font-size: 16px; }


/* =========================================================
   7. FAQ
   ========================================================= */
.px-faq__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.px-faq details {
	border: 1px solid var(--px-border);
	border-radius: 14px;
	padding: 20px 24px;
	background: linear-gradient(180deg, var(--px-card), var(--px-bg));
	transition: border-color .25s ease, background .25s ease;
}
.px-faq details[open] {
	border-color: rgba(37,255,90,.3);
	background: linear-gradient(180deg, rgba(37,255,90,.04), var(--px-bg));
}
.px-faq summary {
	cursor: pointer;
	font-family: "Orbitron", sans-serif;
	font-weight: 700; color: #fff;
	list-style: none; position: relative; padding-right: 32px;
	font-size: 15px; letter-spacing: .01em;
}
.px-faq summary::-webkit-details-marker { display: none; }
.px-faq summary::after {
	content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
	color: var(--px-neon); font-size: 24px; line-height: 1; transition: transform .25s ease;
	font-weight: 300;
}
.px-faq details[open] summary::after { content: "−"; }
.px-faq details p { color: rgba(255,255,255,.7); margin: 14px 0 0; line-height: 1.65; font-size: 14px; font-family: "Inter", sans-serif; }

.px-faq__cta { text-align: center; margin-top: 48px; }


/* =========================================================
   MOBILE SECTION PADDING TRIM
   ========================================================= */
@media (max-width: 720px) {
	.px-section { padding: 64px 0; }
	.px-section__head { margin-bottom: 32px; }
	.px-section__sub { margin-bottom: 32px; }
}
