:root {
	/* Let shared shell do most styling; these tune the stage/frame */
	--nh-frame-radius: 18px;
	--nh-glow: rgba(124, 92, 255, 0.45);
	--nh-glow2: rgba(46, 242, 255, 0.28);
	--nh-payline-stroke: rgba(46, 242, 255, 0.92);
	--nh-payline-dot-fill: rgba(46, 242, 255, 0.98);
	--nh-payline-dot-stroke: rgba(0, 0, 0, 0.55);
	--nh-payline-back-stroke: rgba(0, 0, 0, 0.60);
	--nh-payline-width: 9px;
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	.nh-cell,
	.nh-cell * {
		transition: none !important;
		animation: none !important;
	}
}

.nh-frame {
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: calc(var(--ui-radius) - 10px);
	/* Fallback frame: visible if the SVG art fails to load */
	background:
		radial-gradient(120% 80% at 20% 10%, rgba(124, 92, 255, 0.22), transparent 55%),
		radial-gradient(120% 80% at 80% 90%, rgba(46, 242, 255, 0.14), transparent 55%);
	border: 1px solid rgba(255, 255, 255, 0.10);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.06) inset,
		0 0 40px rgba(124, 92, 255, 0.08),
		0 0 40px rgba(46, 242, 255, 0.06);
}

.nh-frame::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 35%, rgba(0,0,0,0.20));
	opacity: 0.65;
}

