/* ==========================================================================
   Visual homepage (page-templates/home-visual.php)
   Same token set as slot-review.css so the two pages read as one system.
   Scoped under .ssvh-home. Shapes deliberately vary per section:
   navy hero with a fanned deck of key art → straddling stats card →
   feature card + ranked list → bento tiles + chips → leaderboard rows →
   navy scroller of casino cards → logo marquee → method split → art cards.
   ========================================================================== */

:root {
	--ssvh-navy: #1B2A41;
	--ssvh-navy-deep: #12203A;
	--ssvh-navy-soft: #24364F;
	--ssvh-gold: #D4A72C;
	--ssvh-gold-deep: #B88E1F;
	--ssvh-ink: #1A1D23;
	--ssvh-body: #2E3742;
	--ssvh-muted: #4A5B68;
	--ssvh-faint: #7B8794;
	--ssvh-line: #E3E8EF;
	--ssvh-mist: #F0F3F7;
	--ssvh-ground: #F4F6F9;
	--ssvh-card: #FFFFFF;
	--ssvh-radius: 18px;
	--ssvh-radius-sm: 12px;
	--ssvh-shadow: 0 12px 32px rgba(27, 42, 65, 0.08), 0 1px 2px rgba(27, 42, 65, 0.05);
	--ssvh-shadow-sm: 0 4px 14px rgba(27, 42, 65, 0.06), 0 1px 2px rgba(27, 42, 65, 0.04);
	--ssvh-display: 'Sora', 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--ssvh-text: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

body.page-template-home-visual {
	background: var(--ssvh-ground);
	color: var(--ssvh-body);
}
/* The navy header should run straight into the navy hero. */
body.page-template-home-visual .site-header {
	border-bottom: 0;
}

.ssvh-home {
	font-family: var(--ssvh-text);
	-webkit-font-smoothing: antialiased;
	padding: 0;
	overflow-x: clip;
}
.ssvh-home a {
	transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.18s ease;
}
.ssvh-home :focus-visible {
	outline: 3px solid rgba(212, 167, 44, 0.7);
	outline-offset: 3px;
	border-radius: 6px;
}
.ssvh-home ul,
.ssvh-home ol {
	list-style: none;
	margin: 0;
	padding: 0;
}
.ssvh-home li {
	margin: 0;
	padding: 0;
}
.ssvh-home li::before {
	content: none !important;
}
.ssvh-home dl,
.ssvh-home dt,
.ssvh-home dd {
	margin: 0;
	padding: 0;
}

/* Section rhythm */
.ssvh-section {
	padding: 72px 0 0;
}
.ssvh-section--tight {
	padding-top: 56px;
}
.ssvh-section--editor {
	padding-top: 40px;
}
.ssvh-band {
	margin-top: 80px;
	padding: 64px 0 72px;
	background: var(--ssvh-navy);
	color: #FFFFFF;
}

/* Section heads */
.ssvh-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}
.ssvh-home .ssvh-h2 {
	position: relative;
	margin: 0;
	padding-bottom: 14px;
	font-family: var(--ssvh-display);
	font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: var(--ssvh-navy);
}
.ssvh-home .ssvh-h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 56px;
	height: 3px;
	border-radius: 2px;
	background: var(--ssvh-gold);
}
.ssvh-band .ssvh-h2 {
	color: #FFFFFF;
}
.ssvh-home .ssvh-sub {
	margin: 12px 0 0;
	max-width: 60ch;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--ssvh-muted);
}
.ssvh-band .ssvh-sub {
	color: rgba(255, 255, 255, 0.72);
}
.ssvh-home .ssvh-more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	flex: 0 0 auto;
	padding-bottom: 14px;
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--ssvh-navy);
	text-decoration: none;
	white-space: nowrap;
}
.ssvh-home .ssvh-more:hover {
	color: var(--ssvh-gold-deep);
}
.ssvh-band .ssvh-more {
	color: var(--ssvh-gold);
}
.ssvh-band .ssvh-more:hover {
	color: #FFFFFF;
}

/* Buttons */
.ssvh-home .ssvh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 0 24px;
	border-radius: 999px;
	font-family: var(--ssvh-text);
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
	line-height: 1.1;
	white-space: nowrap;
}
.ssvh-home .ssvh-btn--solid {
	background: var(--ssvh-navy);
	color: #FFFFFF;
	box-shadow: 0 8px 18px rgba(27, 42, 65, 0.22);
}
.ssvh-home .ssvh-btn--solid:hover {
	background: var(--ssvh-navy-deep);
	color: #FFFFFF;
	transform: translateY(-1px);
}
.ssvh-home .ssvh-btn--gold {
	background: var(--ssvh-gold);
	color: var(--ssvh-navy);
	min-height: 42px;
	padding: 0 18px;
	font-size: 0.88rem;
}
.ssvh-home .ssvh-btn--gold:hover {
	background: #E5B93B;
	color: var(--ssvh-navy);
}
.ssvh-home .ssvh-btn--outline {
	background: #FFFFFF;
	color: var(--ssvh-navy);
	border: 1.5px solid var(--ssvh-navy);
}
.ssvh-home .ssvh-btn--outline:hover {
	background: var(--ssvh-mist);
	color: var(--ssvh-navy);
}

