/*--------------------------------------------------------------
# PlayRox Game Room — V5 "Green Room"
#
# Light green-and-white design in the ZamZam Games reference
# style. One DOM serves both breakpoints: mobile is an app shell
# with a bottom nav; from 981px the top bar, hero stat strip and
# section sidebars take over.
#
# Everything is scoped to .pxz / body.playrox-gameroom-v5-page,
# so no other dashboard or the newsroom is affected.
--------------------------------------------------------------*/

.pxz {
	--pxz-green: #16A34A;
	--pxz-green-2: #22C55E;
	--pxz-green-dark: #006B3C;
	--pxz-green-soft: #E7F6EC;
	--pxz-ink: #0F172A;
	--pxz-mut: #64748B;
	--pxz-faint: #94A3B8;
	--pxz-bg: #F4F6F8;
	--pxz-card: #FFFFFF;
	--pxz-line: #E8ECF0;
	--pxz-gold: #F5B301;
	--pxz-gold-soft: #FEF3C7;
	--pxz-blue: #3B82F6;
	--pxz-dark: #006B3C;
	--pxz-radius: 18px;
	--pxz-shadow: 0 6px 22px rgba( 15, 23, 42, .06 );
	--pxz-grad: linear-gradient( 100deg, #22C55E, #006B3C );

	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: var( --pxz-ink );
	background: var( --pxz-bg );
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	-webkit-font-smoothing: antialiased;
}

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

/* :where() keeps these resets at zero specificity, so every component
   rule below wins over them regardless of its own weight. */
.pxz :where( button, [type="button"], [type="submit"] ) {
	font-family: inherit;
	border: 0;
	background: none;
	cursor: pointer;
	color: inherit;
	padding: 0;
}

.pxz :where( a ) {
	text-decoration: none;
	color: inherit;
}

.pxz :where( img ) {
	max-width: 100%;
	display: block;
}

.pxz .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect( 0 0 0 0 );
	white-space: nowrap;
}

/* Page chrome: the room is a full app surface. */
body.playrox-gameroom-v5-page .footer-outer,
body.playrox-gameroom-v5-page .colophon-outer {
	display: none;
}

body.playrox-gameroom-v5-page {
	background: #F4F6F8;
	overflow-x: hidden;
}

body.playrox-gameroom-v5-page .playrox-page-canvas {
	max-width: none;
	padding: 0;
	margin: 0;
}

/*--------------------------------------------------------------
# Theme isolation
#
# The room renders inside a news theme whose stylesheet styles bare
# element selectors — button, a, h2, article. Those beat a zero-
# specificity :where() reset, which is how the "See All" link picked
# up the old dark-green button skin. Everything below re-neutralises
# the theme at one class of specificity, so the room's own component
# rules (also one class, but later in the file) still win.
--------------------------------------------------------------*/

.pxz :where( button, [type="button"], [type="submit"] ) {
	box-shadow: none;
	text-transform: none;
	letter-spacing: normal;
	line-height: 1.3;
	min-height: 0;
	width: auto;
	transition: none;
}

.pxz :where( h1, h2, h3, h4, h5, h6 ) {
	margin: 0;
	padding: 0;
	font-family: inherit;
	line-height: 1.25;
	letter-spacing: normal;
	text-transform: none;
	color: inherit;
}

.pxz :where( h1, h2, h3, h4, h5, h6 )::before,
.pxz :where( h1, h2, h3, h4, h5, h6 )::after {
	content: none;
}

.pxz :where( p, ul, ol, li, figure ) {
	margin: 0;
	padding: 0;
	list-style: none;
}

.pxz :where( article, section, header, nav, aside, main ) {
	background: none;
	border: 0;
	box-shadow: none;
	padding: 0;
	margin: 0;
}

.pxz :where( input, select, textarea ) {
	box-shadow: none;
	line-height: 1.3;
	min-height: 0;
}

.pxz :where( a ):link,
.pxz :where( a ):visited,
.pxz :where( a ):hover,
.pxz :where( a ):active {
	color: inherit;
	text-decoration: none;
}

/* Generated cover art fills its tile whatever the theme says about svg. */
.pxz .pxg-card__art {
	width: 100%;
	height: 100%;
	display: block;
}

.pxz .pxz-game__cover img,
.pxz .pxz-game__cover svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/*--------------------------------------------------------------
# Shell
--------------------------------------------------------------*/

.pxz-main {
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
	padding: 14px 16px calc( 86px + env( safe-area-inset-bottom, 0px ) );
	flex: 1;
}

.pxz-pane {
	display: none;
	animation: pxz-in .28s ease both;
}

.pxz-pane.is-on {
	display: block;
}

@keyframes pxz-in {
	from { opacity: 0; transform: translateY( 8px ); }
	to   { opacity: 1; transform: none; }
}

.pxz-empty {
	margin: 26px 4px;
	color: var( --pxz-mut );
	font-size: 14px;
	text-align: center;
}

/*--------------------------------------------------------------
# Mobile pane headers
--------------------------------------------------------------*/

.pxz-mhead {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin: 2px 0 12px;
	position: relative;
}

.pxz-mhead--brand {
	justify-content: space-between;
}

.pxz-mhead--end {
	justify-content: flex-end;
}

.pxz-mhead__title {
	margin: 0;
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -.2px;
}

.pxz-mhead__bell {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var( --pxz-card );
	border: 1px solid var( --pxz-line );
	color: var( --pxz-ink );
	box-shadow: var( --pxz-shadow );
}

.pxz-mhead__signin {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	background: var( --pxz-green );
	border-radius: 99px;
	padding: 9px 16px;
}

/* Brand wordmark: first word ink, last word green — as the
   reference logo does. */
.pxz-brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.pxz-brand__img {
	max-height: 40px;
	width: auto;
}

.pxz-brand__txt {
	display: inline-flex;
	flex-direction: column;
	line-height: 1;
	font-weight: 900;
	letter-spacing: -.4px;
	text-transform: uppercase;
	font-size: 19px;
}

.pxz-brand__txt b {
	color: var( --pxz-ink );
	font-weight: 900;
}

.pxz-brand__txt i {
	font-style: normal;
	color: var( --pxz-green );
}

/*--------------------------------------------------------------
# Desktop top bar (hidden on mobile)
--------------------------------------------------------------*/

.pxz-topbar {
	display: none;
}

/*--------------------------------------------------------------
# Hero banner
--------------------------------------------------------------*/

.pxz-hero {
	position: relative;
	border-radius: 22px;
	overflow: hidden;
	min-height: 380px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background-color: var( --pxz-dark );
	background-size: cover;
	background-position: center top;
	box-shadow: 0 16px 40px rgba( 5, 46, 22, .22 );
}

.pxz-hero__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient( 180deg, rgba( 4, 15, 8, .18 ) 0%, rgba( 4, 15, 8, .05 ) 38%, rgba( 4, 15, 8, .82 ) 86% );
}

.pxz-hero__brush {
	position: absolute;
	top: -50px;
	left: -60px;
	width: 240px;
	height: 240px;
	background: radial-gradient( circle at 30% 30%, rgba( 34, 197, 94, .5 ), transparent 65% );
	transform: rotate( -18deg );
	pointer-events: none;
}

.pxz-hero__copy {
	position: relative;
	padding: 0 22px 20px;
	text-align: center;
}

.pxz-hero__script {
	display: block;
	font-style: italic;
	font-weight: 600;
	color: #E8FBEE;
	font-size: 15px;
	margin-bottom: 6px;
	text-shadow: 0 2px 10px rgba( 0, 0, 0, .5 );
}

.pxz-hero__name {
	margin: 0;
	color: #fff;
	font-size: 34px;
	line-height: .98;
	font-weight: 900;
	letter-spacing: -.5px;
	text-transform: uppercase;
	text-shadow: 0 3px 16px rgba( 0, 0, 0, .55 );
}

.pxz-hero__name span {
	display: block;
}

.pxz-hero__name b {
	display: block;
	color: var( --pxz-green-2 );
}

.pxz-hero__motto {
	margin: 10px 0 0;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 4px;
}

/* Stat strip: desktop only. */
.pxz-hero__strip {
	display: none;
}

/*--------------------------------------------------------------
# Coin / crystal stat cards
--------------------------------------------------------------*/

.pxz-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 14px;
}

.pxz-stat {
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	background: var( --pxz-card );
	border: 1px solid var( --pxz-line );
	border-radius: var( --pxz-radius );
	padding: 13px 14px;
	box-shadow: var( --pxz-shadow );
}

.pxz-stat__ic {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	flex: none;
}

.pxz-stat__ic--coin {
	background: var( --pxz-gold-soft );
}

.pxz-stat__ic--gem {
	background: #DBEAFE;
}

.pxz-stat__txt {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
	min-width: 0;
}