.nh-artWrap {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

/* Mascot: desktop-only, behind the game board art, peeking from the left */
.nh-mascot{
	position: absolute;
	display: none;
	width: auto;
	object-fit: contain;
	transform: translate3d(0, 0, 0);
	filter: drop-shadow(0 18px 30px rgba(0,0,0,0.45));
	z-index: 0;
}


/* Mobile-only mascot tuning (edit these values per game as needed) */
@media (max-width: 920px) {
	.nh-mascot{
		display: block;
		left: -5%;
		bottom: -15%;
		height: 86%;
	}
	.nh-gameArt{ z-index: 1; }
	.nh-frame{ z-index: 2; }
}

/* Desktop-only mascot tuning (edit these values per game as needed) */
@media (min-width: 921px) {
	.nh-mascot{
		display: block;
		left: -5%;
		bottom: -15%;
		height: 86%;
	}
	.nh-gameArt{ z-index: 1; }
	.nh-frame{ z-index: 2; }
}

.nh-gameArt {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transform: translate3d(var(--reel-art-x, 0px), var(--reel-art-y, 0px), 0) scale(var(--reel-art-scale, 1));
	transform-origin: 50% 50%;
	filter: drop-shadow(0 18px 30px rgba(0,0,0,0.45));
}

/*
	The SVG has viewBox 1200x672 and includes a clipped rect:
	X: 211.33..988.33 (≈17.6% padding left/right)
	Y: 88.5..583.5 (≈13.2% padding top/bottom)
	We position reels in that safe "window" so the art visually contains the grid.
*/
.nh-artWindow {
	position: absolute;
	left: var(--reel-window-left, 17.6%);
	right: var(--reel-window-right, 17.6%);
	top: var(--reel-window-top, 13.2%);
	bottom: var(--reel-window-bottom, 13.2%);
	border-radius: var(--reel-window-radius, 16px);
	overflow: hidden;
}

.nh-reels {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: var(--reel-grid-gap, 8px);
	padding: var(--reel-grid-padding, 12px);
}

/* Payline overlay (SVG) */
.nh-paylines {
	position: absolute;
	inset: 0;
	z-index: 4;
	pointer-events: none;
}

.nh-payline {
	fill: none;
	stroke: var(--nh-payline-stroke, rgba(46, 242, 255, 0.78));
	stroke-width: var(--nh-payline-width, 8px);
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 0.9;
	filter: drop-shadow(0 10px 16px rgba(0,0,0,0.35)) drop-shadow(0 0 18px rgba(46, 242, 255, 0.12));
	stroke-dasharray: 22 14;
	animation: nhElectricLine 320ms linear infinite;
}

@keyframes nhElectricLine {
	0% { stroke-dashoffset: 0; opacity: 0.85; filter: drop-shadow(0 10px 16px rgba(0,0,0,0.35)) drop-shadow(0 0 18px rgba(46, 242, 255, 0.12)); }
	50% { opacity: 0.98; filter: drop-shadow(0 10px 16px rgba(0,0,0,0.35)) drop-shadow(0 0 22px rgba(46, 242, 255, 0.22)); }
	100% { stroke-dashoffset: -72; opacity: 0.88; filter: drop-shadow(0 10px 16px rgba(0,0,0,0.35)) drop-shadow(0 0 18px rgba(46, 242, 255, 0.14)); }
}

.nh-payline--back {
	stroke: var(--nh-payline-back-stroke, rgba(0, 0, 0, 0.55));
	stroke-width: calc(var(--nh-payline-width, 8px) + 6px);
	opacity: 0.55;
	filter: none;
}

.nh-paylineDot {
	fill: var(--nh-payline-dot-fill, rgba(255, 255, 255, 0.95));
	stroke: var(--nh-payline-dot-stroke, rgba(0, 0, 0, 0.55));
	stroke-width: 2px;
	opacity: 0.95;
	filter: drop-shadow(0 8px 12px rgba(0,0,0,0.35)) drop-shadow(0 0 16px rgba(255,255,255,0.18));
	animation: nhElectricDot 240ms ease-in-out infinite;
}

@keyframes nhElectricDot {
	0% { transform: scale(0.92); opacity: 0.78; }
	50% { transform: scale(1.12); opacity: 1; }
	100% { transform: scale(0.94); opacity: 0.82; }
}

/* Reel spin effect (per-column) */
@keyframes nhReelSpin {
	0% { transform: translate3d(0, -34%, 0) scale(1.02); filter: blur(1.6px) saturate(1.1) brightness(1.06); opacity: 0.92; }
	50% { transform: translate3d(0, 34%, 0) scale(1.02); filter: blur(2.1px) saturate(1.18) brightness(1.10); opacity: 0.86; }
	100% { transform: translate3d(0, -34%, 0) scale(1.02); filter: blur(1.6px) saturate(1.1) brightness(1.06); opacity: 0.92; }
}

.nh-cell.is-spinning .nh-symbolImg {
	animation: nhReelSpin 120ms linear infinite;
}

@media (max-width: 560px) {
	.nh-reels { padding: 10px; gap: 7px; }
}

.nh-cell {
	position: relative;
	z-index: 1;
	border-radius: var(--reel-cell-radius, 14px);
	background: rgba(0, 0, 0, 0.20);
	border: 1px solid rgba(255, 255, 255, 0.10);
	overflow: hidden;
	display: grid;
	place-items: center;
	transform: translate3d(0, 0, 0);
}

/* Multiplier symbols: subtle idle pulse (reduced-motion disables via global rule) */
.nh-cell[data-symbol="x2"] .nh-symbolImg,
.nh-cell[data-symbol="x3"] .nh-symbolImg,
.nh-cell[data-symbol="x5"] .nh-symbolImg,
.nh-cell[data-symbol="x10"] .nh-symbolImg,
.nh-cell[data-symbol="x50"] .nh-symbolImg {
	animation: nhMultPulse 1250ms ease-in-out infinite;
	filter: drop-shadow(0 10px 16px rgba(0,0,0,0.35)) drop-shadow(0 0 18px rgba(46, 242, 255, 0.18));
}

@keyframes nhMultPulse {
	0% { transform: scale(var(--reel-symbol-scale, 1)); filter: drop-shadow(0 10px 16px rgba(0,0,0,0.35)) drop-shadow(0 0 14px rgba(46, 242, 255, 0.12)); }
	50% { transform: scale(calc(var(--reel-symbol-scale, 1) * 1.06)); filter: drop-shadow(0 10px 16px rgba(0,0,0,0.35)) drop-shadow(0 0 22px rgba(46, 242, 255, 0.22)); }
	100% { transform: scale(var(--reel-symbol-scale, 1)); filter: drop-shadow(0 10px 16px rgba(0,0,0,0.35)) drop-shadow(0 0 14px rgba(46, 242, 255, 0.12)); }
}

.nh-cell::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background-image: url('../assets/images/bandicoot-neon-heist-tile-BG.svg');
	/* Default to a true fill; editor can switch to cover/contain if preferred */
	background-size: var(--reel-tile-bg-size, 100% 100%);
	background-position: center;
	background-repeat: no-repeat;
	opacity: var(--reel-tile-bg-opacity, 0.95);
	transform: scale(var(--reel-tile-bg-scale, 1));
	transform-origin: 50% 50%;
}