/* Rating badge (score tiers match the review page) */
.ssvh-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 28px;
	padding: 0 8px;
	border-radius: 8px;
	font-family: var(--ssvh-display);
	font-size: 0.86rem;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1;
}
.ssvh-badge--high { background: #2ECC71; }
.ssvh-badge--mid  { background: #E0954F; }
.ssvh-badge--low  { background: #E05B56; }

/* Art wrapper */
.ssvh-art {
	display: block;
	overflow: hidden;
	background: var(--ssvh-navy);
}
.ssvh-art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.ssvh-art--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ssvh-navy-soft);
	color: var(--ssvh-gold);
	font-family: var(--ssvh-display);
	font-weight: 700;
	font-size: 1.5rem;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.ssvh-hero {
	position: relative;
	background: var(--ssvh-navy);
	color: #FFFFFF;
	padding: 56px 0 120px;
	/* No overflow clipping here: the search dropdown must be free to extend
	   past the band's bottom edge, over the stats card. The gold glow below
	   is sized to stay inside the band instead. */
}
/* Faint gold light behind the deck — the only decoration in the band. */
.ssvh-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(55% 90% at 92% 30%, rgba(212, 167, 44, 0.16), rgba(212, 167, 44, 0) 100%);
	pointer-events: none;
}
.ssvh-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
}
.ssvh-eyebrow {
	margin: 0 0 18px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ssvh-gold);
}
.ssvh-eyebrow::before {
	content: "";
	width: 28px;
	height: 2px;
	background: var(--ssvh-gold);
	border-radius: 2px;
}
.ssvh-home .ssvh-h1 {
	margin: 0;
	font-family: var(--ssvh-display);
	font-size: clamp(2.4rem, 1.6rem + 3.2vw, 4.2rem);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.03em;
	color: #FFFFFF;
}
.ssvh-home .ssvh-h1 span {
	color: var(--ssvh-gold);
}
.ssvh-lead {
	margin: 22px 0 30px;
	max-width: 52ch;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78);
}

/* [slot_search] restyled as the hero's big search pill */
.ssvh-search {
	position: relative;
	max-width: 560px;
	z-index: 5;
}
.ssvh-search .ccp-course-search {
	margin: 0;
	max-width: none;
}
.ssvh-search .ccp-cs-input-row {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 60px;
	padding: 6px 6px 6px 20px;
	border-radius: 999px;
	background: #FFFFFF;
	border: 0;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.ssvh-search .ccp-cs-input-row:focus-within {
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), 0 0 0 4px rgba(212, 167, 44, 0.45);
}
.ssvh-search .ccp-cs-icon {
	color: var(--ssvh-faint);
	flex: 0 0 auto;
}
.ssvh-search .ccp-cs-input {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	background: transparent;
	font-family: var(--ssvh-text);
	font-size: 1.02rem;
	color: var(--ssvh-ink);
	padding: 8px 0;
	outline: none;
	box-shadow: none;
}
.ssvh-search .ccp-cs-input::placeholder {
	color: var(--ssvh-faint);
}
.ssvh-search .ccp-cs-btn {
	flex: 0 0 auto;
	min-height: 46px;
	padding: 0 22px;
	border: 0;
	border-radius: 999px;
	background: var(--ssvh-navy);
	color: #FFFFFF;
	font-family: var(--ssvh-text);
	font-weight: 700;
	font-size: 0.92rem;
	cursor: pointer;
}
.ssvh-search .ccp-cs-btn:hover {
	background: var(--ssvh-gold);
	color: var(--ssvh-navy);
}
.ssvh-search .ccp-cs-results {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 8px);
	z-index: 30;
	background: #FFFFFF;
	border-radius: 16px;
	box-shadow: var(--ssvh-shadow);
	overflow: hidden;
	overflow-y: auto;
	max-height: min(420px, 60vh);
	color: var(--ssvh-ink);
	text-align: left;
}

.ssvh-hero .ssvh-quick {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
}
.ssvh-hero .ssvh-quick li {
	margin: 0;
	padding: 0;
}
.ssvh-quick a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.86rem;
	font-weight: 600;
	text-decoration: none;
}
.ssvh-quick a .ssvt-icon {
	color: var(--ssvh-gold);
}
.ssvh-quick a:hover {
	border-color: var(--ssvh-gold);
	color: #FFFFFF;
	background: rgba(255, 255, 255, 0.06);
}