.pxz-stat__txt b {
	font-size: 17px;
	font-weight: 800;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pxz-stat__txt em {
	font-style: normal;
	font-size: 11.5px;
	color: var( --pxz-mut );
	font-weight: 600;
}

.pxz-stat__add {
	margin-left: auto;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var( --pxz-green );
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
	display: grid;
	place-items: center;
	flex: none;
	transition: transform .15s ease;
}

.pxz-stat__add:active {
	transform: scale( .92 );
}

/*--------------------------------------------------------------
# Play & Earn CTA
--------------------------------------------------------------*/

.pxz-earn {
	display: flex;
	align-items: center;
	gap: 13px;
	width: 100%;
	margin-top: 12px;
	background: var( --pxz-grad );
	border-radius: var( --pxz-radius );
	padding: 16px;
	color: #fff;
	text-align: left;
	box-shadow: 0 12px 26px rgba( 22, 163, 74, .32 );
	transition: transform .15s ease;
}

.pxz-earn:active {
	transform: scale( .985 );
}

.pxz-earn__ic {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: rgba( 4, 32, 15, .35 );
	flex: none;
}

.pxz-earn__txt {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.pxz-earn__txt b {
	font-size: 16px;
	font-weight: 900;
	letter-spacing: .6px;
}

.pxz-earn__txt em {
	font-style: normal;
	font-size: 12.5px;
	opacity: .92;
	font-weight: 500;
}

.pxz-earn__go {
	margin-left: auto;
	opacity: .95;
	flex: none;
}

/*--------------------------------------------------------------
# Free coins card
--------------------------------------------------------------*/

.pxz-free {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
	background: var( --pxz-card );
	border: 1px solid var( --pxz-line );
	border-radius: var( --pxz-radius );
	padding: 13px 14px;
	box-shadow: var( --pxz-shadow );
}

.pxz-free__ic {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 13px;
	background: var( --pxz-green-soft );
	color: var( --pxz-green );
	flex: none;
}

.pxz-free__txt {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.pxz-free__txt b {
	font-size: 14.5px;
	font-weight: 800;
}

.pxz-free__txt em {
	font-style: normal;
	font-size: 12px;
	color: var( --pxz-mut );
}

.pxz-free__btn {
	margin-left: auto;
	flex: none;
	background: var( --pxz-gold );
	color: #3B2A00;
	font-size: 13px;
	font-weight: 800;
	border-radius: 99px;
	padding: 9px 18px;
	box-shadow: 0 6px 14px rgba( 245, 179, 1, .35 );
	transition: transform .15s ease;
}

.pxz-free__btn:active {
	transform: scale( .94 );
}

.pxz-free.is-claimed .pxz-free__btn {
	background: var( --pxz-line );
	color: var( --pxz-mut );
	box-shadow: none;
	cursor: default;
}

/*--------------------------------------------------------------
# Section headings + trending rail
--------------------------------------------------------------*/

.pxz-sec {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 20px 2px 10px;
}

.pxz-sec__title {
	margin: 0;
	font-size: 16.5px;
	font-weight: 800;
	letter-spacing: -.2px;
}

.pxz-sec__more {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: var( --pxz-green );
	font-size: 13px;
	font-weight: 700;
}

.pxz-trend {
	display: grid;
	grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
	gap: 10px;
}

/*--------------------------------------------------------------
# Game cards
--------------------------------------------------------------*/

.pxz-game {
	position: relative;
	min-width: 0;
	background: var( --pxz-card );
	border: 1px solid var( --pxz-line );
	border-radius: 16px;
	padding: 8px;
	box-shadow: var( --pxz-shadow );
	transition: transform .16s ease, box-shadow .16s ease;
}

.pxz-game:hover {
	transform: translateY( -3px );
	box-shadow: 0 12px 28px rgba( 15, 23, 42, .1 );
}

.pxz-game__launch {
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: inherit;
}

.pxz-game__cover {
	position: relative;
	display: block;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var( --pxz-green-soft );
}

.pxz-game__cover img,
.pxz-game__cover svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pxz-game__lock,
.pxz-game__flag {
	position: absolute;
	top: 7px;
	left: 7px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	font-weight: 800;
	color: #fff;
	background: rgba( 7, 19, 11, .75 );
	border-radius: 99px;
	padding: 4px 8px;
}

.pxz-game__flag {
	background: var( --pxz-green );
}

.pxz-game__body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 1px;
	padding: 8px 4px 4px;
}

.pxz-game__title {
	font-size: 13.5px;
	font-weight: 800;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pxz-game__cat {
	font-style: normal;
	font-size: 11.5px;
	color: var( --pxz-mut );
	font-weight: 500;
}

.pxz-game--mini {
	padding: 6px;
}

.pxz-game--mini .pxz-game__cover {
	border-radius: 11px;
}

.pxz-game--mini .pxz-game__title {
	font-size: 11.5px;
	text-align: center;
	padding-top: 2px;
}

.pxz-game--mini .pxz-game__body {
	padding: 4px 1px 1px;
}

/*--------------------------------------------------------------
# Games pane: search, chips, grid
--------------------------------------------------------------*/

.pxz-search {
	display: flex;
	align-items: center;
	gap: 9px;
	background: var( --pxz-card );
	border: 1px solid var( --pxz-line );
	border-radius: 99px;
	padding: 11px 16px;
	color: var( --pxz-faint );
	box-shadow: var( --pxz-shadow );
	margin-bottom: 12px;
}

.pxz-search input {
	border: 0;
	outline: none;
	background: none;
	width: 100%;
	font: inherit;
	font-size: 14px;
	color: var( --pxz-ink );
}

.pxz-search input::placeholder {
	color: var( --pxz-faint );
}

.pxz-chips {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 2px 2px 10px;
	margin: 0 -2px 4px;
	scrollbar-width: none;
}

.pxz-chips::-webkit-scrollbar {
	display: none;
}

.pxz-chip {
	flex: none;
	font-size: 13px;
	font-weight: 700;
	color: var( --pxz-ink );
	background: var( --pxz-card );
	border: 1px solid var( --pxz-line );
	border-radius: 99px;
	padding: 8px 16px;
	transition: background .15s ease, color .15s ease;
}

.pxz-chip.is-on {
	background: var( --pxz-green );
	border-color: var( --pxz-green );
	color: #fff;
	box-shadow: 0 6px 14px rgba( 22, 163, 74, .3 );
}

.pxz-grid {
	display: grid;
	grid-template-columns: repeat( 2, 1fr );
	gap: 12px;
}

.pxz-game.is-hidden {
	display: none;
}

/* Desktop-only bits, off on mobile. */
.pxz-side,
.pxz-deskhead {
	display: none;
}

/*--------------------------------------------------------------
# Rewards pane
--------------------------------------------------------------*/

.pxz-promo {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	min-height: 175px;
	display: flex;
	align-items: center;
	background-color: var( --pxz-dark );
	background-size: cover;
	background-position: center;
	margin-bottom: 14px;
	box-shadow: 0 14px 32px rgba( 5, 46, 22, .2 );
}

.pxz-promo__shade {
	position: absolute;
	inset: 0;
	/* Tinted with the brand green rather than near-black, so the banner
	   reads as dark green when no artwork is set behind it, and artwork
	   that is set keeps a green cast instead of a grey one. */
	background: linear-gradient( 92deg, rgba( 0, 63, 35, .82 ) 26%, rgba( 0, 107, 60, .22 ) 78% );
}

.pxz-promo__copy {
	position: relative;
	padding: 18px 20px;
	color: #fff;
}

.pxz-promo__copy b {
	display: block;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: -.3px;
	line-height: 1.12;
	text-transform: uppercase;
}

.pxz-promo__green {
	color: var( --pxz-green-2 );
}

.pxz-promo__copy em {
	display: block;
	margin-top: 7px;
	font-style: italic;
	font-size: 12.5px;
	opacity: .92;
}

.pxz-prizes {
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.pxz-prize {
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 12px;
	background: var( --pxz-card );
	border: 1px solid var( --pxz-line );
	border-radius: var( --pxz-radius );
	padding: 11px 12px;
	box-shadow: var( --pxz-shadow );
}

.pxz-prize.is-hidden {
	display: none;
}

.pxz-prize__thumb {
	width: 62px;
	height: 62px;
	border-radius: 13px;
	overflow: hidden;
	background: #F1F5F9;
	flex: none;
	display: grid;
	place-items: center;
}

.pxz-prize__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pxz-prize__blank {
	color: var( --pxz-faint );
}

.pxz-prize__info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.pxz-prize__title {
	font-size: 14px;
	font-weight: 800;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pxz-prize__stock {
	font-style: normal;
	font-size: 11.5px;
	color: var( --pxz-mut );
}

.pxz-prize__cost {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 2px;
}

.pxz-prize__cost b {
	font-size: 14px;
	font-weight: 800;
	color: var( --pxz-blue );
}

.pxz-prize__go {
	margin-left: auto;
	flex: none;
	background: var( --pxz-green );
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	border-radius: 99px;
	padding: 9px 17px;
	box-shadow: 0 6px 14px rgba( 22, 163, 74, .3 );
	transition: transform .15s ease, background .15s ease;
}

.pxz-prize__go:active {
	transform: scale( .94 );
}

.pxz-prize__go:disabled,
.pxz-prize.is-out .pxz-prize__go {
	background: var( --pxz-line );
	color: var( --pxz-mut );
	box-shadow: none;
	cursor: default;
}

/*--------------------------------------------------------------
# Profile pane
--------------------------------------------------------------*/

.pxz-profile {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.pxz-id {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var( --pxz-card );
	border: 1px solid var( --pxz-line );
	border-radius: var( --pxz-radius );
	padding: 16px;
	box-shadow: var( --pxz-shadow );
}

.pxz-id__ring {
	display: grid;
	place-items: center;
	width: 78px;
	height: 78px;
	border-radius: 50%;
	padding: 3px;
	background: var( --pxz-grad );
	flex: none;
	color: #fff;
}

.pxz-id__ring img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 3px solid #fff;
	object-fit: cover;
}

.pxz-id__who {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.pxz-id__who b {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -.2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pxz-id__who em {
	font-style: normal;
	font-size: 13px;
	color: var( --pxz-mut );
}

.pxz-id__edit {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	align-self: flex-start;
	margin-top: 6px;
	font-size: 12.5px;
	font-weight: 700;
	color: var( --pxz-ink );
	border: 1px solid var( --pxz-line );
	border-radius: 99px;
	padding: 7px 13px;
	background: var( --pxz-card );
}

.pxz-editbox {
	background: var( --pxz-card );
	border: 1px solid var( --pxz-line );
	border-radius: var( --pxz-radius );
	padding: 14px;
	box-shadow: var( --pxz-shadow );
}

.pxz-editbox label {
	font-size: 12px;
	font-weight: 700;
	color: var( --pxz-mut );
	display: block;
	margin-bottom: 7px;
}

.pxz-editbox__row {
	display: flex;
	gap: 8px;
}

.pxz-editbox__row input {
	flex: 1;
	min-width: 0;
	border: 1px solid var( --pxz-line );
	border-radius: 12px;
	padding: 10px 13px;
	font: inherit;
	font-size: 14px;
	outline: none;
}

.pxz-editbox__row input:focus {
	border-color: var( --pxz-green );
}

.pxz-editbox__save {
	background: var( --pxz-green );
	color: #fff;
	font-size: 13.5px;
	font-weight: 800;
	border-radius: 12px;
	padding: 10px 18px;
}

.pxz-pstats {
	background: var( --pxz-card );
	border: 1px solid var( --pxz-line );
	border-radius: var( --pxz-radius );
	padding: 15px;
	box-shadow: var( --pxz-shadow );
}

.pxz-pstats__row {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 8px;
	text-align: center;
}

.pxz-pstats__cell {
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 6px 2px;
}

.pxz-pstats__cell b {
	font-size: 15.5px;
	font-weight: 800;
}

.pxz-pstats__cell em {
	font-style: normal;
	font-size: 11.5px;
	color: var( --pxz-mut );
	font-weight: 600;
}

.pxz-pstats__star {
	color: var( --pxz-gold );
}

.pxz-pstats__xp {
	border-top: 1px solid var( --pxz-line );
	margin-top: 12px;
	padding-top: 12px;
}

.pxz-pstats__xphead {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

.pxz-pstats__xphead b {
	font-size: 13px;
	font-weight: 800;
}

.pxz-pstats__xphead em {
	font-style: normal;
	font-size: 12px;
	color: var( --pxz-mut );
	font-weight: 600;
}

.pxz-pstats__bar {
	display: block;
	height: 8px;
	border-radius: 99px;
	background: var( --pxz-line );
	overflow: hidden;
}

.pxz-pstats__bar i {
	display: block;
	height: 100%;
	border-radius: 99px;
	background: var( --pxz-grad );
	transition: width .5s ease;
}

/*--------------------------------------------------------------
# Profile menu
--------------------------------------------------------------*/

.pxz-menu {
	background: var( --pxz-card );
	border: 1px solid var( --pxz-line );
	border-radius: var( --pxz-radius );
	box-shadow: var( --pxz-shadow );
	overflow: hidden;
}

.pxz-menu__row {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 14px 15px;
	text-align: left;
	border-bottom: 1px solid var( --pxz-line );
	transition: background .15s ease;
}

.pxz-menu__row:last-child {
	border-bottom: 0;
}

.pxz-menu__row:hover {
	background: #FAFBFC;
}

.pxz-menu__ic {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: var( --pxz-green-soft );
	color: var( --pxz-green );
	flex: none;
}

.pxz-menu__txt {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.pxz-menu__txt b {
	font-size: 14px;
	font-weight: 700;
}

.pxz-menu__txt em {
	font-style: normal;
	font-size: 11.5px;
	color: var( --pxz-mut );
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pxz-menu__chev {
	margin-left: auto;
	color: var( --pxz-faint );
	flex: none;
}

.pxz-fold {
	background: #FAFBFC;
	border-bottom: 1px solid var( --pxz-line );
	padding: 6px 15px 10px;
}

.pxz-fold__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding: 7px 0;
	border-bottom: 1px dashed var( --pxz-line );
}

.pxz-fold__row:last-child {
	border-bottom: 0;
}

.pxz-fold__row b {
	font-size: 13px;
	font-weight: 700;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pxz-fold__row em {
	font-style: normal;
	font-size: 12px;
	color: var( --pxz-mut );
	flex: none;
}

.pxz-fold__none {
	margin: 8px 0;
	font-size: 12.5px;
	color: var( --pxz-mut );
}

.pxz-logout {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #EEF1F4;
	color: #DC2626;
	font-size: 14.5px;
	font-weight: 800;
	border-radius: var( --pxz-radius );
	padding: 14px;
	margin-bottom: 6px;
}

.pxz-logout--in {
	background: var( --pxz-green );
	color: #fff;
}

/*--------------------------------------------------------------
# Bottom nav (mobile)
--------------------------------------------------------------*/

.pxz-nav {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 900;
	display: flex;
	justify-content: space-around;
	background: var( --pxz-card );
	border-top: 1px solid var( --pxz-line );
	padding: 8px 6px calc( 8px + env( safe-area-inset-bottom, 0px ) );
	box-shadow: 0 -8px 24px rgba( 15, 23, 42, .06 );
}

.pxz-nav__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	flex: 1;
	color: var( --pxz-faint );
	font-size: 10.5px;
	font-weight: 700;
	padding: 4px 0 2px;
	position: relative;
	transition: color .15s ease;
}

.pxz-nav__item.is-on {
	color: var( --pxz-green );
}

.pxz-nav__item.is-on::after {
	content: '';
	position: absolute;
	bottom: -3px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var( --pxz-green );
}

/*--------------------------------------------------------------
# Toast
--------------------------------------------------------------*/

.pxz-toast {
	position: fixed;
	left: 50%;
	bottom: calc( 92px + env( safe-area-inset-bottom, 0px ) );
	transform: translateX( -50% );
	z-index: 999;
	background: var( --pxz-ink );
	color: #fff;
	font-size: 13.5px;
	font-weight: 600;
	border-radius: 99px;
	padding: 11px 20px;
	max-width: min( 92vw, 420px );
	text-align: center;
	box-shadow: 0 14px 32px rgba( 15, 23, 42, .3 );
	animation: pxz-in .25s ease both;
}

/* Shared currency glyphs: gold coins, blue crystals — everywhere in
   the room, whatever text colour surrounds them. */
.pxz .pxg-i--coin {
	color: var( --pxz-gold );
}

.pxz .pxg-i--gem {
	color: var( --pxz-blue );
}

/* Games without artwork fall back to the platform's generated cover. */
.pxz .pxg-card__art {
	width: 100%;
	height: 100%;
	display: block;
}

/*--------------------------------------------------------------
# Account information (desktop only)
#
# The reference shows this open beside the profile menu on desktop.
# On mobile the same fields live behind the Settings row, so the
# card stays hidden there rather than lengthening the pane.
--------------------------------------------------------------*/
.pxz-account {
	display: none;
}

/* Notifications bell (shared component, reskinned). */
.pxz .playrox-notify {
	position: relative;
}

.pxz .playrox-notify__bell {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var( --pxz-card );
	border: 1px solid var( --pxz-line );
	color: var( --pxz-ink );
	position: relative;
}

.pxz .playrox-notify__badge {
	position: absolute;
	top: -3px;
	right: -3px;
	min-width: 17px;
	height: 17px;
	border-radius: 99px;
	background: #DC2626;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	display: grid;
	place-items: center;
	padding: 0 4px;
}

.pxz .playrox-notify__badge[hidden] {
	display: none;
}

.pxz .playrox-notify__panel {
	position: absolute;
	top: calc( 100% + 10px );
	right: 0;
	width: min( 330px, 88vw );
	background: var( --pxz-card );
	border: 1px solid var( --pxz-line );
	border-radius: 16px;
	box-shadow: 0 18px 44px rgba( 15, 23, 42, .16 );
	z-index: 950;
	overflow: hidden;
}

.pxz .playrox-notify__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 14px;
	border-bottom: 1px solid var( --pxz-line );
	font-size: 14px;
}

.pxz .playrox-notify__readall {
	color: var( --pxz-green );
	font-size: 12px;
	font-weight: 700;
}

.pxz .playrox-notify__list {
	max-height: 320px;
	overflow: auto;
	padding: 6px 14px;
	font-size: 13px;
}

/*--------------------------------------------------------------
# Desktop ≥ 981px
--------------------------------------------------------------*/

@media ( min-width: 981px ) {

	.pxz-main {
		max-width: 1400px;
		padding: 24px 28px 40px;
	}

	/* Bottom nav goes, top bar comes. */
	.pxz-nav {
		display: none;
	}

	.pxz-mhead {
		display: none;
	}

	.pxz-topbar {
		position: sticky;
		top: 0;
		z-index: 920;
		display: flex;
		align-items: center;
		gap: 26px;
		background: var( --pxz-card );
		border-bottom: 1px solid var( --pxz-line );
		padding: 12px 28px;
	}

	.pxz-topbar__nav {
		display: flex;
		gap: 6px;
	}

	.pxz-topbar__link {
		font-size: 14px;
		font-weight: 700;
		color: var( --pxz-mut );
		padding: 9px 14px;
		border-radius: 99px;
		transition: color .15s ease, background .15s ease;
	}

	.pxz-topbar__link:hover {
		color: var( --pxz-ink );
	}

	.pxz-topbar__link.is-on {
		color: var( --pxz-green );
		background: var( --pxz-green-soft );
	}

	.pxz-topbar__tools {
		margin-left: auto;
		display: flex;
		align-items: center;
		gap: 12px;
	}

	.pxz-topsearch {
		display: flex;
		align-items: center;
		gap: 8px;
		background: var( --pxz-bg );
		border: 1px solid var( --pxz-line );
		border-radius: 99px;
		padding: 8px 14px;
		color: var( --pxz-faint );
		width: 230px;
	}

	.pxz-topsearch input {
		border: 0;
		outline: none;
		background: none;
		width: 100%;
		font: inherit;
		font-size: 13px;
		color: var( --pxz-ink );
	}

	.pxz-topbar__me img {
		width: 36px;
		height: 36px;
		border-radius: 50%;
		border: 2px solid var( --pxz-green );
	}

	.pxz-topbar__signin {
		background: var( --pxz-green );
		color: #fff;
		font-size: 13px;
		font-weight: 700;
		border-radius: 99px;
		padding: 9px 18px;
	}

	/* Hero: wide banner, copy left, stat strip along the bottom. */
	.pxz-hero {
		min-height: 330px;
		border-radius: 24px;
		background-position: center;
	}

	.pxz-hero__shade {
		background: linear-gradient( 94deg, rgba( 4, 15, 8, .78 ) 18%, rgba( 4, 15, 8, .12 ) 62%, rgba( 4, 15, 8, .45 ) 100% );
	}

	.pxz-hero__copy {
		position: absolute;
		left: 40px;
		top: 50%;
		transform: translateY( -62% );
		text-align: left;
		padding: 0;
		max-width: 460px;
	}

	.pxz-hero__name {
		font-size: 46px;
	}

	.pxz-hero__strip {
		position: relative;
		display: flex;
		align-items: center;
		gap: 26px;
		margin-top: auto;
		background: rgba( 255, 255, 255, .96 );
		border-radius: 0 0 24px 24px;
		padding: 14px 26px;
	}

	.pxz-hero__stat {
		display: inline-flex;
		align-items: center;
		gap: 8px;
	}

	.pxz-hero__stat b {
		font-size: 15px;
		font-weight: 800;
	}

	.pxz-hero__stat em {
		font-style: normal;
		font-size: 12px;
		color: var( --pxz-mut );
		font-weight: 600;
	}

	.pxz-hero__staric {
		color: var( --pxz-gold );
		display: grid;
		place-items: center;
	}

	.pxz-hero__play {
		margin-left: auto;
		display: inline-flex;
		align-items: center;
		gap: 8px;
		background: var( --pxz-green );
		color: #fff;
		font-size: 14px;
		font-weight: 800;
		border-radius: 99px;
		padding: 11px 22px;
		box-shadow: 0 8px 18px rgba( 22, 163, 74, .32 );
	}

	/* Home extras sit in a comfortable column under the hero. */
	.pxz-stats {
		max-width: 560px;
		margin-top: 18px;
	}

	.pxz-earn,
	.pxz-free {
		max-width: 560px;
	}

	.pxz-trend {
		grid-template-columns: repeat( 8, 1fr );
	}

	/* Split panes: sidebar + content. */
	.pxz-split {
		display: grid;
		grid-template-columns: 210px 1fr;
		gap: 24px;
		align-items: start;
	}

	.pxz-side {
		display: flex;
		flex-direction: column;
		gap: 4px;
		background: var( --pxz-card );
		border: 1px solid var( --pxz-line );
		border-radius: var( --pxz-radius );
		padding: 10px;
		box-shadow: var( --pxz-shadow );
		position: sticky;
		top: 84px;
	}

	.pxz-side__item {
		display: flex;
		align-items: center;
		gap: 9px;
		font-size: 13.5px;
		font-weight: 700;
		color: var( --pxz-mut );
		border-radius: 12px;
		padding: 11px 12px;
		text-align: left;
		transition: background .15s ease, color .15s ease;
	}

	.pxz-side__item:hover {
		background: #FAFBFC;
		color: var( --pxz-ink );
	}

	.pxz-side__item.is-on {
		background: var( --pxz-green );
		color: #fff;
	}

	.pxz-deskhead {
		display: block;
		margin: 2px 0 14px;
	}

	.pxz-deskhead h2 {
		margin: 0 0 4px;
		font-size: 23px;
		font-weight: 800;
		letter-spacing: -.3px;
	}

	.pxz-deskhead p {
		margin: 0;
		font-size: 13.5px;
		color: var( --pxz-mut );
	}

	/* Chips are the mobile control; the sidebar owns desktop. */
	.pxz-chips {
		display: none;
	}

	.pxz-pane [data-pxz-pane] .pxz-search,
	.pxz-split__main .pxz-search {
		max-width: 380px;
	}

	.pxz-grid {
		grid-template-columns: repeat( 4, 1fr );
		gap: 16px;
	}

	/* Rewards: catalogue becomes a card grid. */
	.pxz-prizes {
		display: grid;
		grid-template-columns: repeat( 4, 1fr );
		gap: 16px;
	}

	.pxz-prize {
		flex-direction: column;
		align-items: stretch;
		text-align: left;
		padding: 12px;
		gap: 10px;
	}

	.pxz-prize__thumb {
		width: 100%;
		height: auto;
		aspect-ratio: 4 / 5;
		border-radius: 12px;
	}

	.pxz-prize__go {
		margin-left: 0;
		width: 100%;
		padding: 10px;
	}

	.pxz-promo {
		min-height: 190px;
	}

	.pxz-promo__copy b {
		font-size: 26px;
	}

	/* Profile: menu becomes the left rail, identity + stats right. */
	.pxz-profile {
		display: grid;
		grid-template-columns: 250px 1fr;
		grid-template-areas:
			'menu id'
			'menu edit'
			'menu stats'
			'menu account'
			'menu logout';
		gap: 20px 24px;
		align-items: start;
	}

	.pxz-menu {
		grid-area: menu;
		position: sticky;
		top: 84px;
	}

	.pxz-id {
		grid-area: id;
		position: relative;
		overflow: hidden;
		padding: 26px 24px;
		background-color: var( --pxz-dark );
		border: 0;
		color: #fff;
		isolation: isolate;
	}

	.pxz-id::before {
		content: '';
		position: absolute;
		inset: 0;
		background-image: var( --pxz-id-img );
		background-size: cover;
		background-position: center;
		z-index: -2;
	}

	.pxz-id::after {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient( 94deg, rgba( 4, 15, 8, .88 ) 24%, rgba( 4, 15, 8, .3 ) 90% );
		z-index: -1;
	}

	.pxz-id__who em {
		color: rgba( 255, 255, 255, .75 );
	}

	.pxz-id__edit {
		background: rgba( 255, 255, 255, .14 );
		border-color: rgba( 255, 255, 255, .3 );
		color: #fff;
	}

	.pxz-editbox {
		grid-area: edit;
	}

	.pxz-pstats {
		grid-area: stats;
	}

	.pxz-logout {
		grid-area: logout;
		justify-self: start;
		padding: 13px 34px;
	}

	/* Account information: a card of its own under the stats, matching
	   the reference's labelled rows. */
	.pxz-account {
		display: block;
		background: var( --pxz-card );
		border: 1px solid var( --pxz-line );
		border-radius: 18px;
		padding: 20px 22px 8px;
		box-shadow: var( --pxz-shadow );
		grid-area: account;
	}

	.pxz-account__h {
		margin: 0 0 4px;
		font-size: 15px;
		font-weight: 800;
		color: var( --pxz-ink );
	}

	.pxz-account__row {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		padding: 13px 0;
		border-bottom: 1px solid var( --pxz-line );
	}

	.pxz-account__row:last-child {
		border-bottom: 0;
	}

	.pxz-account__row b {
		font-size: 13px;
		font-weight: 600;
		color: var( --pxz-muted );
	}

	.pxz-account__row em {
		font-size: 13.5px;
		font-style: normal;
		font-weight: 600;
		color: var( --pxz-ink );
		text-align: right;
		word-break: break-word;
	}

	/* Rewards header carries the Sort by control on the right. */
	.pxz-deskhead--split {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 20px;
	}

	.pxz-sort {
		display: inline-flex;
		align-items: center;
		gap: 9px;
		font-size: 13px;
		font-weight: 600;
		color: var( --pxz-muted );
		white-space: nowrap;
	}

	.pxz-sort select {
		font: inherit;
		font-weight: 600;
		color: var( --pxz-ink );
		background: var( --pxz-card );
		border: 1px solid var( --pxz-line );
		border-radius: 10px;
		padding: 8px 12px;
		cursor: pointer;
	}

	.pxz-sort select:focus-visible {
		outline: 2px solid var( --pxz-green );
		outline-offset: 1px;
	}

	/* ---------- Top bar: icon nav, auth buttons ---------- */

	.pxz-topbar__link {
		display: inline-flex;
		align-items: center;
		gap: 7px;
		padding: 22px 4px 20px;
		border-radius: 0;
		border-bottom: 3px solid transparent;
		background: none;
		color: var( --pxz-mut );
		font-size: 14.5px;
		font-weight: 600;
	}

	.pxz-topbar__link svg,
	.pxz-topbar__link .pxz-i {
		width: 18px;
		height: 18px;
		flex: 0 0 auto;
	}

	.pxz-topbar__link:hover { color: var( --pxz-ink ); }

	.pxz-topbar__link.is-on {
		color: var( --pxz-green );
		border-bottom-color: var( --pxz-green );
		background: none;
	}

	.pxz-topbar__nav { gap: 26px; }

	.pxz-auth {
		display: inline-flex;
		align-items: center;
		gap: 10px;
	}

	.pxz-auth__in,
	.pxz-auth__up {
		padding: 11px 24px;
		font-size: 14px;
		font-weight: 700;
		border-radius: 10px;
	}

	.pxz-auth__in { background: var( --pxz-green ); color: #fff; }
	.pxz-auth__up { background: var( --pxz-gold ); color: #3B2A02; }

	.pxz-topbar__me--guest {
		display: grid;
		place-items: center;
		width: 36px;
		height: 36px;
		border-radius: 50%;
		color: var( --pxz-mut );
	}

	/* ---------- Hero: art left, wallet + CTA right ---------- */

	.pxz-pane[data-pxz-pane="home"] { position: relative; }

	.pxz-hero {
		display: grid;
		grid-template-columns: minmax( 0, 1fr ) auto;
		align-items: start;
		gap: 0;
		min-height: 420px;
		padding: 0;
		border-radius: 20px;
		overflow: visible;
		background-position: left center;
		background-size: cover;
	}

	.pxz-hero__copy {
		grid-column: 1;
		align-self: end;
		padding: 0 0 34px 38px;
	}

	/* One white bar over the art: coins, top-up, crystals, free coins. */
	.pxz-hero__strip {
		grid-column: 2;
		position: static;
		display: flex;
		align-items: center;
		gap: 0;
		width: auto;
		max-width: 100%;
		margin: 26px 26px 0 0;
		padding: 14px 18px;
		background: var( --pxz-card );
		border: 0;
		border-radius: 16px;
		box-shadow: 0 10px 30px rgba( 4, 20, 10, .18 );
	}

	.pxz-hero__stat {
		display: inline-flex;
		align-items: center;
		gap: 9px;
		padding: 0 16px;
		color: var( --pxz-ink );
		font-size: 15px;
	}

	.pxz-hero__stat:first-child { padding-left: 4px; }

	.pxz-hero__stat b {
		font-size: 19px;
		font-weight: 800;
		line-height: 1;
	}

	.pxz-hero__stat em {
		display: block;
		font-size: 11.5px;
		font-style: normal;
		color: var( --pxz-mut );
	}

	.pxz-hero__stat svg,
	.pxz-hero__stat .pxz-i { width: 26px; height: 26px; }

	/* Play Now becomes the round top-up control from the reference. */
	.pxz-hero__play {
		order: 1;
		width: 38px;
		height: 38px;
		min-width: 0;
		padding: 0;
		margin: 0 4px;
		font-size: 0;
		border-radius: 50%;
		background: var( --pxz-green );
		color: #fff;
		display: grid;
		place-items: center;
	}

	.pxz-hero__play svg { width: 18px; height: 18px; }

	.pxz-hero__stat:first-child { order: 0; }
	.pxz-hero__stat:nth-child( 2 ) { order: 2; }
	.pxz-hero__free { order: 3; }

	/* Level duplicates the XP bar on Profile. */
	.pxz-hero__stat:nth-child( 3 ) { display: none; }

	.pxz-hero__free {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		padding-left: 16px;
		margin-left: 6px;
		border-left: 1px solid var( --pxz-line );
	}

	.pxz-hero__freeic {
		display: grid;
		place-items: center;
		width: 34px;
		height: 34px;
		border-radius: 10px;
		background: var( --pxz-gold-soft );
		color: var( --pxz-gold );
	}

	.pxz-hero__freetxt b {
		display: block;
		font-size: 13.5px;
		font-weight: 800;
		color: var( --pxz-ink );
		white-space: nowrap;
	}

	.pxz-hero__freetxt em {
		display: block;
		font-size: 11.5px;
		font-style: normal;
		color: var( --pxz-mut );
		white-space: nowrap;
	}

	.pxz-hero__claim {
		padding: 9px 18px;
		font-size: 13.5px;
		font-weight: 800;
		color: #3B2A02;
		background: var( --pxz-gold );
		border-radius: 10px;
	}

	.pxz-hero__claim:disabled {
		background: var( --pxz-line );
		color: var( --pxz-faint );
	}

	/* Play & Earn overlays the banner: absolute, so Trending Games is not
	   dragged up into the art the way a negative margin would. */
	.pxz-earn {
		position: absolute;
		top: 168px;
		right: 26px;
		z-index: 3;
		width: min( 630px, 44% );
		margin: 0;
		padding: 30px 28px;
		border-radius: 18px;
		gap: 20px;
		box-shadow: 0 16px 40px rgba( 12, 74, 36, .3 );
	}

	.pxz-earn__ic {
		width: auto;
		height: auto;
		background: none;
	}

	.pxz-earn__ic svg,
	.pxz-earn__ic .pxz-i { width: 42px; height: 42px; }

	.pxz-earn__txt b {
		font-size: 30px;
		letter-spacing: .01em;
		color: var( --pxz-gold );
	}

	.pxz-earn__txt em {
		font-size: 16px;
		color: rgba( 255, 255, 255, .92 );
	}

	/* The phone cards repeat the strip, so the wide layout drops them. */
	.pxz-stats,
	.pxz-free { display: none; }

	/* ---------- Trending: one dense row ---------- */

	.pxz-trend {
		grid-template-columns: repeat( 11, minmax( 0, 1fr ) );
		gap: 12px;
		overflow: visible;
	}

	.pxz-trend .pxz-game__cover { aspect-ratio: 4 / 5; }
	.pxz-trend .pxz-game__title { font-size: 13px; }

	/* ---------- Prize spotlight + quick links ---------- */

	.pxz-below {
		display: grid;
		grid-template-columns: minmax( 0, 1fr ) 380px;
		gap: 18px;
		margin: 22px 0 0;
	}

	.pxz-spot {
		position: relative;
		display: grid;
		grid-template-columns: 1fr auto auto;
		align-items: center;
		gap: 18px;
		min-height: 190px;
		padding: 26px 30px;
		overflow: hidden;
		border-radius: 18px;
		background: linear-gradient( 100deg, #FFF9E6 0%, #FEF3C7 46%, #FFFDF7 100% );
		border: 1px solid #F6E6B4;
	}

	.pxz-spot__crown {
		position: absolute;
		top: 22px;
		left: 30px;
		color: var( --pxz-gold );
	}

	.pxz-spot__copy { padding-left: 40px; min-width: 0; }

	.pxz-spot__kicker {
		display: block;
		font-size: 20px;
		font-weight: 600;
		color: #3F3A28;
	}

	.pxz-spot h3 {
		margin: 2px 0 4px;
		font-size: 34px;
		font-weight: 900;
		letter-spacing: -.01em;
		color: #14261A;
	}

	.pxz-spot em {
		display: block;
		font-size: 15px;
		font-style: normal;
		color: #6B7280;
	}

	.pxz-spot__cost {
		display: inline-flex;
		align-items: center;
		gap: 9px;
		margin-top: 8px;
		font-size: 30px;
		font-weight: 800;
		color: var( --pxz-green-dark );
	}

	.pxz-spot__art img {
		max-height: 168px;
		width: auto;
		border-radius: 12px;
	}

	.pxz-spot__script {
		max-width: 130px;
		font-size: 26px;
		font-weight: 600;
		font-style: italic;
		line-height: 1.05;
		color: #14261A;
		font-family: Georgia, 'Times New Roman', serif;
	}

	.pxz-spot__hit {
		position: absolute;
		inset: 0;
		background: none;
	}

	.pxz-quick {
		display: grid;
		gap: 14px;
		align-content: start;
	}

	.pxz-quick__row {
		display: flex;
		align-items: center;
		gap: 14px;
		width: 100%;
		padding: 20px;
		text-align: left;
		background: var( --pxz-card );
		border: 1px solid var( --pxz-line );
		border-radius: 16px;
		box-shadow: var( --pxz-shadow );
		transition: border-color .15s ease;
	}

	.pxz-quick__row:hover { border-color: var( --pxz-green ); }

	.pxz-quick__ic {
		display: grid;
		place-items: center;
		width: 48px;
		height: 48px;
		flex: 0 0 auto;
		border-radius: 12px;
		background: var( --pxz-green-soft );
		color: var( --pxz-green );
	}

	.pxz-quick__txt { flex: 1 1 auto; min-width: 0; }

	.pxz-quick__txt b {
		display: block;
		font-size: 16px;
		font-weight: 800;
		color: var( --pxz-ink );
	}

	.pxz-quick__txt em {
		display: block;
		margin-top: 2px;
		font-size: 13px;
		font-style: normal;
		color: var( --pxz-mut );
	}

	.pxz-quick__go { color: var( --pxz-faint ); }

	/* ---------- Feature strip ---------- */

	.pxz-feats {
		display: grid;
		grid-template-columns: repeat( 4, minmax( 0, 1fr ) );
		gap: 16px;
		margin: 18px 0 30px;
	}

	.pxz-feat {
		display: flex;
		align-items: center;
		gap: 14px;
		min-width: 0;
		padding: 20px;
		background: var( --pxz-card );
		border: 1px solid var( --pxz-line );
		border-radius: 16px;
		box-shadow: var( --pxz-shadow );
	}

	.pxz-feat__ic {
		display: grid;
		place-items: center;
		width: 48px;
		height: 48px;
		flex: 0 0 auto;
		border-radius: 50%;
	}

	.pxz-feat__ic--green {
		background: var( --pxz-green-soft );
		color: var( --pxz-green );
	}

	.pxz-feat__ic--blue {
		background: #E3EEFE;
		color: var( --pxz-blue );
	}

	.pxz-feat__txt b {
		display: block;
		font-size: 16px;
		font-weight: 800;
		white-space: nowrap;
		color: var( --pxz-ink );
	}

	.pxz-feat__txt em {
		display: block;
		margin-top: 1px;
		font-size: 13.5px;
		font-style: normal;
		color: var( --pxz-mut );
	}

	/* Narrower desktops: the spotlight stacks and trending eases off. */
	@media ( max-width: 1240px ) {

		.pxz-below { grid-template-columns: 1fr; }
		.pxz-trend { grid-template-columns: repeat( 6, minmax( 0, 1fr ) ); }
		.pxz-feats { grid-template-columns: repeat( 2, minmax( 0, 1fr ) ); }
	}
}

@media ( min-width: 981px ) and ( max-width: 1180px ) {

	.pxz-grid,
	.pxz-prizes {
		grid-template-columns: repeat( 3, 1fr );
	}

	.pxz-trend {
		grid-template-columns: repeat( 6, 1fr );
	}
}

/* Motion-sensitive visitors: keep the layout, drop the movement. */
@media ( prefers-reduced-motion: reduce ) {

	.pxz-pane,
	.pxz-toast {
		animation: none;
	}

	.pxz-game,
	.pxz-earn,
	.pxz-free__btn,
	.pxz-prize__go,
	.pxz-stat__add {
		transition: none;
	}
}

/*--------------------------------------------------------------
# Desktop-only home blocks
#
# The spotlight, quick links and feature strip belong to the wide
# layout in the reference. On phones the Rewards tab already covers
# the same ground, so they stay out of the way.
--------------------------------------------------------------*/

@media ( max-width: 980px ) {

	.pxz-below,
	.pxz-feats,
	.pxz-hero__free,
	.pxz-topbar__me--guest {
		display: none;
	}
}

/* Uploaded Icon Lobby artwork, wherever a glyph would have gone. */
.pxz-i {
	display: block;
	object-fit: contain;
}


/* These links set their own colour, so they need to outscore the
   visited-link reset in the isolation block. */
.pxz a.pxz-auth__in,
.pxz a.pxz-auth__up,
.pxz a.pxz-logout,
.pxz a.pxz-topbar__signin {
	color: inherit;
}

.pxz a.pxz-auth__in { color: #fff; }
.pxz a.pxz-auth__up { color: #3B2A02; }

/*--------------------------------------------------------------
# Footer
#
# One centred line rather than a column grid: the room is an app
# surface, and a full newsroom footer under it reads as a different
# website starting.
--------------------------------------------------------------*/

.pxz-foot {
	margin: 26px 0 0;
	padding: 22px 16px calc( 26px + env( safe-area-inset-bottom ) );
	text-align: center;
	border-top: 1px solid var( --pxz-line );
}

.pxz-foot__line {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 13px;
	color: var( --pxz-mut );
}

.pxz-foot__line a {
	color: var( --pxz-mut );
	border-bottom: 1px solid transparent;
	transition: color .15s ease, border-color .15s ease;
}

.pxz-foot__line a:hover {
	color: var( --pxz-green );
	border-bottom-color: var( --pxz-green );
}

.pxz-foot__social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 12px;
}

.pxz-foot__social a {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	color: var( --pxz-mut );
	background: var( --pxz-bg );
	border: 1px solid var( --pxz-line );
	transition: color .15s ease, background .15s ease, transform .15s ease;
}

.pxz-foot__social a:hover {
	color: #fff;
	background: var( --pxz-green );
	border-color: var( --pxz-green );
	transform: translateY( -2px );
}

/* Mobile keeps clear of the fixed bottom nav. */
@media ( max-width: 980px ) {

	.pxz-foot {
		padding-bottom: calc( 92px + env( safe-area-inset-bottom ) );
	}
}

/*--------------------------------------------------------------
# Interaction polish
--------------------------------------------------------------*/

.pxz-game,
.pxz-quick__row,
.pxz-feat,
.pxz-prize {
	transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.pxz-game:hover,
.pxz-quick__row:hover,
.pxz-feat:hover {
	transform: translateY( -3px );
	box-shadow: 0 12px 28px rgba( 15, 23, 42, .12 );
}

.pxz-earn,
.pxz-hero__claim,
.pxz-sheet__topup,
.pxz-auth__in,
.pxz-auth__up,
.pxz-prize__btn {
	transition: filter .15s ease, transform .15s ease;
}

.pxz-earn:hover,
.pxz-hero__claim:hover:not( :disabled ),
.pxz-auth__in:hover,
.pxz-auth__up:hover,
.pxz-prize__btn:hover {
	filter: brightness( 1.06 );
}

.pxz-topsearch:focus-within,
.pxz-search:focus-within {
	border-color: var( --pxz-green );
	box-shadow: 0 0 0 3px rgba( 34, 197, 94, .16 );
}

@media ( prefers-reduced-motion: reduce ) {

	.pxz-game,
	.pxz-quick__row,
	.pxz-feat,
	.pxz-foot__social a {
		transition: none;
	}

	.pxz-game:hover,
	.pxz-quick__row:hover,
	.pxz-feat:hover,
	.pxz-foot__social a:hover {
		transform: none;
	}
}

/*--------------------------------------------------------------
# Fixes for the theme's own chrome inside the room
--------------------------------------------------------------*/

/*
 * The floating avatar-and-coins dock is the theme's shortcut back into
 * the game portal. Inside the room it is a shortcut to where you already
 * are, and its Font Awesome glyphs are not loaded here, so it renders as
 * a broken image in the corner. Hide it on room pages only.
 */
body.playrox-gameroom-v5-page .playrox-dock,
body.playrox-gameroom-page .playrox-dock {
	display: none !important;
}

/*
 * The theme puts a hard border and an outline on button hover/focus,
 * which draws a black box around the nav items. Neutralised here, with
 * the room's own hover defined underneath.
 */
.pxz :where( button, a, input, select, textarea ):hover,
.pxz :where( button, a, input, select, textarea ):focus {
	outline: none;
	border-color: transparent;
	box-shadow: none;
}

.pxz :where( button, a ):focus-visible {
	outline: 2px solid var( --pxz-green );
	outline-offset: 2px;
}

@media ( min-width: 981px ) {

	/* Nav hover: the label and its icon warm to green, and a soft rail
	   grows under it — the same gesture as the active tab, at half
	   strength, instead of a box. */
	.pxz-topbar__link {
		position: relative;
		border-bottom-color: transparent;
	}

	.pxz-topbar__link::after {
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		bottom: -3px;
		height: 3px;
		border-radius: 3px 3px 0 0;
		background: var( --pxz-green );
		transform: scaleX( 0 );
		transform-origin: center;
		transition: transform .18s ease;
	}

	.pxz-topbar__link:hover::after {
		transform: scaleX( .55 );
		opacity: .45;
	}

	.pxz-topbar__link.is-on::after {
		transform: scaleX( 1 );
		opacity: 1;
	}

	.pxz-topbar__link:hover {
		color: var( --pxz-green );
		background: none;
	}

	/* ---- Wallet strip: clickable, and above the banner art ---- */

	.pxz-hero__strip {
		position: relative;
		z-index: 4;
		pointer-events: auto;
	}

	.pxz-hero__stat--act {
		border-radius: 12px;
		padding: 6px 14px;
		cursor: pointer;
		transition: background .15s ease;
	}

	.pxz-hero__stat--act:hover {
		background: var( --pxz-green-soft );
	}

	/* The decorative shade must never sit over the controls. */
	.pxz-hero__shade,
	.pxz-hero__brush {
		z-index: 1;
		pointer-events: none;
	}

	.pxz-hero__copy {
		position: relative;
		z-index: 2;
	}

	/* ---- Trending rides up over the banner, as in the reference ---- */

	.pxz-sec {
		position: relative;
		z-index: 5;
		margin-top: -54px;
		padding: 18px 22px 0;
		background: var( --pxz-card );
		border-radius: 20px 20px 0 0;
		box-shadow: 0 -8px 26px rgba( 12, 30, 18, .10 );
	}

	.pxz-trend {
		position: relative;
		z-index: 5;
		grid-template-columns: repeat( 8, minmax( 0, 1fr ) );
		gap: 14px;
		margin: 0;
		padding: 0 22px 22px;
		background: var( --pxz-card );
		border-radius: 0 0 20px 20px;
		box-shadow: 0 14px 30px rgba( 12, 30, 18, .10 );
	}

	/* The banner keeps clear room underneath: the trending panel rides up
	   into that space, so the motto is not covered by it. */
	.pxz-hero {
		min-height: 480px;
		padding-bottom: 96px;
	}

	.pxz-hero__copy {
		padding-bottom: 86px;
	}

	/* Action cards stand on their own when no prize is set. */
	.pxz-below--noprize {
		grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	}
}

@media ( min-width: 981px ) {

	/* The banner is artwork in its own right — the dark scrim over it was
	   there to protect text that now sits in its own corner. Gone. */
	.pxz-hero__shade {
		display: none;
	}

	/* Trending is one continuous white panel: the header and the card row
	   were separate boxes with a gap, so the banner showed through as a
	   green band and the covers looked sliced. */
	.pxz-sec {
		margin: -54px 0 0;
		padding: 18px 22px 14px;
		border-radius: 20px 20px 0 0;
		box-shadow: 0 -8px 26px rgba( 12, 30, 18, .10 );
	}

	.pxz-trend {
		margin: 0;
		padding: 0 22px 22px;
		border-radius: 0 0 20px 20px;
		box-shadow: 0 14px 30px rgba( 12, 30, 18, .10 );
	}

	/* Covers keep their whole artwork: contain rather than crop, on the
	   card's own dark tile so portrait and square art both sit right. */
	.pxz-trend .pxz-game__cover {
		aspect-ratio: 4 / 5;
		background: var( --pxz-bg );
	}

	.pxz-trend .pxz-game__cover img {
		object-fit: cover;
		object-position: center;
	}

	/* Header avatar */
	.pxz-avatar {
		width: 36px;
		height: 36px;
		border-radius: 50%;
		object-fit: cover;
		border: 2px solid var( --pxz-green );
		background: var( --pxz-green-soft );
	}

	.pxz-topbar__me--guest {
		width: auto;
		height: auto;
		border: 0;
	}
}

.pxz-avatar {
	border-radius: 50%;
	object-fit: cover;
}

/*--------------------------------------------------------------
# Hero copy vs. banner artwork
#
# Uploaded banners already carry the brand lockup and the motto, so
# repeating them in HTML stacked the same words twice. When custom
# art is set, the overlay text steps aside and the picture speaks.
--------------------------------------------------------------*/

.pxz-hero__copy--art {
	display: none;
}

/*--------------------------------------------------------------
# Prize strip as a pure banner
#
# With no prize configured but a banner uploaded, the strip is just
# the artwork — no title, cost or stock invented around it.
--------------------------------------------------------------*/

.pxz-spot--banner {
	display: block;
	padding: 0;
	overflow: hidden;
	background: none;
	border: 0;
}

.pxz-spot--banner .pxz-spot__copy,
.pxz-spot--banner .pxz-spot__crown,
.pxz-spot--banner .pxz-spot__script {
	display: none;
}

.pxz-spot--banner .pxz-spot__art {
	display: block;
	width: 100%;
}

.pxz-spot--banner .pxz-spot__art img {
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
	border-radius: 18px;
}

/*--------------------------------------------------------------
# Mobile home: full-bleed hero
#
# The reference has the artwork running edge to edge and up behind
# the header, with the wallet card riding up over its lower edge.
# Everything here is phone-only; the desktop layout is untouched.
--------------------------------------------------------------*/

@media ( max-width: 980px ) {

	/* The header floats on the artwork rather than sitting above it. */
	.pxz-mhead {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		z-index: 6;
		min-height: 56px;
		margin: 0;
		padding: 10px 16px 0;
	}

	.pxz-mhead__brand,
	.pxz-brand {
		position: absolute;
		left: 50%;
		transform: translateX( -50% );
		margin: 0;
	}

	/* On the artwork the wordmark needs to read light. */
	.pxz-mhead .pxz-brand__txt b,
	.pxz-mhead .pxz-brand__txt {
		color: #fff;
		text-shadow: 0 1px 8px rgba( 0, 0, 0, .35 );
	}

	.pxz-mhead__bell {
		margin-left: auto;
		background: rgba( 255, 255, 255, .16 );
		color: #fff;
		backdrop-filter: blur( 6px );
	}

	/* Home is the only pane with a banner, so only it goes full-bleed. */
	.pxz-pane[data-pxz-pane="home"] {
		position: relative;
	}

	.pxz-pane[data-pxz-pane="home"] .pxz-hero {
		margin: -14px -16px 0;
		border-radius: 0;
		box-shadow: none;
		min-height: 60vh;
		max-height: 560px;
		padding-top: 66px;
		background-position: center top;
	}

	/* The artwork carries the lockup; the HTML copy stays out of it. */
	.pxz-hero__copy--art {
		display: none;
	}

	/* Coins · + · Crystals as one card riding over the hero's edge. */
	.pxz-stats {
		position: relative;
		z-index: 3;
		display: flex;
		align-items: center;
		gap: 0;
		margin: -34px 0 12px;
		padding: 6px 4px;
		background: var( --pxz-card );
		border: 1px solid var( --pxz-line );
		border-radius: 18px;
		box-shadow: 0 10px 26px rgba( 8, 32, 18, .16 );
	}

	.pxz-stat {
		flex: 1 1 0;
		background: none;
		border: 0;
		box-shadow: none;
		padding: 10px 12px;
	}

	/* Crystals read right-aligned against the coins on the left. */
	.pxz-stats .pxz-stat:last-child {
		justify-content: flex-end;
	}

	.pxz-stat__add {
		position: relative;
		z-index: 2;
	}

	/* Play & Earn, then the claim strip, then Trending — as listed. */
	.pxz-earn {
		margin-bottom: 12px;
	}

	.pxz-free {
		margin-bottom: 6px;
	}

	.pxz-sec {
		margin-top: 16px;
	}
}

/*--------------------------------------------------------------
# Play & Earn card
#
# Supplied design, mapped onto the room's markup: .pxz-earn is the
# card, __ic the controller, __txt the copy, __go the arrow. The
# fixed 180px height and 39px title are the desktop figures; the
# phone keeps the same treatment at a size that fits its column.
--------------------------------------------------------------*/

.pxz-earn {
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	background: linear-gradient(
		135deg,
		#24cf3d 0%,
		#12ad43 48%,
		#006B3C 100%
	);
	border: 2px solid rgba( 255, 255, 255, .75 );
	border-radius: 22px;
	box-shadow:
		0 8px 22px rgba( 0, 80, 45, .18 ),
		inset 0 1px 0 rgba( 255, 255, 255, .25 );
}

/* Subtle glow bedded into the lower right. */
.pxz-earn::after {
	content: "";
	position: absolute;
	width: 180px;
	height: 180px;
	right: 25px;
	bottom: -100px;
	background: rgba( 0, 80, 50, .18 );
	border-radius: 50%;
	filter: blur( 25px );
	pointer-events: none;
}

.pxz-earn__ic,
.pxz-earn__txt,
.pxz-earn__go {
	position: relative;
	z-index: 2;
}

.pxz-earn__txt {
	flex: 1;
}

.pxz-earn__txt b {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 800;
	color: #FFE23B;
	letter-spacing: -1px;
	line-height: 1;
}

.pxz-earn__txt em {
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: 400;
	color: #fff;
}

.pxz-earn__go {
	margin-left: auto;
	margin-right: 2px;
	color: #fff;
}

/* Phone: same card, sized for a 390px column. */
@media ( max-width: 980px ) {

	.pxz-earn {
		height: 118px;
		padding: 18px 20px;
		gap: 18px;
	}

	.pxz-earn__ic {
		width: 62px;
		min-width: 62px;
		height: 52px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		color: #fff;
	}

	.pxz-earn__ic svg,
	.pxz-earn__ic .pxz-i {
		width: 44px;
		height: 44px;
	}

	.pxz-earn__txt b {
		font-size: 24px;
		margin-bottom: 6px;
		display: block;
	}

	.pxz-earn__txt em {
		font-size: 14px;
		line-height: 1.35;
	}

	.pxz-earn__go svg,
	.pxz-earn__go .pxz-i {
		width: 28px;
		height: 28px;
	}
}

@media ( min-width: 981px ) {

	.pxz-earn {
		/* The card overlays the banner; the base rule above sets
		   position: relative for its glow, so restate the placement. */
		position: absolute;
		top: 168px;
		right: 26px;
		z-index: 3;
		width: min( 630px, 44% );
		max-width: 630px;
		height: 180px;
		margin: 0;
		padding: 28px 30px;
		gap: 32px;
		display: flex;
		align-items: center;
	}

	.pxz-earn__ic {
		width: 105px;
		min-width: 105px;
		height: 80px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		color: #fff;
		line-height: 1;
	}

	.pxz-earn__ic svg,
	.pxz-earn__ic .pxz-i {
		width: 84px;
		height: 62px;
	}

	.pxz-earn__txt b {
		display: block;
		font-size: 39px;
		line-height: 1;
		margin-bottom: 12px;
	}

	.pxz-earn__txt em {
		display: block;
		font-size: 23px;
		line-height: 1.35;
	}

	.pxz-earn__go svg,
	.pxz-earn__go .pxz-i {
		width: 44px;
		height: 44px;
		stroke-width: 1.4;
	}
}

/*--------------------------------------------------------------
# Hero art per breakpoint
#
# A 5:2 desktop banner cropped into a tall phone hero loses its
# subject entirely, so each breakpoint loads its own file. The
# desktop image stays on the element; the phone one arrives as a
# custom property and only takes over below 981px.
--------------------------------------------------------------*/

@media ( max-width: 980px ) {

	.pxz-hero--split {
		background-image: var( --pxz-hero-mobile ) !important;
	}
}

/*--------------------------------------------------------------
# Mobile wallet bar
#
# Coins, the top-up button, crystals and the daily claim in one
# white strip riding over the hero — the same content the desktop
# hero strip carries, laid out for a phone.
--------------------------------------------------------------*/

@media ( max-width: 980px ) {

	.pxz-wallet {
		position: relative;
		z-index: 3;
		display: flex;
		align-items: stretch;
		gap: 0;
		/* Sits just below the hero's edge, clipping it by a couple of
		   percent rather than sitting on top of it. The overlap is a
		   percentage so it stays proportional from a 360px phone to a
		   520px one, instead of looking deeper on the small screens. */
		margin: -2.5% -8px 12px;
		padding: 4px 2px;
		background: var( --pxz-card );
		border: 1px solid var( --pxz-line );
		border-radius: 18px;
		box-shadow: 0 10px 26px rgba( 8, 32, 18, .16 );
		overflow: hidden;
	}

	/* Both halves lose their own card styling inside the bar. */
	.pxz-wallet .pxz-stats,
	.pxz-wallet .pxz-free {
		margin: 0;
		background: none;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.pxz-wallet .pxz-stats {
		flex: 0 0 auto;
		padding: 0;
	}

	.pxz-wallet .pxz-stat {
		padding: 8px 5px;
		gap: 6px;
	}

	.pxz-wallet .pxz-stat__ic {
		width: 23px;
		height: 23px;
	}

	.pxz-wallet .pxz-stat b {
		font-size: 14px;
	}

	.pxz-wallet .pxz-stat em {
		font-size: 9px;
	}

	.pxz-wallet .pxz-stat__add {
		width: 24px;
		height: 24px;
		font-size: 16px;
	}

	/* Divider, then the claim half fills the rest of the bar. */
	.pxz-wallet .pxz-free {
		flex: 1 1 auto;
		min-width: 0;
		gap: 6px;
		padding: 8px 5px 8px 8px;
		border-left: 1px solid var( --pxz-line );
	}

	.pxz-wallet .pxz-free__ic {
		width: 23px;
		height: 23px;
		flex: 0 0 auto;
	}

	.pxz-wallet .pxz-free__ic svg,
	.pxz-wallet .pxz-free__ic .pxz-i {
		width: 17px;
		height: 17px;
	}

	.pxz-wallet .pxz-free__txt {
		flex: 1 1 auto;
		min-width: 0;
		overflow: hidden;
	}

	/*
	 * The title wraps rather than truncating: "Free Coins Ready!" cut to
	 * "Free C…" tells a player nothing, and two short lines fit the bar's
	 * height without making it taller.
	 */
	.pxz-wallet .pxz-free__txt b {
		display: block;
		font-size: 10.5px;
		line-height: 1.15;
		white-space: normal;
		overflow-wrap: break-word;
	}

	/* Under ~430px the second line has to go, or the bar grows. */
	@media ( max-width: 430px ) {

		.pxz-wallet .pxz-free__txt em {
			display: none;
		}

		.pxz-wallet .pxz-free__txt b {
			font-size: 11px;
		}
	}

	.pxz-wallet .pxz-free__txt em {
		font-size: 8.5px;
		line-height: 1.25;
		display: block;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	/* Claim: the reference's squared gold pill with its own border. */
	.pxz-wallet .pxz-free__btn {
		flex: 0 0 auto;
		margin-left: auto;
		padding: 6px 11px;
		font-size: 11.5px;
		font-weight: 800;
		color: #3B2A02;
		background: var( --pxz-gold );
		border: 1px solid rgba( 0, 0, 0, .07 );
		border-radius: 10px;
		box-shadow: 0 2px 6px rgba( 245, 179, 1, .32 );
	}

	.pxz-wallet .pxz-free__btn:disabled {
		background: var( --pxz-line );
		border-color: transparent;
		color: var( --pxz-faint );
		box-shadow: none;
	}

	/* The standalone stats card spacing no longer applies. */
	.pxz-stats {
		margin: 0;
		padding: 0;
	}
}

/* Desktop uses the hero strip instead, so the bar stays out of it. */
@media ( min-width: 981px ) {

	.pxz-wallet {
		display: none;
	}
}

@media ( max-width: 980px ) {

	/* Balances never truncate — "9.." is not a balance. The claim copy
	   is the flexible half of the bar, so it gives way instead. */
	.pxz-wallet .pxz-stats,
	.pxz-wallet .pxz-stat {
		flex: 0 0 auto;
		min-width: 0;
	}

	.pxz-wallet .pxz-stat b,
	.pxz-wallet .pxz-stat em {
		white-space: nowrap;
		overflow: visible;
		text-overflow: clip;
	}

	.pxz-wallet .pxz-free {
		flex: 1 1 0;
		min-width: 0;
	}
}

/*--------------------------------------------------------------
# Mobile header: one control, no wordmark
#
# The banner already carries the brand, so repeating it in text
# above the artwork said the same thing twice. What is left is the
# single round control on the right.
--------------------------------------------------------------*/

.pxz-mhead--bare {
	justify-content: flex-end;
}

.pxz-mhead--bare .pxz-mhead__bell {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: #fff;
	background: rgba( 255, 255, 255, .16 );
	border: 1px solid rgba( 255, 255, 255, .34 );
	backdrop-filter: blur( 6px );
	transition: background .15s ease;
}

.pxz-mhead--bare .pxz-mhead__bell:hover,
.pxz-mhead--bare .pxz-mhead__bell:active {
	background: rgba( 255, 255, 255, .28 );
}

/* The plus is artwork now, so it can be swapped in the Icon Lobby. */
.pxz-stat__add svg,
.pxz-stat__add .pxz-i {
	width: 16px;
	height: 16px;
}

.pxz-wallet .pxz-stat__add svg,
.pxz-wallet .pxz-stat__add .pxz-i {
	width: 14px;
	height: 14px;
}

/*--------------------------------------------------------------
# Hero: show the uploaded art at its own proportions
#
# The banner used to be sized by min-height and viewport height, so
# a 1600x640 or 1080x1350 upload was cropped by cover() to whatever
# shape the box happened to be — the "stretched, not the same size"
# problem. The box now takes the same aspect ratio the Icon Lobby
# asks for, so the file renders exactly as it was made.
#
# The decorative scrim over it is gone at both sizes: it dulled the
# artwork it was meant to sit behind.
--------------------------------------------------------------*/

.pxz-hero__shade {
	display: none;
}

@media ( max-width: 980px ) {

	.pxz-pane[data-pxz-pane="home"] .pxz-hero {
		/*
		 * Artwork is still made at 1080 x 1350 (4:5), but a true 4:5 box
		 * is 488px tall on a 390px phone — most of the first screen, with
		 * the wallet and Play & Earn pushed under the fold. The box keeps
		 * the ratio until it would exceed 46vh, then holds there and the
		 * lower part of the picture crops. Anchored to the top so faces
		 * and the lockup stay visible.
		 */
		/* Height, not ratio: with aspect-ratio the max-height clamp made
		   the box give up width to keep its shape, so the banner stopped
		   reaching the right edge. A straight height keeps it full-bleed
		   and cover() handles the crop. */
		aspect-ratio: auto;
		height: 46vh;
		min-height: 300px;
		max-height: 460px;
		background-size: cover;
		background-position: center top;
	}
}

@media ( min-width: 981px ) {

	.pxz-hero {
		/* 1600 x 640 */
		aspect-ratio: 5 / 2;
		min-height: 0;
		height: auto;
		background-size: cover;
		background-position: center;
	}
}