.nh-cell::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.08), transparent 30%, rgba(0,0,0,0.22));
	opacity: 0.75;
}

.nh-symbolImg {
	position: relative;
	z-index: 1;
	width: min(76%, 92px);
	height: min(76%, 92px);
	object-fit: contain;
	transform: scale(var(--reel-symbol-scale, 1));
	filter: drop-shadow(0 10px 16px rgba(0,0,0,0.35));
}

.nh-fallbackText {
	position: relative;
	z-index: 1;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 12px;
	color: rgba(255,255,255,0.86);
	text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.nh-cell.is-win {
	border-color: rgba(46, 242, 255, 0.65);
	box-shadow: 0 0 0 2px rgba(46, 242, 255, 0.16) inset, 0 0 24px rgba(46, 242, 255, 0.12);
	animation: nhWinPop 900ms cubic-bezier(0.15, 0.9, 0.2, 1) both;
}

/* Wild-in-win: quick pop + shine sweep before main win sequence */
.nh-cell.is-wildWin,
.nh-cell.is-scatterWin{
	animation: nhWildPop 520ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.nh-cell.is-wildWin .nh-symbolImg,
.nh-cell.is-scatterWin .nh-symbolImg{
	filter: drop-shadow(0 10px 16px rgba(0,0,0,0.35)) drop-shadow(0 0 18px rgba(46, 242, 255, 0.18));
}

.nh-cell.is-wildWin::after,
.nh-cell.is-scatterWin::after{
	/* Keep the base overlay AND add a moving shine band */
	background:
		linear-gradient(180deg, rgba(255,255,255,0.08), transparent 30%, rgba(0,0,0,0.22)),
		linear-gradient(115deg,
			rgba(255,255,255,0) 0%,
			rgba(255,255,255,0) 38%,
			rgba(255,255,255,0.55) 50%,
			rgba(255,255,255,0) 62%,
			rgba(255,255,255,0) 100%
		);
	background-size: auto, 220% 220%;
	background-position: 0 0, -140% 0;
	animation: nhWildShine 520ms ease-out both;
	opacity: 0.88;
}

/* Board shake during scatter effect */
.nh-reels.is-scatterShake{
	animation: nhScatterShake 520ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

@keyframes nhScatterShake{
	0% { transform: translate3d(0, 0, 0); }
	12% { transform: translate3d(-2px, 1px, 0); }
	24% { transform: translate3d(3px, -2px, 0); }
	38% { transform: translate3d(-3px, -1px, 0); }
	52% { transform: translate3d(2px, 2px, 0); }
	70% { transform: translate3d(-1px, 0px, 0); }
	100% { transform: translate3d(0, 0, 0); }
}

@keyframes nhWildPop{
	0% { transform: translate3d(0, 0, 0) scale(1); }
	22% { transform: translate3d(0, -4%, 0) scale(1.16); }
	55% { transform: translate3d(0, 0, 0) scale(1.08); }
	100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes nhWildShine{
	0% { background-position: 0 0, -140% 0; }
	100% { background-position: 0 0, 140% 0; }
}

/* Electric hit flash applied sequentially during a win */
.nh-cell.is-zap {
	animation: nhZap 220ms ease-out both;
}

@keyframes nhZap {
	0% { box-shadow: 0 0 0 2px rgba(46, 242, 255, 0.18) inset, 0 0 0 rgba(46, 242, 255, 0); }
	35% { box-shadow: 0 0 0 2px rgba(46, 242, 255, 0.30) inset, 0 0 34px rgba(46, 242, 255, 0.18); }
	100% { box-shadow: 0 0 0 2px rgba(46, 242, 255, 0.12) inset, 0 0 0 rgba(46, 242, 255, 0); }
}

@keyframes nhWinPop {
	0% { transform: translate3d(0, 0, 0) scale(1); }
	22% { transform: translate3d(0, -3%, 0) scale(1.08); }
	60% { transform: translate3d(0, 0, 0) scale(1.05); }
	100% { transform: translate3d(0, 0, 0) scale(1); }
}

.nh-cell.is-remove {
	animation: nhBreak 240ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes nhBreak {
	0% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0px) saturate(1); }
	20% { opacity: 1; transform: translate3d(0, -2%, 0) scale(1.06); filter: blur(0px) saturate(1.1); }
	55% { opacity: 0.85; transform: translate3d(0, 0, 0) scale(0.96) rotate(-1deg); filter: blur(0.4px) saturate(1.2); }
	100% { opacity: 0; transform: translate3d(0, 2%, 0) scale(0.86) rotate(2deg); filter: blur(1.2px) saturate(1.3); }
}

.nh-cell.is-drop {
	animation: nhDrop var(--nh-drop-ms, 360ms) cubic-bezier(0.2, 0.7, 0.2, 1) var(--nh-drop-delay, 0ms) both;
}

/* Optional extra juice for scatter-drop: shake the symbol while it falls. */
.nh-cell.is-drop.is-dropShake .nh-symbolImg{
	animation: nhDropShake var(--nh-drop-ms, 360ms) ease-in-out var(--nh-drop-delay, 0ms) both;
}

@keyframes nhDrop {
	from { transform: translate3d(0, var(--nh-drop-from, -22%), 0); }
	to { transform: translate3d(0, 0, 0); }
}

@keyframes nhDropShake{
	0% { transform: translate3d(0, 0, 0) rotate(0deg); }
	12% { transform: translate3d(-1.6%, 0, 0) rotate(-1.2deg); }
	24% { transform: translate3d(1.4%, 0, 0) rotate(1.0deg); }
	36% { transform: translate3d(-1.2%, 0, 0) rotate(-0.9deg); }
	48% { transform: translate3d(1.0%, 0, 0) rotate(0.8deg); }
	60% { transform: translate3d(-0.7%, 0, 0) rotate(-0.6deg); }
	72% { transform: translate3d(0.6%, 0, 0) rotate(0.5deg); }
	84% { transform: translate3d(-0.3%, 0, 0) rotate(-0.2deg); }
	100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

/* Nice/Big Win callout overlay */
.nh-winCallout{
	position: fixed;
	inset: 0;
	z-index: 95;
	display: none;
	place-items: center;
	pointer-events: none;
}

.nh-winCallout[aria-hidden="false"]{
	display: grid;
}

.nh-winCallout__bg{
	position: absolute;
	left: 50%;
	top: 50%;
	width: min(92vw, 860px);
	height: auto;
	max-height: min(74svh, 620px);
	object-fit: contain;
	opacity: 0;
	transform: translate(-50%, -50%) scale(1.02);
	filter: blur(0px);
}

.nh-winCallout.is-show .nh-winCallout__bg{
	animation: nhCalloutBgIn 220ms ease-out both;
}

@keyframes nhCalloutBgIn{
	from { opacity: 0; transform: translate(-50%, -50%) scale(1.05); filter: blur(2px); }
	to { opacity: 1; transform: translate(-50%, -50%) scale(1.0); filter: blur(0px); }
}

.nh-winCallout__text{
	position: relative;
	width: min(76vw, 520px);
	height: auto;
	transform: scale(0.75);
	opacity: 0;
	filter: drop-shadow(0 20px 30px rgba(0,0,0,0.55));
}

.nh-winCallout.is-show .nh-winCallout__text{
	animation: nhCalloutTextZoom 900ms cubic-bezier(0.2, 0.9, 0.2, 1) 60ms both;
}

.nh-winCallout__particles{
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.nh-winParticle{
	position: absolute;
	left: var(--p-x, 50%);
	top: var(--p-y, 40%);
	width: var(--p-size, 10px);
	height: var(--p-size, 10px);
	border-radius: 999px;
	opacity: 0;
	transform: translate3d(-50%, -50%, 0) scale(0.6);
	background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.92), rgba(255,255,255,0.18) 55%, rgba(255,255,255,0) 70%);
	box-shadow:
		0 0 0 1px rgba(46, 242, 255, 0.16) inset,
		0 0 18px rgba(46, 242, 255, 0.18),
		0 0 34px rgba(124, 92, 255, 0.14);
}

.nh-winCallout.is-show .nh-winParticle{
	animation:
		nhWinParticleRise var(--p-dur, 980ms) cubic-bezier(0.2, 0.9, 0.2, 1) var(--p-delay, 0ms) both,
		nhWinParticleTwinkle 260ms ease-in-out var(--p-delay, 0ms) infinite;
}

@keyframes nhWinParticleRise{
	0%{ opacity: 0; transform: translate3d(-50%, -50%, 0) scale(0.55); filter: blur(1px); }
	15%{ opacity: 1; transform: translate3d(calc(-50% + (var(--p-drift, 0px) * 0.10)), calc(-50% - 6px), 0) scale(1.0); filter: blur(0px); }
	65%{ opacity: 0.95; transform: translate3d(calc(-50% + (var(--p-drift, 0px) * 0.70)), calc(-50% - 58px), 0) scale(0.95); }
	100%{ opacity: 0; transform: translate3d(calc(-50% + var(--p-drift, 0px)), calc(-50% - 92px), 0) scale(0.75); }
}

@keyframes nhWinParticleTwinkle{
	0%{ filter: brightness(1.0); }
	50%{ filter: brightness(1.25); }
	100%{ filter: brightness(1.0); }
}

@keyframes nhCalloutTextZoom{
	0% { opacity: 0; transform: scale(0.70); }
	20% { opacity: 1; transform: scale(1.06); }
	55% { opacity: 1; transform: scale(0.98); }
	80% { opacity: 1; transform: scale(1.04); }
	100% { opacity: 1; transform: scale(1.0); }
}

/* Bonus trigger sequence: flash bonus tiles + center symbol pop */
.nh-cell.is-bonusFlash{
	border-color: var(--nh-payline-stroke);
	box-shadow:
		0 0 0 2px rgba(46, 242, 255, 0.18) inset,
		0 0 26px rgba(46, 242, 255, 0.16);
	animation: nhBonusFlash 150ms ease-in-out infinite alternate;
}

@keyframes nhBonusFlash{
	from {
		box-shadow:
			0 0 0 2px rgba(46, 242, 255, 0.16) inset,
			0 0 18px rgba(46, 242, 255, 0.10);
		filter: saturate(1.05) brightness(1.02);
	}
	to {
		box-shadow:
			0 0 0 2px rgba(46, 242, 255, 0.30) inset,
			0 0 34px rgba(46, 242, 255, 0.20);
		filter: saturate(1.25) brightness(1.10);
	}
}

.nh-bonusIntro{
	position: fixed;
	inset: 0;
	z-index: 94;
	display: none;
	place-items: center;
	pointer-events: none;
}

.nh-bonusIntro[aria-hidden="false"]{
	display: grid;
}

.nh-bonusIntro__symbol{
	width: min(56vw, 420px);
	height: auto;
	opacity: 0;
	transform: scale(0.7);
	filter: drop-shadow(0 22px 34px rgba(0,0,0,0.62)) drop-shadow(0 0 24px rgba(46, 242, 255, 0.18));
}

.nh-bonusIntro.is-show .nh-bonusIntro__symbol{
	animation: nhBonusSymbolPop 900ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

@keyframes nhBonusSymbolPop{
	0% { opacity: 0; transform: scale(0.60); }
	20% { opacity: 1; transform: scale(1.18); }
	55% { opacity: 1; transform: scale(1.04); }
	100% { opacity: 0; transform: scale(1.0); }
}

@media (prefers-reduced-motion: reduce) {
	.nh-winCallout.is-show .nh-winCallout__bg,
	.nh-winCallout.is-show .nh-winCallout__text{
		animation: none !important;
		opacity: 1;
		transform: none;
		filter: none;
	}
	.nh-winCallout.is-show .nh-winParticle{
		animation: none !important;
		opacity: 0;
	}
	.nh-cell.is-wildWin,
	.nh-cell.is-wildWin::after{
		animation: none !important;
	}
	.nh-cell.is-scatterWin,
	.nh-cell.is-scatterWin::after{
		animation: none !important;
	}
	.nh-reels.is-scatterShake{
		animation: none !important;
	}
	.nh-cell.is-bonusFlash{
		animation: none !important;
	}
	.nh-bonusIntro.is-show .nh-bonusIntro__symbol{
		animation: none !important;
		opacity: 1;
		transform: none;
		filter: none;
	}
}

/* Bonus overlay (game-local, does not depend on shared modal) */
.nh-bonusOverlay {
	position: fixed;
	inset: 0;
	z-index: 60;
	display: none;
	place-items: center;
}

.nh-bonusOverlay[aria-hidden="false"] {
	display: grid;
}

.nh-bonusBackdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.72);
}

.nh-bonusPanel {
	position: relative;
	width: min(92vw, 820px);
	border-radius: var(--ui-radius);
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(12, 14, 30, 0.92);
	backdrop-filter: blur(12px);
	padding: 14px;
	display: grid;
	gap: 12px;
	grid-template-rows: auto auto 1fr auto;
}

.nh-bonusTop {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 10px;
}

.nh-bonusTitle {
	margin: 0;
	font-size: 18px;
}

.nh-bonusClose {
	appearance: none;
	border: 1px solid rgba(255,255,255,0.18);
	background: rgba(255,255,255,0.06);
	color: rgba(255,255,255,0.92);
	border-radius: 12px;
	padding: 8px 10px;
	cursor: pointer;
}

.nh-bonusInfo {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	color: rgba(255,255,255,0.86);
}

.nh-bonusInfo .label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255,255,255,0.64);
}