/* Key-art deck: the five highest-rated slots fanned like a hand of cards,
   dealt face down. Hovering (or focusing) a card lifts it, straightens it
   and turns it over: the front carries the key art (never cropped — a
   blurred copy fills the frame), rating, RTP and a short spec panel.
   Touch devices get the fronts face up, since they cannot hover. */
.ssvh-deck {
	position: relative;
	height: 460px;
	perspective: 1400px;
}
.ssvh-deck__hint {
	position: absolute;
	left: 0;
	top: 6px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.55);
}
.ssvh-deck__hint::before {
	content: "";
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: var(--ssvh-gold);
}
.ssvh-deck__card {
	position: absolute;
	left: 50%;
	bottom: 26px;
	width: 200px;
	aspect-ratio: 3 / 4;
	margin-left: -100px;
	color: #FFFFFF;
	text-decoration: none;
	transform-origin: 50% 130%;
	transform: translateX(var(--tx)) rotate(var(--r)) translateY(var(--ty));
	z-index: var(--z);
	transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
	outline: 0;
}
.ssvh-deck__inner {
	position: absolute;
	inset: 0;
	border-radius: 18px;
	transform-style: preserve-3d;
	transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease;
	box-shadow: 0 26px 48px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.ssvh-deck__back,
.ssvh-deck__front {
	position: absolute;
	inset: 0;
	border-radius: 18px;
	overflow: hidden;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
/* Card back: navy with a fine gold lattice and an inset border, the site
   mark in the middle, the rank in the corners like a playing card. */
.ssvh-deck__back {
	background:
		repeating-linear-gradient(45deg, rgba(212, 167, 44, 0.09) 0 1px, transparent 1px 9px),
		repeating-linear-gradient(-45deg, rgba(212, 167, 44, 0.09) 0 1px, transparent 1px 9px),
		linear-gradient(160deg, #243657, #12203A);
	display: flex;
	align-items: center;
	justify-content: center;
}
.ssvh-deck__back::before {
	content: "";
	position: absolute;
	inset: 10px;
	border: 1.5px solid rgba(212, 167, 44, 0.5);
	border-radius: 12px;
	pointer-events: none;
}
.ssvh-deck__back .ssvh-deck__logo {
	width: 64%;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}
.ssvh-deck__rank {
	position: absolute;
	top: 12px;
	left: 12px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(10, 16, 28, 0.7);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
	font-family: var(--ssvh-display);
	font-size: 0.72rem;
	font-weight: 700;
	color: #FFFFFF;
}
.ssvh-deck__back .ssvh-deck__rank {
	background: var(--ssvh-gold);
	color: var(--ssvh-navy-deep);
	box-shadow: none;
	top: 18px;
	left: 18px;
}
.ssvh-deck__back .ssvh-deck__rank--flip {
	top: auto;
	left: auto;
	right: 18px;
	bottom: 18px;
	transform: rotate(180deg);
}
/* Card front */
.ssvh-deck__front {
	transform: rotateY(180deg);
	background: var(--ssvh-navy-soft);
}
.ssvh-deck__bg {
	position: absolute;
	inset: -12%;
	width: 124%;
	height: 124%;
	object-fit: cover;
	filter: blur(18px) saturate(1.2);
	opacity: 0.9;
}
.ssvh-deck__art {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.ssvh-deck__front .ssvh-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}
.ssvh-deck__label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 60px 14px 13px;
	background: linear-gradient(to top, rgba(10, 16, 28, 0.96) 0%, rgba(10, 16, 28, 0.6) 55%, rgba(10, 16, 28, 0));
}
.ssvh-deck__name {
	font-family: var(--ssvh-display);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.01em;
}
.ssvh-deck__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.74rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.72);
}
.ssvh-deck__meta b {
	color: var(--ssvh-gold);
	font-variant-numeric: tabular-nums;
}
.ssvh-deck__spec {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px 10px;
	align-items: end;
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-family: var(--ssvh-display);
	font-size: 0.86rem;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}
