/**
 * PlayRox Creator landing page.
 *
 * A standalone marketing front page. Self-contained — it renders its own
 * document, so nothing here depends on the newsroom stylesheet and nothing
 * in the newsroom can override it.
 */

.pxl {
	--pxl-bg: #07061A;
	--pxl-bg2: #0B0A24;
	--pxl-card: #12112E;
	--pxl-card2: #171636;
	--pxl-line: rgba( 148, 152, 220, .13 );
	--pxl-ink: #F2F3FF;
	--pxl-mut: #9095C4;
	--pxl-violet: #8B5CF6;
	--pxl-violet2: #A78BFA;
	--pxl-blue: #3B82F6;
	--pxl-pink: #EC4899;
	--pxl-green: #22C55E;
	--pxl-max: 1180px;

	margin: 0;
	background: var( --pxl-bg );
	color: var( --pxl-ink );
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

.pxl *,
.pxl *::before,
.pxl *::after {
	box-sizing: border-box;
}

.pxl img {
	max-width: 100%;
}

.pxl__in {
	width: 100%;
	max-width: var( --pxl-max );
	margin: 0 auto;
	padding: 0 22px;
}

.pxl a {
	text-decoration: none;
	color: inherit;
}

/* ===== Buttons ===== */

.pxl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	height: 46px;
	padding: 0 22px;
	border-radius: 999px;
	font-size: 14.5px;
	font-weight: 700;
	white-space: nowrap;
	border: 0;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.pxl-btn--primary {
	background: linear-gradient( 100deg, #8B5CF6, #6D3BF5 );
	color: #fff;
	box-shadow: 0 10px 30px rgba( 139, 92, 246, .35 );
}

.pxl-btn--primary:hover {
	transform: translateY( -2px );
	box-shadow: 0 14px 38px rgba( 139, 92, 246, .48 );
}

.pxl-btn--ghost {
	background: rgba( 148, 152, 220, .07 );
	border: 1px solid var( --pxl-line );
	color: var( --pxl-ink );
}

.pxl-btn--ghost:hover {
	border-color: rgba( 139, 92, 246, .5 );
	background: rgba( 139, 92, 246, .12 );
}

.pxl-btn--lg {
	height: 54px;
	padding: 0 30px;
	font-size: 15.5px;
}

/* ===== Nav ===== */

.pxl-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba( 7, 6, 26, .82 );
	backdrop-filter: blur( 16px );
	-webkit-backdrop-filter: blur( 16px );
	border-bottom: 1px solid rgba( 148, 152, 220, .09 );
}

.pxl-nav__in {
	display: flex;
	align-items: center;
	gap: 20px;
	height: 66px;
}

.pxl-brand {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: 1.4px;
}

.pxl-brand__mark {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 9px;
	background: linear-gradient( 135deg, #8B5CF6, #3B82F6 );
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	box-shadow: 0 5px 16px rgba( 139, 92, 246, .45 );
}

.pxl-nav__links {
	display: flex;
	align-items: center;
	gap: 26px;
	margin: 0 auto;
	font-size: 13.5px;
	font-weight: 500;
	color: var( --pxl-mut );
}

.pxl-nav__links a:hover {
	color: var( --pxl-ink );
}

.pxl-nav__right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.pxl-nav__login {
	font-size: 13.5px;
	font-weight: 600;
	color: var( --pxl-mut );
}

.pxl-nav__login:hover {
	color: var( --pxl-ink );
}

/* ===== Hero ===== */

.pxl-hero {
	position: relative;
	padding: 58px 0 72px;
	overflow: hidden;
}

.pxl-hero::before,
.pxl-hero::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur( 90px );
	pointer-events: none;
}

.pxl-hero::before {
	top: -140px;
	left: -110px;
	width: 420px;
	height: 420px;
	background: rgba( 139, 92, 246, .3 );
}

.pxl-hero::after {
	top: 40px;
	right: -160px;
	width: 460px;
	height: 460px;
	background: rgba( 59, 130, 246, .2 );
}

.pxl-hero__in {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax( 0, 0.86fr ) minmax( 0, 1.14fr );
	gap: 42px;
	align-items: center;
}

.pxl-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	height: 30px;
	padding: 0 15px;
	border-radius: 999px;
	background: rgba( 139, 92, 246, .14 );
	border: 1px solid rgba( 139, 92, 246, .4 );
	font-size: 12px;
	font-weight: 600;
	color: var( --pxl-violet2 );
}