.nh-bonusInfo .value {
	font-weight: 900;
	font-size: 18px;
}

.nh-panels {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

@media (max-width: 560px) {
	.nh-panels { grid-template-columns: repeat(2, 1fr); }
	.nh-bonusInfo { grid-template-columns: 1fr; }
}

.nh-panelBtn {
	appearance: none;
	cursor: pointer;
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.12);
	background:
		radial-gradient(120% 90% at 30% 20%, rgba(124, 92, 255, 0.24), transparent 55%),
		radial-gradient(120% 90% at 70% 80%, rgba(46, 242, 255, 0.16), transparent 55%),
		rgba(0,0,0,0.18);
	color: rgba(255,255,255,0.92);
	padding: 16px 10px;
	min-height: 74px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.nh-panelBtn[disabled] {
	opacity: 0.55;
	cursor: not-allowed;
}

.nh-panelBtn.is-revealed {
	border-color: rgba(46, 242, 255, 0.55);
	box-shadow: 0 0 0 2px rgba(46, 242, 255, 0.16) inset;
}

.nh-bonusBottom {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 10px;
}

.nh-bonusMsg {
	color: rgba(255,255,255,0.78);
	font-weight: 700;
}

.nh-continueBtn {
	appearance: none;
	cursor: pointer;
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.20);
	background: linear-gradient(90deg, rgba(124, 92, 255, 0.95), rgba(46, 242, 255, 0.80));
	color: rgba(255,255,255,0.96);
	padding: 12px 14px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Reel Editor export for /games/bandicoot-neon-heist-reel/index.html */
.reel-app[data-reel-game="bandicoot-neon-heist-reel"] {
  --reel-art-scale: 1.3;
  --reel-art-x: 2px;
  --reel-art-y: 5px;
  --reel-cell-radius: 14px;
  --reel-grid-gap: 8px;
  --reel-grid-padding: 12px;
  --reel-stage-aspect: 2.4;
  --reel-symbol-scale: 1.3;
  --reel-tile-bg-opacity: 1;
  --reel-tile-bg-scale: 1.38;
  --reel-window-bottom: 8.9%;
  --reel-window-left: 24.3%;
  --reel-window-radius: 16px;
  --reel-window-right: 23.2%;
  --reel-window-top: 13.2%;
}
/* Reel Editor export for /games/bandicoot-neon-heist-reel/index.html */
.reel-app[data-reel-game="bandicoot-neon-heist-reel"] {
  --reel-art-scale: 1.3;
  --reel-art-x: 5px;
  --reel-art-y: 5px;
  --reel-cell-radius: 14px;
  --reel-grid-gap: 8px;
  --reel-grid-padding: 12px;
  --reel-stage-aspect: 2.4;
  --reel-symbol-scale: 1.3;
  --reel-tile-bg-opacity: 1;
  --reel-tile-bg-scale: 1.38;
  --reel-window-bottom: 8.9%;
  --reel-window-left: 24.3%;
  --reel-window-radius: 16px;
  --reel-window-right: 23.2%;
  --reel-window-top: 13.2%;
}
@media (max-width: 920px) {
.reel-app[data-reel-game="bandicoot-neon-heist-reel"] {
  --reel-art-scale: 1.3;
  --reel-art-x: 5px;
  --reel-art-y: 5px;
  --reel-cell-radius: 14px;
  --reel-grid-gap: 8px;
  --reel-grid-padding: 12px;
  --reel-stage-aspect: 2.4;
  --reel-symbol-scale: 1.3;
  --reel-tile-bg-opacity: 1;
  --reel-tile-bg-scale: 1.38;
  --reel-window-bottom: 8.9%;
  --reel-window-left: 24.3%;
  --reel-window-radius: 16px;
  --reel-window-right: 23.2%;
  --reel-window-top: 13.2%;
}
}