.ssvh-deck__spec small {
	display: block;
	font-family: var(--ssvh-text);
	font-size: 0.64rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.6);
}
.ssvh-deck__spec .ssv-bolts i svg {
	fill: rgba(255, 255, 255, 0.25);
}
.ssvh-deck__spec .ssv-bolts--low i.on svg { fill: #4ED08A; }
.ssvh-deck__spec .ssv-bolts--mid i.on svg { fill: #F0CB6A; }
.ssvh-deck__spec .ssv-bolts--high i.on svg { fill: #FF7B72; }
.ssvh-deck__go {
	grid-column: 1 / -1;
	font-family: var(--ssvh-text);
	font-size: 0.78rem;
	color: var(--ssvh-gold);
}
/* Best card: gold edge on both faces. */
.ssvh-deck__card--top .ssvh-deck__inner {
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 0 2px var(--ssvh-gold);
}
/* Hover / focus: lift, straighten, turn over. */
.ssvh-deck__card:hover,
.ssvh-deck__card:focus-visible {
	z-index: 20;
	transform: translateX(var(--tx)) rotate(0deg) translateY(calc(var(--ty) - 26px)) scale(1.04);
}
.ssvh-deck__card:hover .ssvh-deck__inner,
.ssvh-deck__card:focus-visible .ssvh-deck__inner {
	transform: rotateY(180deg);
	box-shadow: 0 34px 64px rgba(0, 0, 0, 0.6), 0 0 0 2px var(--ssvh-gold);
}
/* Touch: the first tap turns a card over (JS adds .is-open), the second
   tap follows the link. Same lift + flip as hover. */
.ssvh-deck__card.is-open {
	z-index: 20;
	transform: translateX(var(--tx)) rotate(0deg) translateY(calc(var(--ty) - 26px)) scale(1.04);
}
.ssvh-deck__card.is-open .ssvh-deck__inner {
	transform: rotateY(180deg);
	box-shadow: 0 34px 64px rgba(0, 0, 0, 0.6), 0 0 0 2px var(--ssvh-gold);
}
/* Fan geometry. Five cards is the normal case; three and four keep the best
   card centred with the rest spread symmetrically. */
.ssvh-deck--5 .ssvh-deck__card:nth-child(2) { --tx: -166px; --r: -14deg; --ty: 14px; --z: 1; }
.ssvh-deck--5 .ssvh-deck__card:nth-child(3) { --tx: -86px;  --r: -7deg;  --ty: 4px;  --z: 2; }
.ssvh-deck--5 .ssvh-deck__card:nth-child(4) { --tx: 0px;    --r: 0deg;   --ty: -10px; --z: 5; }
.ssvh-deck--5 .ssvh-deck__card:nth-child(5) { --tx: 86px;   --r: 7deg;   --ty: 4px;  --z: 2; }
.ssvh-deck--5 .ssvh-deck__card:nth-child(6) { --tx: 166px;  --r: 14deg;  --ty: 14px; --z: 1; }
.ssvh-deck--4 .ssvh-deck__card:nth-child(2) { --tx: -150px; --r: -12deg; --ty: 12px; --z: 1; }
.ssvh-deck--4 .ssvh-deck__card:nth-child(3) { --tx: -20px;  --r: 0deg;   --ty: -10px; --z: 5; }
.ssvh-deck--4 .ssvh-deck__card:nth-child(4) { --tx: 90px;   --r: 8deg;   --ty: 4px;  --z: 3; }
.ssvh-deck--4 .ssvh-deck__card:nth-child(5) { --tx: 180px;  --r: 15deg;  --ty: 16px; --z: 1; }
.ssvh-deck--3 .ssvh-deck__card:nth-child(2) { --tx: -120px; --r: -10deg; --ty: 10px; --z: 1; }
.ssvh-deck--3 .ssvh-deck__card:nth-child(3) { --tx: 0px;    --r: 0deg;   --ty: -10px; --z: 5; }
.ssvh-deck--3 .ssvh-deck__card:nth-child(4) { --tx: 120px;  --r: 10deg;  --ty: 10px; --z: 1; }

/* Stats card straddling the hero's bottom edge */
.ssvh-stats {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: -64px;
	background: var(--ssvh-card);
	border-radius: var(--ssvh-radius);
	box-shadow: var(--ssvh-shadow);
	overflow: hidden;
}
.ssvh-stats > div {
	padding: 26px 28px;
	border-left: 1px solid var(--ssvh-line);
}
.ssvh-stats > div:first-child {
	border-left: 0;
}
.ssvh-stats dt {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ssvh-faint);
}
.ssvh-stats dd {
	margin-top: 6px;
	font-family: var(--ssvh-display);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	color: var(--ssvh-navy);
	font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   Highest-rated: one feature card + ranked list
   -------------------------------------------------------------------------- */
.ssvh-pick {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	gap: 28px;
	align-items: stretch;
}
.ssvh-pick__one {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
	background: var(--ssvh-card);
	border-radius: var(--ssvh-radius);
	box-shadow: var(--ssvh-shadow);
	overflow: hidden;
}
.ssvh-pick__art {
	position: relative;
	display: block;
	min-height: 360px;
}
.ssvh-pick__art .ssvh-art {
	position: absolute;
	inset: 0;
}
.ssvh-pick__rank {
	position: absolute;
	left: 16px;
	top: 16px;
	padding: 8px 12px;
	border-radius: 10px;
	background: var(--ssvh-gold);
	color: var(--ssvh-navy);
	font-family: var(--ssvh-display);
	font-weight: 700;
	font-size: 0.95rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.ssvh-pick__body {
	padding: 30px 32px 32px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ssvh-pick__rating {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--ssvh-muted);
	font-family: var(--ssvh-display);
}
.ssvh-pick__rating b {
	font-size: 1.25rem;
	color: var(--ssvh-navy);
}
.ssvh-home .ssvh-pick__name {
	margin: 4px 0 0;
	font-family: var(--ssvh-display);
	font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
}
.ssvh-home .ssvh-pick__name a {
	color: var(--ssvh-navy);
	text-decoration: none;
}
.ssvh-home .ssvh-pick__name a:hover {
	color: var(--ssvh-gold-deep);
}
.ssvh-home .ssvh-pick__provider {
	margin: 0;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--ssvh-faint);
}
.ssvh-home .ssvh-pick__tagline {
	margin: 6px 0 0;
	font-size: 1.02rem;
	line-height: 1.55;
	color: var(--ssvh-body);
}
.ssvh-pick__spec {
	display: flex;
	gap: 24px;
	margin: 10px 0 18px;
	padding-top: 16px;
	border-top: 1px solid var(--ssvh-line);
}
.ssvh-pick__spec dt {
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ssvh-faint);
}
.ssvh-pick__spec dd {
	margin-top: 2px;
	font-family: var(--ssvh-display);
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--ssvh-ink);
}
.ssvh-pick__body .ssvh-btn {
	align-self: flex-start;
	margin-top: auto;
}

.ssvh-rank {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ssvh-rank__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 14px 12px 10px;
	background: var(--ssvh-card);
	border-radius: var(--ssvh-radius-sm);
	box-shadow: var(--ssvh-shadow-sm);
	border: 1px solid transparent;
	text-decoration: none;
	color: inherit;
	flex: 1 1 auto;
}
.ssvh-rank__item:hover {
	border-color: var(--ssvh-line);
	transform: translateX(4px);
}
.ssvh-rank__num {
	flex: 0 0 34px;
	text-align: center;
	font-family: var(--ssvh-display);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--ssvh-gold);
	line-height: 1;
}
.ssvh-rank__art {
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
	border-radius: 10px;
}
.ssvh-rank__text {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.ssvh-rank__name {
	font-family: var(--ssvh-display);
	font-weight: 700;
	font-size: 0.98rem;
	color: var(--ssvh-navy);
	line-height: 1.2;
}
.ssvh-rank__meta {
	font-size: 0.8rem;
	color: var(--ssvh-faint);
}
.ssvh-rank__meta i {
	font-style: normal;
	margin: 0 5px;
}

/* --------------------------------------------------------------------------
   Browse: bento tiles + mechanic chips
   -------------------------------------------------------------------------- */
.ssvh-tiles {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}
.ssvh-tiles .is-wide {
	grid-column: span 2;
}
.ssvh-tile {
	display: flex;
	flex-direction: column;
	gap: 4px;
	height: 100%;
	min-height: 150px;
	padding: 20px 22px;
	background: var(--ssvh-card);
	border: 1px solid var(--ssvh-line);
	border-radius: var(--ssvh-radius);
	text-decoration: none;
	color: var(--ssvh-navy);
	box-shadow: var(--ssvh-shadow-sm);
}
.ssvh-tile:hover {
	background: var(--ssvh-navy);
	border-color: var(--ssvh-navy);
	color: #FFFFFF;
	transform: translateY(-3px);
	box-shadow: var(--ssvh-shadow);
}
.ssvh-tile__icon {
	color: var(--ssvh-gold);
	margin-bottom: auto;
}
.ssvh-tile__name {
	font-family: var(--ssvh-display);
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin-top: 18px;
}
.is-wide .ssvh-tile__name {
	font-size: 1.5rem;
}
.ssvh-tile__count {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--ssvh-faint);
}
.ssvh-tile:hover .ssvh-tile__count {
	color: rgba(255, 255, 255, 0.7);
}