.pxl-hero h1 {
	margin: 20px 0 0;
	font-size: clamp( 32px, 4vw, 46px );
	font-weight: 800;
	line-height: 1.13;
	letter-spacing: -1.1px;
}

.pxl-hero h1 em {
	display: block;
	font-style: normal;
	background: linear-gradient( 96deg, #A78BFA 8%, #EC4899 92% );
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.pxl-hero__lede {
	margin: 20px 0 0;
	max-width: 430px;
	font-size: 14.5px;
	line-height: 1.65;
	color: var( --pxl-mut );
}

.pxl-checks {
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 11px;
}

.pxl-checks li {
	display: flex;
	align-items: center;
	gap: 11px;
	font-size: 13.5px;
	font-weight: 500;
	color: #D5D8F5;
}

.pxl-checks svg {
	flex: 0 0 auto;
	color: var( --pxl-violet2 );
}

.pxl-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 28px;
}

.pxl-trust {
	margin-top: 34px;
}

.pxl-trust__lb {
	margin: 0 0 12px;
	font-size: 12.5px;
	font-weight: 600;
	color: var( --pxl-mut );
}

.pxl-avatars {
	display: flex;
	align-items: center;
}

.pxl-avatars span {
	width: 36px;
	height: 36px;
	margin-right: -9px;
	border-radius: 50%;
	border: 2px solid var( --pxl-bg );
	background: linear-gradient( 140deg, #3B2A6B, #7C4DBE );
	display: grid;
	place-items: center;
	font-size: 13px;
}

.pxl-avatars b {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin-left: 14px;
	border-radius: 50%;
	background: rgba( 148, 152, 220, .12 );
	border: 1px solid var( --pxl-line );
	font-size: 11px;
	font-weight: 700;
	color: #C6C9EE;
}

/* ===== Dashboard mockup ===== */

.pxl-shot {
	position: relative;
	padding: 12px;
	border-radius: 20px;
	background: linear-gradient( 165deg, rgba( 139, 92, 246, .32 ), rgba( 59, 130, 246, .12 ) );
	border: 1px solid rgba( 139, 92, 246, .32 );
	box-shadow: 0 30px 80px rgba( 0, 0, 0, .55 );
}

.pxl-shot__body {
	display: grid;
	grid-template-columns: 132px minmax( 0, 1fr );
	gap: 14px;
	padding: 14px;
	border-radius: 14px;
	background: #0C0B22;
}

.pxl-side {
	display: grid;
	gap: 3px;
	align-content: start;
	font-size: 11px;
	color: var( --pxl-mut );
}

.pxl-side__hd {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 9px;
	font-size: 11.5px;
	font-weight: 700;
	color: var( --pxl-ink );
}

.pxl-side__hd i {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 7px;
	background: linear-gradient( 135deg, #8B5CF6, #3B82F6 );
	font-style: normal;
	font-size: 11px;
	font-weight: 900;
	color: #fff;
}

.pxl-side a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 9px;
	border-radius: 8px;
}

.pxl-side a.is-on {
	background: rgba( 139, 92, 246, .2 );
	color: #DDD6FE;
	font-weight: 600;
}

.pxl-side em {
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
	opacity: .5;
}

.pxl-shot__main {
	min-width: 0;
}

.pxl-shot__top {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	margin-bottom: 12px;
}

.pxl-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 9px;
	border-radius: 999px;
	background: rgba( 148, 152, 220, .1 );
	border: 1px solid var( --pxl-line );
	font-size: 10.5px;
	font-weight: 700;
}

.pxl-chip--gold { color: #FACC15; }
.pxl-chip--gem  { color: var( --pxl-violet2 ); }

.pxl-chip__ava {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: linear-gradient( 140deg, #7C4DBE, #EC4899 );
}

.pxl-shot__hi {
	margin: 0 0 2px;
	font-size: 14px;
	font-weight: 800;
}

.pxl-shot__sub {
	margin: 0 0 12px;
	font-size: 10.5px;
	color: var( --pxl-mut );
}

.pxl-stats {
	display: grid;
	grid-template-columns: repeat( 4, minmax( 0, 1fr ) );
	gap: 8px;
	margin-bottom: 12px;
}

.pxl-stat {
	padding: 9px 10px;
	border-radius: 10px;
	background: var( --pxl-card );
	border: 1px solid var( --pxl-line );
}

.pxl-stat span {
	display: block;
	font-size: 9px;
	color: var( --pxl-mut );
}

.pxl-stat b {
	display: block;
	margin: 3px 0 2px;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -.3px;
}

.pxl-stat i {
	font-style: normal;
	font-size: 9px;
	font-weight: 700;
	color: #4ADE80;
}

.pxl-promo {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 16px;
	margin-bottom: 14px;
	border-radius: 12px;
	background: linear-gradient( 100deg, #7C3AED, #A855F7 60%, #C026D3 );
	overflow: hidden;
}

.pxl-promo__txt {
	flex: 1;
	min-width: 0;
}

.pxl-promo h4 {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: .2px;
}

.pxl-promo p {
	margin: 0 0 10px;
	font-size: 10.5px;
	line-height: 1.5;
	color: rgba( 255, 255, 255, .82 );
}

.pxl-promo__btn {
	display: inline-flex;
	align-items: center;
	height: 27px;
	padding: 0 13px;
	border-radius: 999px;
	background: rgba( 255, 255, 255, .18 );
	border: 1px solid rgba( 255, 255, 255, .3 );
	font-size: 10.5px;
	font-weight: 700;
}

.pxl-promo__art {
	flex: 0 0 auto;
	display: flex;
	align-items: flex-end;
	gap: 6px;
	font-size: 34px;
	line-height: 1;
}

.pxl-shot__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 9px;
}

.pxl-shot__row b {
	font-size: 12px;
	font-weight: 800;
}

.pxl-shot__row a {
	font-size: 10px;
	color: var( --pxl-violet2 );
	font-weight: 600;
}

.pxl-games {
	display: grid;
	grid-template-columns: repeat( 4, minmax( 0, 1fr ) );
	gap: 8px;
}

.pxl-game {
	position: relative;
	height: 82px;
	border-radius: 10px;
	overflow: hidden;
	display: grid;
	place-items: center;
	padding: 8px;
	text-align: center;
	font-size: 9.5px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: .3px;
	text-transform: uppercase;
	color: #fff;
	text-shadow: 0 1px 5px rgba( 0, 0, 0, .6 );
}

.pxl-game--a { background: linear-gradient( 155deg, #7F1D1D, #DC2626 ); }
.pxl-game--b { background: linear-gradient( 155deg, #1E3A8A, #2563EB ); }
.pxl-game--c { background: linear-gradient( 155deg, #312E81, #7C3AED ); }
.pxl-game--d { background: linear-gradient( 155deg, #7C2D12, #EA580C ); }

/* ===== Section scaffolding ===== */

.pxl-sec {
	position: relative;
	padding: 66px 0;
}

.pxl-sec--tint {
	background: var( --pxl-bg2 );
}

.pxl-eyebrow {
	margin: 0 0 12px;
	text-align: center;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 2.4px;
	text-transform: uppercase;
	color: var( --pxl-violet2 );
}

.pxl-h2 {
	margin: 0 0 42px;
	text-align: center;
	font-size: clamp( 24px, 3.1vw, 33px );
	font-weight: 800;
	letter-spacing: -.7px;
}

.pxl-h2 em {
	font-style: normal;
	background: linear-gradient( 96deg, #A78BFA, #EC4899 );
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* ===== Steps ===== */

.pxl-steps {
	display: grid;
	grid-template-columns: repeat( 4, minmax( 0, 1fr ) );
	gap: 14px;
	align-items: stretch;
}

.pxl-step {
	position: relative;
	padding: 26px 20px 24px;
	border-radius: 16px;
	background: var( --pxl-card );
	border: 1px solid var( --pxl-line );
	text-align: center;
	transition: transform .18s ease, border-color .18s ease;
}

.pxl-step:hover {
	transform: translateY( -4px );
	border-color: rgba( 139, 92, 246, .45 );
}

/* The arrow between steps. Absolute so it never eats grid width. */
.pxl-step:not( :last-child )::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -14px;
	width: 14px;
	height: 14px;
	transform: translateY( -50% );
	background: var( --pxl-mut );
	opacity: .55;
	-webkit-mask: no-repeat center/12px url( "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h13M13 6l6 6-6 6'/%3E%3C/svg%3E" );
	mask: no-repeat center/12px url( "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h13M13 6l6 6-6 6'/%3E%3C/svg%3E" );
}

.pxl-step__n {
	position: absolute;
	top: 14px;
	left: 16px;
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 8px;
	background: rgba( 148, 152, 220, .12 );
	border: 1px solid var( --pxl-line );
	font-size: 11.5px;
	font-weight: 800;
	color: #C6C9EE;
}

.pxl-step__ic {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin: 6px auto 16px;
	border-radius: 16px;
	font-size: 28px;
	line-height: 1;
	box-shadow: 0 8px 22px rgba( 0, 0, 0, .4 );
}

.pxl-step__ic--violet { background: linear-gradient( 150deg, #6D28D9, #A855F7 ); }
.pxl-step__ic--teal   { background: linear-gradient( 150deg, #0F766E, #14B8A6 ); }
.pxl-step__ic--blue   { background: linear-gradient( 150deg, #1D4ED8, #3B82F6 ); }
.pxl-step__ic--pink   { background: linear-gradient( 150deg, #9D174D, #EC4899 ); }

.pxl-step h3 {
	margin: 0 0 8px;
	font-size: 14.5px;
	font-weight: 700;
}

.pxl-step p {
	margin: 0;
	font-size: 12px;
	line-height: 1.6;
	color: var( --pxl-mut );
}

/* ===== Feature grid ===== */

.pxl-feats {
	display: grid;
	grid-template-columns: repeat( 6, minmax( 0, 1fr ) );
	gap: 13px;
}

.pxl-feat {
	padding: 24px 17px 22px;
	border-radius: 15px;
	background: var( --pxl-card );
	border: 1px solid var( --pxl-line );
	transition: transform .18s ease, border-color .18s ease;
}

.pxl-feat:hover {
	transform: translateY( -4px );
	border-color: rgba( 139, 92, 246, .45 );
}

.pxl-feat__ic {
	display: block;
	margin-bottom: 15px;
	font-size: 40px;
	line-height: 1;
	filter: drop-shadow( 0 6px 14px rgba( 0, 0, 0, .45 ) );
}

.pxl-feat h3 {
	margin: 0 0 7px;
	font-size: 13.5px;
	font-weight: 700;
}

.pxl-feat p {
	margin: 0;
	font-size: 11.5px;
	line-height: 1.6;
	color: var( --pxl-mut );
}

/* ===== Built-for panel ===== */

.pxl-built {
	position: relative;
	padding: 34px 30px 30px;
	border-radius: 20px;
	background: linear-gradient( 120deg, rgba( 139, 92, 246, .16 ), rgba( 59, 130, 246, .08 ) );
	border: 1px solid rgba( 139, 92, 246, .26 );
	overflow: hidden;
}

.pxl-built h2 {
	margin: 0 0 26px;
	text-align: center;
	font-size: clamp( 20px, 2.5vw, 26px );
	font-weight: 800;
	letter-spacing: -.5px;
}

.pxl-built__grid {
	display: grid;
	grid-template-columns: repeat( 5, minmax( 0, 1fr ) );
	gap: 18px;
}

.pxl-built__cell {
	text-align: center;
}

.pxl-built__cell span {
	display: block;
	margin-bottom: 12px;
	font-size: 34px;
	line-height: 1;
	filter: drop-shadow( 0 5px 12px rgba( 0, 0, 0, .4 ) );
}

.pxl-built__cell b {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 700;
}

.pxl-built__cell p {
	margin: 0;
	font-size: 11.5px;
	line-height: 1.55;
	color: var( --pxl-mut );
}

/* ===== Closing CTA ===== */

.pxl-cta {
	position: relative;
	padding: 60px 0 66px;
	overflow: hidden;
}

.pxl-cta__in {
	position: relative;
	display: grid;
	grid-template-columns: 1fr minmax( 0, 520px ) 1fr;
	align-items: center;
	gap: 20px;
}

.pxl-cta__mid {
	text-align: center;
}

.pxl-cta h2 {
	margin: 0 0 12px;
	font-size: clamp( 24px, 3.2vw, 33px );
	font-weight: 800;
	letter-spacing: -.7px;
}

.pxl-cta h2 em {
	font-style: normal;
	background: linear-gradient( 96deg, #A78BFA, #EC4899 );
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.pxl-cta p {
	margin: 0 auto 22px;
	max-width: 420px;
	font-size: 13.5px;
	line-height: 1.65;
	color: var( --pxl-mut );
}

.pxl-cta__note {
	margin: 16px 0 0;
	font-size: 11.5px;
	color: var( --pxl-mut );
}

.pxl-cta__art {
	font-size: 118px;
	line-height: 1;
	text-align: center;
	filter: drop-shadow( 0 14px 40px rgba( 139, 92, 246, .55 ) );
}

.pxl-cta__art--r {
	text-align: center;
}

/* ===== Footer ===== */

.pxl-foot {
	padding: 46px 0 24px;
	background: #060514;
	border-top: 1px solid rgba( 148, 152, 220, .09 );
}

.pxl-foot__in {
	display: grid;
	grid-template-columns: 1.6fr repeat( 4, minmax( 0, 1fr ) );
	gap: 26px;
}

.pxl-foot__blurb {
	margin: 14px 0 0;
	max-width: 230px;
	font-size: 12px;
	line-height: 1.65;
	color: var( --pxl-mut );
}

.pxl-foot h4 {
	margin: 0 0 14px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: #C6C9EE;
}

.pxl-foot ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 9px;
	font-size: 12.5px;
	color: var( --pxl-mut );
}

.pxl-foot ul a:hover {
	color: var( --pxl-ink );
}

.pxl-social {
	display: flex;
	gap: 9px;
}

.pxl-social a {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 9px;
	background: rgba( 148, 152, 220, .09 );
	border: 1px solid var( --pxl-line );
	color: var( --pxl-mut );
}

.pxl-social a:hover {
	color: #fff;
	border-color: rgba( 139, 92, 246, .5 );
	background: rgba( 139, 92, 246, .16 );
}

.pxl-foot__base {
	margin-top: 34px;
	padding-top: 18px;
	border-top: 1px solid rgba( 148, 152, 220, .09 );
	text-align: center;
	font-size: 11.5px;
	color: var( --pxl-mut );
}

/* ===== Responsive ===== */

@media ( max-width: 1000px ) {

	.pxl-hero__in {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.pxl-hero__lede {
		max-width: none;
	}

	.pxl-feats {
		grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
	}

	.pxl-built__grid {
		grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
		gap: 22px;
	}

	.pxl-foot__in {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media ( max-width: 760px ) {

	/*
	 * No burger, so nothing would open a hidden menu — and squeezing the
	 * links into the row collides with Apply Now. They are all same-page
	 * anchors, so on a phone the nav is the logo and the one action, and
	 * the sections are simply scrolled to.
	 */
	.pxl-nav__links {
		display: none;
	}

	.pxl-nav__in {
		justify-content: space-between;
		gap: 14px;
	}

	.pxl-steps {
		grid-template-columns: 1fr 1fr;
	}

	/* Arrows only make sense in a single row. */
	.pxl-step::after {
		display: none;
	}

	.pxl-shot__body {
		grid-template-columns: 1fr;
	}

	.pxl-side {
		display: none;
	}

	.pxl-stats {
		grid-template-columns: 1fr 1fr;
	}

	.pxl-cta__in {
		grid-template-columns: 1fr;
	}

	.pxl-cta__art {
		font-size: 62px;
	}
}

@media ( max-width: 560px ) {

	.pxl-sec {
		padding: 46px 0;
	}

	.pxl-feats,
	.pxl-built__grid {
		grid-template-columns: 1fr 1fr;
	}

	.pxl-games {
		grid-template-columns: 1fr 1fr;
	}

	.pxl-foot__in {
		grid-template-columns: 1fr 1fr;
	}

	.pxl-hero__cta .pxl-btn {
		flex: 1 1 100%;
	}
}

/*--------------------------------------------------------------
# Icon Lobby artwork
#
# Uploaded illustrations replace the emoji in place. Each slot sizes
# the image to the space the emoji occupied, so a swap never shifts
# the layout around it.
--------------------------------------------------------------*/

.pxl-ico {
	display: block;
	width: auto;
	height: auto;
	object-fit: contain;
}

/*
 * Base sizes below are multiplied by --pxl-ico-scale, which the Icon Lobby
 * sets per slot (1 = the default). Raised across the board from the first
 * pass, where uploaded artwork sat noticeably smaller than the emoji it
 * replaced.
 */
.pxl-ico {
	--pxl-ico-scale: 1;
}

/* Step tiles: artwork sits inside the gradient square. */
.pxl-step__ic .pxl-ico {
	max-width: calc( 46px * var( --pxl-ico-scale ) );
	max-height: calc( 46px * var( --pxl-ico-scale ) );
}

/* With real artwork the gradient tile becomes a frame rather than the
   icon itself, so soften it and let the art carry the colour. */
.pxl-step__ic.has-art {
	/* fit-content, not auto: a grid block with width:auto fills its
	   container, which stretched the tile across the whole card. */
	width: fit-content;
	height: auto;
	min-width: 58px;
	min-height: 58px;
	padding: 6px;
	background-image: none;
	background: rgba( 148, 152, 220, .1 );
	border: 1px solid var( --pxl-line );
	box-shadow: none;
}

.pxl-feat__ic .pxl-ico {
	max-width: calc( 64px * var( --pxl-ico-scale ) );
	max-height: calc( 64px * var( --pxl-ico-scale ) );
}

.pxl-built__cell span .pxl-ico {
	max-width: calc( 56px * var( --pxl-ico-scale ) );
	max-height: calc( 56px * var( --pxl-ico-scale ) );
	margin: 0 auto;
}

.pxl-promo__art .pxl-ico {
	max-width: calc( 92px * var( --pxl-ico-scale ) );
	max-height: calc( 74px * var( --pxl-ico-scale ) );
}

.pxl-cta__art .pxl-ico {
	max-width: calc( 230px * var( --pxl-ico-scale ) );
	max-height: calc( 210px * var( --pxl-ico-scale ) );
	margin: 0 auto;
}

/* Game tiles take a full-bleed cover image; the label stays readable
   over it with a bottom scrim. */
.pxl-game span {
	position: relative;
	z-index: 1;
}

.pxl-game.has-art {
	background-size: cover;
	background-position: center;
	align-items: end;
	justify-items: center;
}

.pxl-game.has-art::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient( to top, rgba( 0, 0, 0, .78 ) 0%, rgba( 0, 0, 0, .1 ) 55%, transparent 100% );
}

@media ( max-width: 760px ) {

	.pxl-cta__art .pxl-ico {
		max-width: calc( 130px * var( --pxl-ico-scale ) );
		max-height: calc( 120px * var( --pxl-ico-scale ) );
	}
}

/* Hero artwork uploaded through the Icon Lobby, in place of the built-in
   dashboard mockup. Sized to the same column so swapping one for the other
   leaves the rest of the hero where it was. */
.pxl-heroart {
	position: relative;
	display: grid;
	place-items: center;
}

.pxl-heroart img {
	display: block;
	width: calc( 100% * var( --pxl-ico-scale, 1 ) );
	max-width: 100%;
	height: auto;
	border-radius: 18px;
	filter: drop-shadow( 0 30px 70px rgba( 0, 0, 0, .55 ) );
}

/*--------------------------------------------------------------
# Apply Now button
--------------------------------------------------------------*/

.apply-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	min-width: 130px;
	height: 38px;
	padding: 0 18px;
	border: 1px solid rgba( 255, 255, 255, .25 );
	border-radius: 7px;
	background: linear-gradient( 100deg, #c52cff 0%, #8b2be2 45%, #008cff 100% );
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 5px 18px rgba( 116, 30, 255, .3 );
	transition: all .2s ease;
}

.apply-btn:hover {
	transform: translateY( -2px );
	box-shadow: 0 8px 24px rgba( 116, 30, 255, .45 );
	filter: brightness( 1.08 );
}

.apply-btn:active {
	transform: translateY( 0 );
}

.apply-btn .arrow {
	font-size: 15px;
	line-height: 1;
}

/* Site logo in place of the lettermark. Height-capped so a wide or tall
   upload both land on the same 66px nav row without resizing it. */
.pxl-brand__logo {
	display: block;
	max-height: 34px;
	max-width: 190px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.pxl-foot .pxl-brand__logo {
	max-height: 30px;
}