.ssvh-mechanics {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	margin-top: 22px;
}
.ssvh-mechanics__label {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ssvh-faint);
}
.ssvh-mechanics ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.ssvh-mechanics a {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--ssvh-mist);
	color: var(--ssvh-navy);
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
}
.ssvh-mechanics a:hover {
	background: var(--ssvh-gold);
	color: var(--ssvh-navy);
}

/* --------------------------------------------------------------------------
   RTP leaderboard
   -------------------------------------------------------------------------- */
.ssvh-board {
	background: var(--ssvh-card);
	border-radius: var(--ssvh-radius);
	box-shadow: var(--ssvh-shadow);
	overflow: hidden;
}
.ssvh-board__row {
	display: grid;
	grid-template-columns: 36px 52px minmax(0, 1.4fr) minmax(0, 1fr) 84px 110px 100px;
	align-items: center;
	gap: 16px;
	padding: 12px 22px;
	border-top: 1px solid var(--ssvh-line);
	text-decoration: none;
	color: inherit;
}
.ssvh-board li:first-child .ssvh-board__row {
	border-top: 0;
}
.ssvh-board__row:hover {
	background: var(--ssvh-mist);
}
.ssvh-board__num {
	font-family: var(--ssvh-display);
	font-weight: 700;
	color: var(--ssvh-faint);
	font-size: 0.95rem;
}
.ssvh-board li:first-child .ssvh-board__num {
	color: var(--ssvh-gold);
}
.ssvh-board__art {
	width: 52px;
	height: 52px;
	border-radius: 10px;
}
.ssvh-board__who {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.ssvh-board__name {
	font-family: var(--ssvh-display);
	font-weight: 700;
	font-size: 0.98rem;
	color: var(--ssvh-navy);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ssvh-board__provider {
	font-size: 0.8rem;
	color: var(--ssvh-faint);
}
.ssvh-board__bar {
	display: block;
	height: 8px;
	border-radius: 999px;
	background: var(--ssvh-mist);
	overflow: hidden;
}
.ssvh-board__bar i {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--ssvh-gold-deep), var(--ssvh-gold));
}
.ssvh-board__rtp {
	font-family: var(--ssvh-display);
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--ssvh-ink);
	text-align: right;
	font-variant-numeric: tabular-nums;
}
.ssvh-board__vol {
	text-align: center;
}
.ssvh-board__win {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	font-weight: 700;
	color: var(--ssvh-ink);
	font-variant-numeric: tabular-nums;
}
.ssvh-board__win small {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ssvh-faint);
}

/* --------------------------------------------------------------------------
   Where to play (navy band, horizontal scroller)
   -------------------------------------------------------------------------- */
/* A wrapping grid on desktop (every casino visible), a swipeable row on phones. */
.ssvh-scroller {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	padding: 6px 0 0;
}
.ssvh-casino {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 18px 20px 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--ssvh-radius);
	color: #FFFFFF;
}
.ssvh-casino:hover {
	border-color: rgba(212, 167, 44, 0.6);
}
.ssvh-casino__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 84px;
	padding: 12px;
	margin-bottom: 8px;
	border-radius: var(--ssvh-radius-sm);
	background: #FFFFFF;
}
.ssvh-casino__logo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}
.ssvh-casino__logo span {
	font-family: var(--ssvh-display);
	font-weight: 700;
	color: var(--ssvh-navy);
}
.ssvh-home .ssvh-casino__name {
	margin: 0;
	font-family: var(--ssvh-display);
	font-size: 1.05rem;
	font-weight: 700;
}
.ssvh-home .ssvh-casino__name a {
	color: #FFFFFF;
	text-decoration: none;
}
.ssvh-home .ssvh-casino__name a:hover {
	color: var(--ssvh-gold);
}
.ssvh-home .ssvh-casino__type {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.55);
}
.ssvh-home .ssvh-casino__bonus {
	margin: 6px 0 0;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.4;
	color: #FFFFFF;
	min-height: 2.8em;
}
.ssvh-casino__facts {
	display: flex;
	gap: 18px;
	margin-top: 4px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ssvh-casino__facts dt {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}
.ssvh-casino__facts dd {
	font-weight: 700;
	font-size: 0.92rem;
}
.ssvh-casino__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 14px;
}
.ssvh-home .ssvh-casino__review {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.86rem;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px solid var(--ssvh-gold);
}
.ssvh-home .ssvh-casino__review:hover {
	color: var(--ssvh-gold);
}

/* --------------------------------------------------------------------------
   Studios marquee
   -------------------------------------------------------------------------- */
.ssvh-marquee {
	position: relative;
	margin-top: 8px;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ssvh-marquee__track {
	display: flex;
	gap: 16px;
	width: max-content;
	padding: 6px 0;
}
.ssvh-marquee.is-scrolling .ssvh-marquee__track {
	animation: ssvh-marquee 48s linear infinite;
}
/* Few studios: a plain centered row inside the container, no fade mask. */
.ssvh-marquee.is-static {
	-webkit-mask-image: none;
	mask-image: none;
	max-width: var(--container-width, 1210px);
	margin-left: auto;
	margin-right: auto;
	padding: 0 15px;
}
.ssvh-marquee.is-static .ssvh-marquee__track {
	width: auto;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.ssvh-marquee__item b {
	font-family: var(--ssvh-display);
	font-size: 1rem;
	color: var(--ssvh-navy);
	text-align: center;
	line-height: 1.2;
}
.ssvh-marquee:hover .ssvh-marquee__track,
.ssvh-marquee:focus-within .ssvh-marquee__track {
	animation-play-state: paused;
}
@keyframes ssvh-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
.ssvh-marquee__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 172px;
	height: 108px;
	padding: 14px 18px;
	background: var(--ssvh-card);
	border: 1px solid var(--ssvh-line);
	border-radius: var(--ssvh-radius-sm);
	text-decoration: none;
	color: var(--ssvh-faint);
	font-size: 0.76rem;
	font-weight: 700;
}
.ssvh-marquee__item:hover {
	border-color: var(--ssvh-gold);
	color: var(--ssvh-navy);
}
.ssvh-marquee__item img {
	max-width: 100%;
	max-height: 44px;
	width: auto;
	height: auto;
	object-fit: contain;
}

/* --------------------------------------------------------------------------
   Method
   -------------------------------------------------------------------------- */
.ssvh-method {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
	gap: 40px;
	padding: 40px;
	background: var(--ssvh-card);
	border-radius: var(--ssvh-radius);
	box-shadow: var(--ssvh-shadow);
}
.ssvh-tiers {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 22px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--ssvh-muted);
}
.ssvh-tiers li {
	display: flex;
	align-items: center;
	gap: 12px;
}
.ssvh-tiers .ssvh-badge {
	min-width: 62px;
}
.ssvh-home .ssvh-method__note {
	margin: 24px 0 0;
	padding: 12px 16px;
	border-left: 3px solid var(--ssvh-gold);
	background: var(--ssvh-mist);
	border-radius: 0 10px 10px 0;
	font-size: 0.86rem;
	line-height: 1.5;
	color: var(--ssvh-muted);
}
.ssvh-home .ssvh-method__note b {
	color: var(--ssvh-navy);
	margin-right: 4px;
}
.ssvh-criteria {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.ssvh-criteria li {
	padding: 22px;
	border: 1px solid var(--ssvh-line);
	border-radius: var(--ssvh-radius-sm);
	background: var(--ssvh-ground);
}
.ssvh-criteria__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--ssvh-navy);
	color: var(--ssvh-gold);
	margin-bottom: 14px;
}
.ssvh-home .ssvh-criteria h3 {
	margin: 0 0 6px;
	font-family: var(--ssvh-display);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ssvh-navy);
}
.ssvh-home .ssvh-criteria p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--ssvh-muted);
}

/* --------------------------------------------------------------------------
   Latest reviews
   -------------------------------------------------------------------------- */
.ssvh-latest {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}
.ssvh-latest__card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--ssvh-card);
	border-radius: var(--ssvh-radius);
	box-shadow: var(--ssvh-shadow-sm);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	border: 1px solid transparent;
}
.ssvh-latest__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ssvh-shadow);
	border-color: var(--ssvh-line);
}
.ssvh-latest__art {
	aspect-ratio: 16 / 10;
}
.ssvh-latest__card .ssvh-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}
.ssvh-latest__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 16px 18px 20px;
}
.ssvh-latest__date {
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ssvh-faint);
}
.ssvh-latest__name {
	font-family: var(--ssvh-display);
	font-weight: 700;
	font-size: 1.02rem;
	color: var(--ssvh-navy);
	line-height: 1.2;
}
.ssvh-latest__tagline {
	font-size: 0.88rem;
	line-height: 1.45;
	color: var(--ssvh-muted);
}
.ssvh-home .ssvh-cta {
	margin: 40px 0 72px;
	text-align: center;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
	.ssvh-deck {
		height: 420px;
	}
	.ssvh-board__row {
		grid-template-columns: 30px 48px minmax(0, 1.3fr) minmax(0, 0.8fr) 76px 96px 84px;
		gap: 12px;
	}
}

@media (max-width: 992px) {
	.ssvh-hero {
		padding: 40px 0 110px;
	}
	.ssvh-hero__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.ssvh-deck {
		height: 360px;
		max-width: 640px;
		margin: 0 auto;
	}
	.ssvh-deck__card {
		width: 168px;
		margin-left: -84px;
	}
	.ssvh-deck--5 .ssvh-deck__card:nth-child(2) { --tx: -150px; }
	.ssvh-deck--5 .ssvh-deck__card:nth-child(3) { --tx: -78px; }
	.ssvh-deck--5 .ssvh-deck__card:nth-child(5) { --tx: 78px; }
	.ssvh-deck--5 .ssvh-deck__card:nth-child(6) { --tx: 150px; }
	.ssvh-deck__label {
		padding: 48px 12px 12px;
	}
	.ssvh-deck__spec {
		font-size: 0.78rem;
	}
	.ssvh-stats {
		grid-template-columns: repeat(2, 1fr);
	}
	.ssvh-stats > div:nth-child(3) {
		border-left: 0;
	}
	.ssvh-stats > div:nth-child(n + 3) {
		border-top: 1px solid var(--ssvh-line);
	}
	.ssvh-pick {
		grid-template-columns: 1fr;
	}
	.ssvh-tiles {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.ssvh-board__row {
		grid-template-columns: 28px 48px minmax(0, 1fr) 70px 90px;
	}
	.ssvh-board__bar,
	.ssvh-board__win {
		display: none;
	}
	.ssvh-scroller {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.ssvh-method {
		grid-template-columns: 1fr;
		padding: 28px;
	}
	.ssvh-latest {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.ssvh-section {
		padding-top: 56px;
	}
	.ssvh-band {
		margin-top: 56px;
		padding: 48px 0 56px;
	}
	.ssvh-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.ssvh-home .ssvh-more {
		padding-bottom: 0;
	}
	.ssvh-pick__one {
		grid-template-columns: 1fr;
	}
	.ssvh-pick__art {
		min-height: 0;
		aspect-ratio: 16 / 10;
	}
	.ssvh-pick__body {
		padding: 22px 20px 24px;
	}
	.ssvh-pick__spec {
		flex-wrap: wrap;
		gap: 14px 22px;
	}
	.ssvh-tiles {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.ssvh-tile {
		min-height: 120px;
		padding: 16px;
	}
	.is-wide .ssvh-tile__name {
		font-size: 1.2rem;
	}
	.ssvh-board__row {
		grid-template-columns: 24px 44px minmax(0, 1fr) 64px;
		padding: 10px 14px;
	}
	.ssvh-board__vol {
		display: none;
	}
	.ssvh-scroller {
		grid-template-columns: none;
		grid-auto-flow: column;
		grid-auto-columns: 82%;
		overflow-x: auto;
		padding-bottom: 14px;
		scrollbar-width: thin;
	}
	.ssvh-criteria {
		grid-template-columns: 1fr;
	}
	.ssvh-latest {
		grid-template-columns: 1fr;
	}
	.ssvh-marquee.is-static .ssvh-marquee__track {
		gap: 10px;
	}
	.ssvh-marquee.is-static .ssvh-marquee__item {
		width: calc(50% - 5px);
		height: 96px;
	}
	.ssvh-deck {
		height: 230px;
	}
	.ssvh-deck__card {
		width: 124px;
		margin-left: -62px;
		bottom: 12px;
		transform-origin: 50% 110%;
	}
	.ssvh-deck--5 .ssvh-deck__card:nth-child(2) { --tx: -80px; --r: -9deg; --ty: 8px; }
	.ssvh-deck--5 .ssvh-deck__card:nth-child(3) { --tx: -42px; --r: -4deg; --ty: 3px; }
	.ssvh-deck--5 .ssvh-deck__card:nth-child(4) { --ty: -6px; }
	.ssvh-deck--5 .ssvh-deck__card:nth-child(5) { --tx: 42px; --r: 4deg; --ty: 3px; }
	.ssvh-deck--5 .ssvh-deck__card:nth-child(6) { --tx: 80px; --r: 9deg; --ty: 8px; }
	.ssvh-deck--4 .ssvh-deck__card:nth-child(2) { --tx: -100px; }
	.ssvh-deck--4 .ssvh-deck__card:nth-child(3) { --tx: -14px; }
	.ssvh-deck--4 .ssvh-deck__card:nth-child(4) { --tx: 60px; }
	.ssvh-deck--4 .ssvh-deck__card:nth-child(5) { --tx: 118px; }
	.ssvh-deck--3 .ssvh-deck__card:nth-child(2) { --tx: -80px; }
	.ssvh-deck--3 .ssvh-deck__card:nth-child(4) { --tx: 80px; }
	.ssvh-deck__hint {
		display: none;
	}
	.ssvh-deck__card:hover,
	.ssvh-deck__card:focus-visible,
	.ssvh-deck__card.is-open {
		transform: translateX(var(--tx)) rotate(0deg) translateY(calc(var(--ty) - 18px)) scale(1.3);
	}
	.ssvh-deck__label {
		padding: 40px 10px 10px;
		gap: 2px;
	}
	.ssvh-deck__meta {
		flex-wrap: wrap;
		row-gap: 1px;
	}
	.ssvh-deck__meta .ssvh-deck__prov,
	.ssvh-deck__meta b {
		white-space: nowrap;
	}
	.ssvh-deck__name {
		font-size: 0.74rem;
	}
	.ssvh-deck__meta {
		font-size: 0.6rem;
		gap: 6px;
	}
	.ssvh-deck__spec {
		display: none;
	}
	.ssvh-deck__rank,
	.ssvh-deck__back .ssvh-deck__rank {
		width: 20px;
		height: 20px;
		font-size: 0.62rem;
	}
	.ssvh-deck__front .ssvh-badge {
		top: 8px;
		right: 8px;
		min-width: 30px;
		height: 22px;
		font-size: 0.72rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ssvh-home a,
	.ssvh-deck__card,
	.ssvh-deck__inner {
		transition: none;
	}
	.ssvh-marquee__track {
		animation: none;
		flex-wrap: wrap;
		width: auto;
		justify-content: center;
	}
	.ssvh-marquee {
		-webkit-mask-image: none;
		mask-image: none;
	}
	.ssvh-marquee__item[aria-hidden="true"] {
		display: none;
	}
	.ssvh-tile:hover,
	.ssvh-latest__card:hover,
	.ssvh-rank__item:hover,
	.ssvh-home .ssvh-btn--solid:hover {
		transform: none;
	}
}
