/**
 * Homepage effects layer (2026-09-16) — carries the Predictions/Leaderboard
 * page design language onto the homepage. Front page only, loaded after
 * cricket-home-v2.css. The fixed storm background stays visible: section
 * stages stay translucent, effects sit behind content, pointer-events:none.
 * Everything animated is disabled under prefers-reduced-motion.
 */

:root {
	--hfx-ice: #f1f6ff;
	--hfx-ice-2: rgba( 234, 244, 255, 0.74 );
	--hfx-ice-3: rgba( 234, 244, 255, 0.5 );
	--hfx-gold: #ffb020;
	--hfx-gold-2: #ffd66b;
	--hfx-coral: #ff6b6b;
	--hfx-teal: #4fd1c5;
	--hfx-blue: #3a86e0;
	--hfx-green: #4fd18b;
	--hfx-display: 'Outfit', 'PT Sans', sans-serif;
	--hfx-mono: 'JetBrains Mono', ui-monospace, Consolas, monospace;
	--hfx-ease: cubic-bezier( 0.16, 1, 0.3, 1 );
}

/* ---------------------------------------------------------------------
 * Reveal-on-scroll (cricket-home-fx.js)
 * ------------------------------------------------------------------- */

.hub-js .cricket-home-fx-reveal,
.hub-js [data-hub-reveal] {
	opacity: 0;
	transform: translateY( 26px ) scale( 0.985 );
	transition: opacity 0.8s var( --hfx-ease ), transform 0.8s var( --hfx-ease );
	transition-delay: calc( var( --hub-i, 0 ) * 70ms );
}

.hub-js [data-hub-reveal].is-in {
	opacity: 1;
	transform: none;
}

/* The earlier load-time entrance animations would fight the reveal. */
.hub-js .cricket-story,
.hub-js .cricket-leaderboard-section .cricket-podium__place {
	animation: none;
}

/* ---------------------------------------------------------------------
 * Section headings — one display system across the page
 * ------------------------------------------------------------------- */

.cricket-home-head__title,
.cricket-feed-section__title,
.cricket-leaderboard-section__title,
.cricket-community__band > .cricket-community__title {
	font-family: var( --hfx-display ) !important;
	font-weight: 900 !important;
	letter-spacing: -0.025em;
	line-height: 1.02 !important;
	background-image: linear-gradient( 180deg, #ffffff 0%, #dbe8ff 60%, #a9c1e4 100% ) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	color: transparent !important;
	-webkit-text-fill-color: transparent !important;
	text-shadow: none !important;
	animation: none !important;
}

.cricket-home-head__title {
	font-size: clamp( 30px, 3.8vw, 46px ) !important;
}

.cricket-home-head--compact .cricket-home-head__title {
	font-size: clamp( 24px, 2.8vw, 32px ) !important;
}

.cricket-feed-section__title {
	font-size: clamp( 30px, 4vw, 50px ) !important;
	margin-bottom: 12px !important;
}

.cricket-leaderboard-section__title {
	font-size: clamp( 40px, 6vw, 72px ) !important;
	background-image: linear-gradient( 100deg, #fff4cc 0%, var( --hfx-gold-2 ) 30%, var( --hfx-gold ) 55%, #ff8a5c 100% ) !important;
	background-size: 200% 100% !important;
	filter: drop-shadow( 0 10px 40px rgba( 255, 176, 32, 0.32 ) );
	animation: hfx-sheen 7s ease-in-out infinite alternate !important;
}

.cricket-community__band > .cricket-community__title {
	background-image: linear-gradient( 100deg, #ffffff 0%, #ffe9b3 45%, var( --hfx-gold ) 100% ) !important;
}

@keyframes hfx-sheen {
	from { background-position: 0% 50%; }
	to { background-position: 100% 50%; }
}

.cricket-feed-section__header,
.cricket-leaderboard-section__header {
	max-width: 720px !important;
	margin-bottom: 40px !important;
}

.cricket-feed-section__sub,
.cricket-leaderboard-section__sub,
.cricket-home-head__sub {
	font-size: clamp( 15px, 1.4vw, 17px ) !important;
	line-height: 1.6;
	color: var( --hfx-ice-2 ) !important;
}

/* Eyebrows as glass pills with a live dot. */
.cricket-home-head__eyebrow,
.cricket-feed-section__eyebrow,
.cricket-leaderboard-section__eyebrow {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	padding: 6px 14px 6px 10px;
	border-radius: 999px;
	background: rgba( 255, 176, 32, 0.1 );
	border: 1px solid rgba( 255, 176, 32, 0.3 );
	font-family: var( --hfx-mono ) !important;
	font-size: 10.5px !important;
	font-weight: 700;
	letter-spacing: 0.1em !important;
	text-transform: uppercase;
	color: var( --hfx-gold-2 ) !important;
	backdrop-filter: blur( 10px );
	-webkit-backdrop-filter: blur( 10px );
}

.cricket-home-head__eyebrow::before,
.cricket-leaderboard-section__eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var( --hfx-gold );
	animation: hfx-ping 1.8s ease-out infinite;
}

.cricket-feed-section__eyebrow svg {
	color: var( --hfx-gold );
}

@keyframes hfx-ping {
	0% { box-shadow: 0 0 0 0 rgba( 255, 176, 32, 0.6 ); }
	70%, 100% { box-shadow: 0 0 0 8px rgba( 255, 176, 32, 0 ); }
}

.cricket-home-head {
	margin-bottom: 34px !important;
}

.cricket-home-head__title {
	margin-top: 14px !important;
}

.cricket-home-head__link,
.cricket-home-head__link:visited {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 18px;
	border-radius: 999px;
	border: 1px solid rgba( 255, 176, 32, 0.35 );
	background: rgba( 255, 176, 32, 0.08 );
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s var( --hfx-ease );
}

.cricket-home-head__link:hover,
.cricket-home-head__link:focus-visible {
	color: #1a1200 !important;
	background: linear-gradient( 135deg, var( --hfx-gold-2 ), var( --hfx-gold ) 55%, #ff8a5c );
	transform: translateY( -2px );
}

/* ---------------------------------------------------------------------
 * Hero
 * ------------------------------------------------------------------- */

.cricket-hero__title {
	font-size: clamp( 42px, 6vw, 76px ) !important;
	font-weight: 900 !important;
	letter-spacing: -0.03em;
	line-height: 1 !important;
}

.cricket-hero__stats {
	gap: 12px !important;
}

.cricket-hero__stat {
	padding: 12px 18px;
	border-radius: 16px;
	background: linear-gradient( 160deg, rgba( 255, 255, 255, 0.08 ), rgba( 255, 255, 255, 0.02 ) );
	border: 1px solid rgba( 255, 255, 255, 0.12 );
	box-shadow: inset 0 1px 0 rgba( 255, 255, 255, 0.08 );
	backdrop-filter: blur( 12px );
	-webkit-backdrop-filter: blur( 12px );
	transition: transform 0.35s var( --hfx-ease ), border-color 0.35s ease;
}

.cricket-hero__stat:hover {
	transform: translateY( -3px );
	border-color: rgba( 255, 176, 32, 0.4 );
}

.cricket-hero__stat dd {
	font-size: 30px !important;
	font-weight: 900 !important;
	font-variant-numeric: tabular-nums;
	background: linear-gradient( 180deg, #ffffff, #cfe0ff );
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent !important;
	-webkit-text-fill-color: transparent;
}

.cricket-hero__stat:first-child dd {
	background-image: linear-gradient( 180deg, #fff4cc, var( --hfx-gold ) );
}

.cricket-hero__btn--primary {
	position: relative;
	overflow: hidden;
}

/* Periodic light sweep across the primary CTA. */
.cricket-hero__btn--primary::after,
.cricket-leaderboard-section__cta::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient( 105deg, transparent 35%, rgba( 255, 255, 255, 0.5 ) 50%, transparent 65% );
	background-size: 250% 100%;
	background-position: 150% 0;
	animation: hfx-cta-sweep 4.5s ease-in-out infinite;
	pointer-events: none;
}

.cricket-leaderboard-section__cta {
	position: relative;
	overflow: hidden;
}

@keyframes hfx-cta-sweep {
	0%, 60% { background-position: 150% 0; }
	100% { background-position: -150% 0; }
}

/* ---------------------------------------------------------------------
 * Section stages — Calls + Leaderboard (reuse __fx / __arc / __grain)
 * ------------------------------------------------------------------- */

.cricket-feed-section,
.cricket-leaderboard-section {
	isolation: isolate;
}

.cricket-feed-section {
	padding: 80px 0 30px !important;
}

.cricket-leaderboard-section {
	padding: 84px 0 90px !important;
}

.cricket-feed-section__fx,
.cricket-leaderboard-section__fx {
	z-index: -1 !important;
}

.cricket-feed-section__fx::before,
.cricket-feed-section__fx::after,
.cricket-leaderboard-section__fx::before,
.cricket-leaderboard-section__fx::after {
	content: "";
	position: absolute;
	width: 52vmax;
	height: 52vmax;
	border-radius: 50%;
	filter: blur( 90px );
	opacity: 0.45;
	will-change: transform;
}

.cricket-feed-section__fx::before,
.cricket-leaderboard-section__fx::before {
	top: -26vmax;
	left: -16vmax;
	background: radial-gradient( circle, rgba( 255, 176, 32, 0.32 ), rgba( 255, 107, 107, 0.12 ) 45%, transparent 70% );
	animation: hfx-drift-a 26s ease-in-out infinite alternate;
}

.cricket-feed-section__fx::after,
.cricket-leaderboard-section__fx::after {
	bottom: -26vmax;
	right: -18vmax;
	background: radial-gradient( circle, rgba( 58, 134, 224, 0.4 ), rgba( 79, 209, 197, 0.14 ) 45%, transparent 70% );
	animation: hfx-drift-b 32s ease-in-out infinite alternate;
}

.cricket-feed-section__fx::before {
	background: radial-gradient( circle, rgba( 79, 209, 197, 0.28 ), rgba( 58, 134, 224, 0.12 ) 45%, transparent 70% );
}

@keyframes hfx-drift-a {
	from { transform: translate3d( 0, 0, 0 ) scale( 1 ); }
	to { transform: translate3d( 7vmax, 5vmax, 0 ) scale( 1.1 ); }
}

@keyframes hfx-drift-b {
	from { transform: translate3d( 0, 0, 0 ) scale( 1.05 ); }
	to { transform: translate3d( -6vmax, -6vmax, 0 ) scale( 0.95 ); }
}

/* Floodlight beams on the leaderboard stage only (the "arena"). */
.cricket-leaderboard-section__arc {
	top: -4% !important;
	bottom: auto !important;
	width: 22vw !important;
	height: 820px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: linear-gradient( 180deg, rgba( 255, 244, 214, 0.09 ), rgba( 255, 244, 214, 0.02 ) 40%, transparent 70% );
	clip-path: polygon( 42% 0, 58% 0, 100% 100%, 0 100% );
	transform-origin: 50% 0;
	opacity: 0.6;
	animation: hfx-beam 14s ease-in-out infinite alternate;
}

.cricket-leaderboard-section__arc--a {
	left: -8% !important;
	right: auto !important;
	transform: rotate( -18deg );
}

.cricket-leaderboard-section__arc--b {
	right: -8% !important;
	left: auto !important;
	transform: rotate( 18deg );
	animation-delay: -7s;
}

@keyframes hfx-beam {
	from { opacity: 0.3; }
	to { opacity: 0.7; }
}

.cricket-feed-section__arc {
	display: none;
}

.cricket-feed-section__grain,
.cricket-leaderboard-section__grain {
	opacity: 1 !important;
	mix-blend-mode: normal !important;
	background-image:
		var( --proace-grain ),
		linear-gradient( rgba( 255, 255, 255, 0.04 ) 1px, transparent 1px ),
		linear-gradient( 90deg, rgba( 255, 255, 255, 0.04 ) 1px, transparent 1px ) !important;
	background-size: auto, 56px 56px, 56px 56px !important;
	-webkit-mask-image: radial-gradient( 90% 60% at 50% 100%, #000 10%, transparent 70% );
	mask-image: radial-gradient( 90% 60% at 50% 100%, #000 10%, transparent 70% );
}

/* ---------------------------------------------------------------------
 * "This Week's Calls" panels + rows
 * ------------------------------------------------------------------- */

.cricket-feed {
	gap: 24px !important;
}

.cricket-feed-panel {
	position: relative;
	border-radius: 22px !important;
	transition: transform 0.45s var( --hfx-ease ), box-shadow 0.45s ease;
}

.cricket-feed-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient( 135deg, rgba( 255, 214, 107, 0.85 ), rgba( 255, 107, 107, 0.35 ) 40%, rgba( 58, 134, 224, 0.6 ) );
	-webkit-mask: linear-gradient( #000 0 0 ) content-box, linear-gradient( #000 0 0 );
	-webkit-mask-composite: xor;
	mask: linear-gradient( #000 0 0 ) content-box exclude, linear-gradient( #000 0 0 );
	opacity: 0;
	transition: opacity 0.45s ease;
	pointer-events: none;
}

.cricket-feed-panel:hover {
	box-shadow: 0 34px 64px -34px rgba( 0, 0, 0, 0.9 ), 0 0 60px -30px rgba( 255, 176, 32, 0.4 ) !important;
}

.cricket-feed-panel:hover::after {
	opacity: 1;
}

.cricket-feed-panel__title {
	font-family: var( --hfx-display ) !important;
	font-size: 17px !important;
	font-weight: 800 !important;
}

.cricket-feed-panel__count {
	position: relative;
	padding-left: 14px !important;
}

.cricket-feed-panel__head--live .cricket-feed-panel__count::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 50%;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-radius: 50%;
	background: var( --hfx-coral );
	animation: hfx-ping-red 1.6s ease-out infinite;
}

@keyframes hfx-ping-red {
	0% { box-shadow: 0 0 0 0 rgba( 255, 107, 107, 0.6 ); }
	70%, 100% { box-shadow: 0 0 0 7px rgba( 255, 107, 107, 0 ); }
}

.cricket-feed-row,
.cricket-feed-row:visited {
	position: relative;
	transition: background 0.3s ease, padding-left 0.3s var( --hfx-ease );
}

.cricket-feed-row::before {
	content: "";
	position: absolute;
	left: 0;
	top: 18%;
	bottom: 18%;
	width: 3px;
	border-radius: 3px;
	background: linear-gradient( 180deg, var( --hfx-gold ), var( --hfx-coral ) );
	opacity: 0;
	transform: scaleY( 0.3 );
	transition: opacity 0.3s ease, transform 0.3s var( --hfx-ease );
}

.cricket-feed-row:hover,
.cricket-feed-row:focus-visible {
	background: rgba( 255, 255, 255, 0.05 ) !important;
}

.cricket-feed-row:hover::before,
.cricket-feed-row:focus-visible::before {
	opacity: 1;
	transform: none;
}

.cricket-feed-row__q {
	font-family: var( --hfx-display );
	font-weight: 700 !important;
	color: var( --hfx-ice ) !important;
}

.cricket-feed-row__result {
	border-radius: 999px !important;
	background: rgba( 79, 209, 139, 0.12 ) !important;
	border: 1px solid rgba( 79, 209, 139, 0.35 ) !important;
	color: var( --hfx-green ) !important;
}

.cricket-feed-panel__foot a,
.cricket-feed-panel__foot a:visited {
	color: var( --hfx-gold-2 ) !important;
	font-weight: 700;
	transition: letter-spacing 0.3s ease, color 0.3s ease;
}

.cricket-feed-panel__foot a:hover {
	color: #ffffff !important;
	letter-spacing: 0.02em;
}

/* Open prediction cards inside the Calls panel: scanning gold top line. */
.cricket-feed-panel .proace-prediction__surface {
	position: relative;
}

.cricket-feed-panel .proace-prediction:not( .proace-prediction--resolved ):not( .proace-prediction--locked ) .proace-prediction__surface::before {
	content: "";
	position: absolute;
	top: 0;
	left: 12%;
	right: 12%;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient( 90deg, transparent, var( --hfx-gold ), transparent );
	background-size: 200% 100%;
	animation: hfx-scan 3.6s linear infinite;
}

@keyframes hfx-scan {
	from { background-position: 200% 0; }
	to { background-position: -200% 0; }
}

/* ---------------------------------------------------------------------
 * Leaderboard preview — podium (mirrors the Leaderboard page)
 * ------------------------------------------------------------------- */

.cricket-leaderboard-section .cricket-podium {
	max-width: 820px;
	gap: 20px;
	margin: 24px auto 44px;
	padding-top: 26px;
}

.cricket-leaderboard-section .cricket-podium__place {
	--medal: #c7d2e0;
	--medal-glow: rgba( 199, 210, 224, 0.35 );
	padding: 28px 16px 0 !important;
	border-radius: 22px 22px 16px 16px !important;
	background:
		radial-gradient( 90% 60% at 50% 0%, color-mix( in srgb, var( --medal ) 18%, transparent ), transparent 70% ),
		linear-gradient( 180deg, rgba( 18, 40, 72, 0.88 ), rgba( 9, 21, 42, 0.92 ) ) !important;
	border: 1px solid color-mix( in srgb, var( --medal ) 35%, transparent ) !important;
	box-shadow: 0 30px 60px -30px rgba( 0, 0, 0, 0.9 ), inset 0 1px 0 rgba( 255, 255, 255, 0.08 ) !important;
	transition: transform 0.5s var( --hfx-ease ), box-shadow 0.5s ease;
}

.cricket-leaderboard-section .cricket-podium__place--1 {
	--medal: #ffc53d;
	--medal-glow: rgba( 255, 176, 32, 0.5 );
	padding-top: 36px !important;
	translate: 0 -16px;
}

.cricket-leaderboard-section .cricket-podium__place--3 {
	--medal: #e8a06b;
	--medal-glow: rgba( 232, 160, 107, 0.4 );
}

.cricket-leaderboard-section .cricket-podium__place:hover {
	box-shadow: 0 40px 70px -30px rgba( 0, 0, 0, 0.95 ), 0 0 70px -24px var( --medal-glow ), inset 0 1px 0 rgba( 255, 255, 255, 0.1 ) !important;
}

.hub-js .cricket-leaderboard-section .cricket-podium.is-in .cricket-podium__place:hover {
	transform: translateY( -6px );
}

.cricket-leaderboard-section .cricket-podium__place--1::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient( 105deg, transparent 38%, rgba( 255, 236, 180, 0.16 ) 50%, transparent 62% );
	background-size: 260% 100%;
	animation: hfx-shimmer 4.5s ease-in-out infinite;
	pointer-events: none;
}

@keyframes hfx-shimmer {
	0%, 35% { background-position: 130% 0; }
	75%, 100% { background-position: -130% 0; }
}

.cricket-leaderboard-section .cricket-podium__place::after {
	content: "2";
	display: flex;
	align-items: center;
	justify-content: center;
	height: 58px;
	margin: 16px -17px -1px;
	border-radius: 0 0 16px 16px;
	background: linear-gradient( 180deg, color-mix( in srgb, var( --medal ) 22%, #0c1f3b ), color-mix( in srgb, var( --medal ) 6%, #07132a ) );
	border-top: 1px solid color-mix( in srgb, var( --medal ) 45%, transparent );
	font-family: var( --hfx-display );
	font-size: 40px;
	font-weight: 900;
	line-height: 1;
	color: color-mix( in srgb, var( --medal ) 55%, transparent );
	transform-origin: bottom;
}

.cricket-leaderboard-section .cricket-podium__place--1::after {
	content: "1";
	height: 84px;
	font-size: 56px;
	color: color-mix( in srgb, var( --medal ) 70%, transparent );
}

.cricket-leaderboard-section .cricket-podium__place--3::after {
	content: "3";
	height: 44px;
	font-size: 32px;
}

.hub-js .cricket-leaderboard-section .cricket-podium.is-in .cricket-podium__place::after {
	animation: hfx-grow 0.9s var( --hfx-ease ) 0.25s both;
}

@keyframes hfx-grow {
	from { transform: scaleY( 0.2 ); opacity: 0; }
	to { transform: none; opacity: 1; }
}

.cricket-leaderboard-section .cricket-podium__crown {
	top: -22px;
	width: 36px;
	height: 28px;
	filter: drop-shadow( 0 6px 14px rgba( 255, 176, 32, 0.6 ) );
	animation: hfx-float 3.2s ease-in-out infinite;
}

@keyframes hfx-float {
	0%, 100% { transform: translate( -50%, 0 ); }
	50% { transform: translate( -50%, -5px ); }
}

.cricket-leaderboard-section .cricket-podium__top {
	margin-bottom: 14px;
	isolation: isolate;
}

.cricket-leaderboard-section .cricket-podium__top::before {
	content: "";
	position: absolute;
	inset: -7px;
	z-index: -1;
	border-radius: 50%;
	background: conic-gradient( from 0deg, var( --medal ), transparent 30%, var( --medal ) 55%, transparent 80%, var( --medal ) );
	opacity: 0.75;
	animation: hfx-spin 7s linear infinite;
	-webkit-mask: radial-gradient( circle, transparent 60%, #000 62% );
	mask: radial-gradient( circle, transparent 60%, #000 62% );
}

.cricket-leaderboard-section .cricket-podium__place--1 .cricket-podium__top::before {
	inset: -9px;
	opacity: 1;
	animation-duration: 5s;
}

@keyframes hfx-spin {
	to { transform: rotate( 360deg ); }
}

.cricket-leaderboard-section .cricket-podium__avatar {
	border: 3px solid #0a1a33 !important;
	box-shadow: none !important;
}

.cricket-leaderboard-section .cricket-podium__rank-chip {
	width: 26px;
	height: 26px;
	font-size: 12px;
	background: var( --medal ) !important;
	border-color: #0a1a33;
}

.cricket-leaderboard-section .cricket-podium__name {
	font-family: var( --hfx-display );
	font-size: 17px;
}

.cricket-leaderboard-section .cricket-podium__level {
	color: var( --medal );
}

.cricket-leaderboard-section .cricket-podium__points {
	font-family: var( --hfx-display );
	font-size: 34px;
	font-weight: 900;
	background: linear-gradient( 180deg, #ffffff, var( --medal ) );
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.cricket-leaderboard-section .cricket-podium__place--1 .cricket-podium__points {
	font-size: 42px;
}

.cricket-leaderboard-section .cricket-podium__points-label {
	-webkit-text-fill-color: var( --hfx-ice-3 );
	color: var( --hfx-ice-3 );
}

/* ---------------------------------------------------------------------
 * Leaderboard preview — ranks 4–10 as card rows
 * ------------------------------------------------------------------- */

.cricket-leaderboard-list-label {
	margin-top: 10px !important;
	font-family: var( --hfx-mono ) !important;
	letter-spacing: 0.14em !important;
	color: var( --hfx-ice-3 ) !important;
}

.cricket-leaderboard-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 760px !important;
	background: transparent !important;
	border: 0 !important;
	overflow: visible !important;
}

.cricket-leaderboard-list__row {
	position: relative;
	gap: 16px !important;
	padding: 13px 20px !important;
	border: 1px solid rgba( 255, 255, 255, 0.08 ) !important;
	border-radius: 14px;
	background: rgba( 13, 30, 57, 0.82 );
	backdrop-filter: blur( 10px );
	-webkit-backdrop-filter: blur( 10px );
	transition: background 0.3s ease, border-color 0.3s ease;
}

.cricket-leaderboard-list__row::before {
	content: "";
	position: absolute;
	left: -1px;
	top: 16%;
	bottom: 16%;
	width: 3px;
	border-radius: 3px;
	background: linear-gradient( 180deg, var( --hfx-gold ), var( --hfx-coral ) );
	opacity: 0;
	transform: scaleY( 0.3 );
	transition: opacity 0.3s ease, transform 0.3s var( --hfx-ease );
}

.cricket-leaderboard-list__row:hover {
	background: rgba( 22, 46, 84, 0.92 );
	border-color: rgba( 255, 176, 32, 0.28 ) !important;
}

.cricket-leaderboard-list__row:hover::before {
	opacity: 1;
	transform: none;
}

.cricket-leaderboard-list__rank {
	flex: 0 0 34px !important;
	font-family: var( --hfx-display ) !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	color: var( --hfx-ice-3 ) !important;
}

.cricket-leaderboard-list__name {
	font-size: 15px !important;
}

.cricket-leaderboard-list__points {
	flex: 0 0 64px !important;
	text-align: right;
	font-family: var( --hfx-display ) !important;
	font-size: 17px !important;
	font-weight: 900 !important;
}

.cricket-acc {
	display: inline-flex;
	flex-direction: column;
	gap: 5px;
	min-width: 84px;
}

.cricket-acc__num {
	font-family: var( --hfx-mono );
	font-size: 12px;
	font-weight: 700;
	color: var( --hfx-ice );
}

.cricket-acc__bar {
	display: block;
	height: 4px;
	border-radius: 4px;
	background: rgba( 255, 255, 255, 0.1 );
	overflow: hidden;
}

.cricket-acc__bar > span {
	display: block;
	height: 100%;
	width: var( --acc, 0% );
	border-radius: inherit;
	background: linear-gradient( 90deg, var( --hfx-teal ), var( --hfx-green ) );
	transform-origin: left;
}

.hub-js .cricket-leaderboard-list__row.is-in .cricket-acc__bar > span {
	animation: hfx-bar 1s var( --hfx-ease ) both;
	animation-delay: calc( var( --hub-i, 0 ) * 70ms + 200ms );
}

@keyframes hfx-bar {
	from { transform: scaleX( 0 ); }
	to { transform: none; }
}

/* ---------------------------------------------------------------------
 * Latest stories, series tiles, community band
 * ------------------------------------------------------------------- */

.cricket-story {
	border-radius: 20px !important;
}

.cricket-story::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient( 135deg, rgba( 255, 214, 107, 0.9 ), rgba( 255, 107, 107, 0.4 ) 40%, rgba( 58, 134, 224, 0.6 ) );
	-webkit-mask: linear-gradient( #000 0 0 ) content-box, linear-gradient( #000 0 0 );
	-webkit-mask-composite: xor;
	mask: linear-gradient( #000 0 0 ) content-box exclude, linear-gradient( #000 0 0 );
	opacity: 0;
	transition: opacity 0.45s ease;
	pointer-events: none;
}

.cricket-story:hover::after,
.cricket-story:focus-within::after {
	opacity: 1;
}

.hub-js .cricket-story.is-in:hover {
	transform: translateY( -6px ) !important;
}

.cricket-story:hover {
	box-shadow: 0 36px 64px -34px rgba( 0, 0, 0, 0.9 ), 0 0 60px -30px rgba( 255, 176, 32, 0.4 ) !important;
}

.cricket-story__title {
	font-weight: 800 !important;
}

.cricket-story--featured .cricket-story__title {
	font-size: clamp( 22px, 2.4vw, 30px ) !important;
	font-weight: 900 !important;
	letter-spacing: -0.01em;
}

/* Gradient scrim so the featured image reads as a hero tile. */
.cricket-story--featured .cricket-story__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient( 180deg, transparent 55%, rgba( 8, 20, 40, 0.65 ) 100% );
	pointer-events: none;
}

.cricket-series__item {
	position: relative;
	overflow: hidden;
	border-radius: 16px !important;
}

.cricket-series__item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient( 120% 90% at 0% 50%, color-mix( in srgb, var( --tone ) 22%, transparent ), transparent 60% );
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

.cricket-series__item:hover::before,
.cricket-series__item:focus-visible::before {
	opacity: 1;
}

.cricket-series__icon {
	position: relative;
	transition: transform 0.45s var( --hfx-ease );
}

.cricket-series__item:hover .cricket-series__icon {
	transform: rotate( -8deg ) scale( 1.1 );
}

.hub-js .cricket-series__item.is-in:hover {
	transform: translateY( -3px );
}

.cricket-community__band {
	isolation: isolate;
}

/* Slowly travelling gradient edge around the community band. */
.cricket-community__band::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: inherit;
	padding: 1px;
	background: conic-gradient( from var( --hfx-angle, 0deg ), rgba( 255, 214, 107, 0.9 ), rgba( 58, 134, 224, 0.2 ) 25%, rgba( 255, 107, 107, 0.6 ) 50%, rgba( 58, 134, 224, 0.2 ) 75%, rgba( 255, 214, 107, 0.9 ) );
	-webkit-mask: linear-gradient( #000 0 0 ) content-box, linear-gradient( #000 0 0 );
	-webkit-mask-composite: xor;
	mask: linear-gradient( #000 0 0 ) content-box exclude, linear-gradient( #000 0 0 );
	animation: hfx-orbit 10s linear infinite;
	pointer-events: none;
}

@property --hfx-angle {
	syntax: "<angle>";
	inherits: false;
	initial-value: 0deg;
}

@keyframes hfx-orbit {
	to { --hfx-angle: 360deg; }
}

.cricket-community__band .cricket-community__card {
	transition: transform 0.35s var( --hfx-ease ), border-color 0.35s ease, background 0.35s ease !important;
}

.hub-js .cricket-community__band .cricket-community__card.is-in:hover {
	transform: translateX( 4px );
}

/* ---------------------------------------------------------------------
 * Responsive + reduced motion
 * ------------------------------------------------------------------- */

@media ( max-width: 720px ) {
	.cricket-feed-section {
		padding: 56px 0 20px !important;
	}

	.cricket-leaderboard-section {
		padding: 60px 0 64px !important;
	}

	.cricket-leaderboard-section .cricket-podium__place--1 {
		translate: none;
		margin-bottom: 8px;
	}

	.cricket-leaderboard-section .cricket-podium__place::after {
		height: 44px;
		font-size: 30px;
	}

	.cricket-leaderboard-section .cricket-podium__place--1::after {
		height: 56px;
		font-size: 40px;
	}

	.cricket-leaderboard-list__row {
		gap: 10px !important;
		padding: 11px 12px !important;
	}

	.cricket-acc {
		min-width: 0;
	}

	.cricket-acc__bar {
		display: none;
	}

	.cricket-hero__stat {
		padding: 10px 14px;
	}

	.cricket-hero__stat dd {
		font-size: 24px !important;
	}
}

@media ( prefers-reduced-motion: reduce ) {
	.hub-js [data-hub-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.cricket-feed-section__fx::before,
	.cricket-feed-section__fx::after,
	.cricket-leaderboard-section__fx::before,
	.cricket-leaderboard-section__fx::after,
	.cricket-leaderboard-section__arc,
	.cricket-leaderboard-section__title,
	.cricket-home-head__eyebrow::before,
	.cricket-leaderboard-section__eyebrow::before,
	.cricket-hero__btn--primary::after,
	.cricket-leaderboard-section__cta::after,
	.cricket-feed-panel__count::before,
	.cricket-feed-panel .proace-prediction__surface::before,
	.cricket-leaderboard-section .cricket-podium__place::before,
	.cricket-leaderboard-section .cricket-podium__place::after,
	.cricket-leaderboard-section .cricket-podium__crown,
	.cricket-leaderboard-section .cricket-podium__top::before,
	.cricket-acc__bar > span,
	.cricket-community__band::after {
		animation: none !important;
	}
}

/* Legacy customizer `a:visited` / inline link colours turned this CTA's
   text blue on the gold button — pin it for every link state. */
.cricket-leaderboard-section .cricket-leaderboard-section__cta,
.cricket-leaderboard-section .cricket-leaderboard-section__cta:visited,
.cricket-leaderboard-section .cricket-leaderboard-section__cta:hover,
.cricket-leaderboard-section .cricket-leaderboard-section__cta:focus-visible,
.cricket-leaderboard-section .cricket-leaderboard-section__cta:active {
	color: #1a1200 !important;
	-webkit-text-fill-color: #1a1200;
}

/* ---------------------------------------------------------------------
 * Hero above the fold (2026-09-17) — the three CTAs must land in the
 * first viewport on a typical laptop. Removes the parent theme's 50px
 * #content top padding on the homepage only, tightens the hero's top
 * padding, top-aligns the copy with the slider instead of centring it,
 * and trims the headline a little.
 * ------------------------------------------------------------------- */

body.page-template-cricket-home #content.site-content {
	padding-top: 0 !important;
}

body.page-template-cricket-home .cricket-hero {
	padding-top: 22px !important;
}

.cricket-hero__grid--desk {
	align-items: start !important;
}

.cricket-hero__grid--desk .cricket-hero__copy {
	padding-top: 6px;
}

.cricket-hero__grid--desk .cricket-hero__eyebrow {
	margin-bottom: 14px;
}

.cricket-hero__grid--desk .cricket-hero__title {
	font-size: clamp( 40px, 5vw, 64px ) !important;
	margin-bottom: 14px;
}

.cricket-hero__grid--desk .cricket-hero__sub {
	margin-bottom: 20px;
}

.cricket-hero__actions {
	gap: 8px !important;
}

.cricket-hero__btn {
	gap: 7px;
	padding: 12px 14px !important;
	font-size: 14px !important;
	white-space: nowrap;
}

.cricket-hero__btn svg {
	flex: none;
}

/* Third CTA: "Today's Prediction" — gold-outlined, between the solid
   primary and the glass secondary. */
.cricket-hero__btn--predict,
.cricket-hero__btn--predict:visited {
	position: relative;
	color: #ffd36b !important;
	background: rgba( 255, 176, 32, 0.1 );
	border: 1px solid rgba( 255, 176, 32, 0.55 );
	box-shadow: inset 0 0 18px rgba( 255, 176, 32, 0.08 );
}

.cricket-hero__btn--predict:hover,
.cricket-hero__btn--predict:focus-visible {
	color: #1a1200 !important;
	background: #ffb020;
	border-color: #ffb020;
	transform: translateY( -2px );
	box-shadow: 0 10px 26px rgba( 255, 176, 32, 0.35 );
}

.cricket-hero__btn--secondary:visited {
	color: #ffffff !important;
}

@media ( max-width: 900px ) {
	body.page-template-cricket-home .cricket-hero {
		padding-top: 16px !important;
	}
}

@media ( max-width: 480px ) {
	.cricket-hero__actions {
		display: grid !important;
		grid-template-columns: 1fr 1fr;
	}

	.cricket-hero__actions .cricket-hero__btn {
		justify-content: center;
		padding: 12px 10px !important;
		font-size: 13.5px;
	}

	.cricket-hero__actions .cricket-hero__btn--primary {
		grid-column: 1 / -1;
	}
}

/* ---------------------------------------------------------------------
 * Today's game plan (2026-09-17) — checklist under the hero stats.
 * ------------------------------------------------------------------- */

.cricket-gameplan {
	position: relative;
	margin-top: 9px;
	padding: 10px 12px 12px;
	border-radius: 18px;
	background:
		radial-gradient( 120% 100% at 0% 0%, rgba( 255, 176, 32, 0.1 ), transparent 55% ),
		linear-gradient( 160deg, rgba( 255, 255, 255, 0.06 ), rgba( 255, 255, 255, 0.015 ) );
	border: 1px solid rgba( 255, 255, 255, 0.12 );
	box-shadow: inset 0 1px 0 rgba( 255, 255, 255, 0.07 );
	-webkit-backdrop-filter: blur( 12px );
	backdrop-filter: blur( 12px );
	animation: psp-rise 0.8s var( --psp-h-ease, ease ) 0.35s both;
}

.cricket-gameplan__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.cricket-gameplan__ring {
	--gp-circ: 100.53;
	position: relative;
	flex: none;
	width: 38px;
	height: 38px;
}

.cricket-gameplan__ring svg {
	width: 100%;
	height: 100%;
	transform: rotate( -90deg );
}

.cricket-gameplan__ring circle {
	fill: none;
	stroke-width: 4;
}

.cricket-gameplan__ring-track {
	stroke: rgba( 255, 255, 255, 0.1 );
}

.cricket-gameplan__ring-fill {
	stroke: #ffb020;
	stroke-linecap: round;
	stroke-dasharray: var( --gp-circ );
	stroke-dashoffset: var( --gp-circ );
	transition: stroke-dashoffset 1.1s cubic-bezier( 0.22, 1, 0.36, 1 ) 0.5s;
	filter: drop-shadow( 0 0 4px rgba( 255, 176, 32, 0.6 ) );
}

.cricket-gameplan.is-ready .cricket-gameplan__ring-fill {
	stroke-dashoffset: calc( var( --gp-circ ) - ( var( --gp-circ ) * var( --gp-done, 0 ) / 3 ) );
}

.cricket-gameplan__ring-num {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'JetBrains Mono', Consolas, monospace;
	font-size: 11px;
	font-weight: 700;
	color: rgba( 234, 244, 255, 0.6 );
}

.cricket-gameplan__ring-num b {
	color: #ffb020;
}

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

.cricket-gameplan__eyebrow {
	font-family: 'JetBrains Mono', Consolas, monospace;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ffb020;
}

.cricket-gameplan__title {
	font-family: 'Outfit', 'PT Sans', sans-serif;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
	color: #eaf4ff;
}

.cricket-gameplan__steps {
	display: grid;
	grid-template-columns: minmax( 0, 1fr );
	gap: 5px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: gp;
}

.cricket-gameplan__step {
	min-width: 0;
}

@media ( max-width: 480px ) {
	.cricket-gameplan__live {
		display: none !important;
	}
}

.cricket-gameplan__step {
	margin: 0;
	opacity: 0;
	transform: translateX( -10px );
	animation: cricket-gameplan-in 0.55s cubic-bezier( 0.22, 1, 0.36, 1 ) forwards;
}

.cricket-gameplan__step:nth-child( 1 ) { animation-delay: 0.55s; }
.cricket-gameplan__step:nth-child( 2 ) { animation-delay: 0.7s; }
.cricket-gameplan__step:nth-child( 3 ) { animation-delay: 0.85s; }

@keyframes cricket-gameplan-in {
	to {
		opacity: 1;
		transform: none;
	}
}

.cricket-gameplan__step > a,
.cricket-gameplan__step > a:visited {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 42px;
	padding: 5px 12px 5px 6px;
	border-radius: 12px;
	color: #eaf4ff !important;
	text-decoration: none !important;
	background: rgba( 5, 14, 28, 0.35 );
	border: 1px solid rgba( 255, 255, 255, 0.07 );
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.25s cubic-bezier( 0.22, 1, 0.36, 1 );
}

.cricket-gameplan__step > a:hover,
.cricket-gameplan__step > a:focus-visible {
	border-color: rgba( 255, 176, 32, 0.45 );
	background: rgba( 255, 176, 32, 0.07 );
	transform: translateX( 4px );
}

.cricket-gameplan__step > a:focus-visible {
	outline: 2px solid #ffb020;
	outline-offset: 2px;
}

/* Numbered circle that becomes a drawn check when the step is done. */
.cricket-gameplan__check {
	position: relative;
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	color: transparent;
	border: 1.5px dashed rgba( 255, 255, 255, 0.28 );
	counter-increment: gp;
	transition: background 0.35s ease, border-color 0.35s ease;
}

.cricket-gameplan__check::before {
	content: counter( gp );
	position: absolute;
	font-family: 'JetBrains Mono', Consolas, monospace;
	font-size: 12px;
	font-weight: 700;
	color: rgba( 234, 244, 255, 0.7 );
}

.cricket-gameplan__check svg path {
	stroke-dasharray: 24;
	stroke-dashoffset: 24;
}

.cricket-gameplan__step.is-done .cricket-gameplan__check {
	color: #06210f;
	border: 0;
	background: linear-gradient( 135deg, #6ee7a8, #4fd18b );
	box-shadow: 0 0 0 4px rgba( 79, 209, 139, 0.15 );
}

.cricket-gameplan__step.is-done .cricket-gameplan__check::before {
	content: none;
}

.cricket-gameplan__step.is-done .cricket-gameplan__check svg path {
	animation: cricket-gameplan-draw 0.5s ease-out 1s forwards;
}

@keyframes cricket-gameplan-draw {
	to { stroke-dashoffset: 0; }
}

.cricket-gameplan__step.is-done .cricket-gameplan__text strong {
	color: rgba( 234, 244, 255, 0.7 );
	text-decoration: line-through;
	text-decoration-color: rgba( 79, 209, 139, 0.7 );
	text-decoration-thickness: 2px;
}

/* The next thing to do glows. */
.cricket-gameplan__step:not( .is-done ) ~ .cricket-gameplan__step:not( .is-done ) .cricket-gameplan__check,
.cricket-gameplan__step.is-done .cricket-gameplan__check {
	animation: none;
}

.cricket-gameplan__step:not( .is-done ) .cricket-gameplan__check {
	animation: cricket-gameplan-pulse 2.4s ease-in-out infinite;
}

@keyframes cricket-gameplan-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba( 255, 176, 32, 0 ); border-color: rgba( 255, 255, 255, 0.28 ); }
	50% { box-shadow: 0 0 0 5px rgba( 255, 176, 32, 0.12 ); border-color: rgba( 255, 176, 32, 0.8 ); }
}

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

.cricket-gameplan__text strong {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
}

.cricket-gameplan__text small {
	overflow: hidden;
	font-size: 12px;
	line-height: 1.3;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: rgba( 234, 244, 255, 0.58 );
}

.cricket-gameplan__timer {
	font-family: 'JetBrains Mono', Consolas, monospace;
	font-variant-numeric: tabular-nums;
	color: #ffd36b;
}

.cricket-gameplan__timer.is-soon {
	color: #ff8a8a;
}

.cricket-gameplan__live {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 8px;
	border-radius: 999px;
	font-family: 'JetBrains Mono', Consolas, monospace;
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ff8a8a;
	background: rgba( 255, 107, 107, 0.12 );
	border: 1px solid rgba( 255, 107, 107, 0.35 );
}

.cricket-gameplan__live::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ff6b6b;
	animation: cricket-gameplan-blink 1.2s ease-in-out infinite;
}

@keyframes cricket-gameplan-blink {
	50% { opacity: 0.25; }
}

.cricket-gameplan__go {
	flex: none;
	color: rgba( 234, 244, 255, 0.4 );
	transition: color 0.2s ease, transform 0.25s ease;
}

.cricket-gameplan__step > a:hover .cricket-gameplan__go {
	color: #ffb020;
	transform: translateX( 3px );
}

.cricket-gameplan.is-complete {
	border-color: rgba( 79, 209, 139, 0.45 );
}

.cricket-gameplan.is-complete .cricket-gameplan__ring-fill {
	stroke: #4fd18b;
}

@media ( max-width: 900px ) {
	.cricket-gameplan {
		text-align: left;
		max-width: 560px;
		margin-inline: auto;
	}
}

@media ( prefers-reduced-motion: reduce ) {
	.cricket-gameplan,
	.cricket-gameplan__step,
	.cricket-gameplan__check,
	.cricket-gameplan__live::before {
		animation: none !important;
		opacity: 1;
		transform: none;
	}

	.cricket-gameplan__step.is-done .cricket-gameplan__check svg path {
		stroke-dashoffset: 0;
	}

	.cricket-gameplan__ring-fill,
	.cricket-gameplan__step > a {
		transition: none;
	}
}

/* =====================================================================
 * "This Week's Calls" v2 (2026-09-17)
 * Open Now: one prediction at a time in a sideways slider.
 * Recent Results: hit-rate summary + outcome rows with crests and meters.
 * =================================================================== */

.cricket-feed {
	align-items: stretch;
}

.cricket-feed-panel__head {
	flex-wrap: wrap;
}

/* --- Slider ----------------------------------------------------------- */

.cricket-feed-panel--live .cricket-feed-panel__body {
	display: flex;
	flex-direction: column;
	padding: 0 !important;
	min-width: 0;
}

.cricket-feed-carousel {
	position: relative;
	min-width: 0;
}

.cricket-feed-panel__body .cricket-feed-carousel .proace-predictions-grid {
	display: flex !important;
	gap: 14px;
	margin: 0;
	padding: 14px;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.cricket-feed-carousel .proace-predictions-grid::-webkit-scrollbar {
	display: none;
}

.cricket-feed-panel__body .cricket-feed-carousel .proace-prediction {
	flex: 0 0 100%;
	min-width: 0;
	margin: 0 !important;
	scroll-snap-align: center;
	scroll-snap-stop: always;
	transition: opacity 0.5s ease, transform 0.6s var( --hfx-ease, ease ), filter 0.5s ease;
}

.cricket-feed-carousel.is-enhanced .proace-prediction:not( .is-current ) {
	opacity: 0.35;
	transform: scale( 0.94 );
	filter: saturate( 0.6 );
}

.cricket-feed-panel__body .cricket-feed-carousel .proace-predictions-grid {
	align-items: flex-start;
}

.cricket-feed-panel--live .cricket-feed-carousel__dots {
	margin-top: auto;
}

/* Head controls: ‹ 1 / 2 › */
.cricket-feed-carousel__nav {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: 10px;
}

.cricket-feed-carousel__nav[hidden] {
	display: none;
}

.cricket-feed-carousel__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border-radius: 50%;
	color: var( --hfx-ice, #eaf4ff );
	background: rgba( 255, 255, 255, 0.06 );
	border: 1px solid rgba( 255, 255, 255, 0.16 );
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cricket-feed-carousel__btn:hover,
.cricket-feed-carousel__btn:focus-visible {
	color: #1a1200;
	background: var( --hfx-gold, #ffb020 );
	border-color: var( --hfx-gold, #ffb020 );
}

.cricket-feed-carousel__btn--prev:active {
	transform: translateX( -2px );
}

.cricket-feed-carousel__btn--next:active {
	transform: translateX( 2px );
}

.cricket-feed-carousel__btn:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

.cricket-feed-carousel__count {
	min-width: 38px;
	font-family: 'JetBrains Mono', Consolas, monospace;
	font-size: 11px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	text-align: center;
	color: rgba( 234, 244, 255, 0.75 );
}

/* Dots with autoplay progress in the active one */
.cricket-feed-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	padding: 0 14px 12px;
}

.cricket-feed-carousel__dots[hidden] {
	display: none;
}

.cricket-feed-carousel__dot {
	position: relative;
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	overflow: hidden;
	background: rgba( 255, 255, 255, 0.22 );
	cursor: pointer;
	transition: width 0.35s var( --hfx-ease, ease ), background 0.2s ease;
}

.cricket-feed-carousel__dot::after {
	content: "";
	position: absolute;
	inset: -8px -4px;
}

.cricket-feed-carousel__dot:hover {
	background: rgba( 255, 255, 255, 0.45 );
}

.cricket-feed-carousel__dot.is-active {
	width: 34px;
	background: rgba( 255, 176, 32, 0.25 );
}

.cricket-feed-carousel__dot i {
	position: absolute;
	inset: 0;
	width: 0;
	background: linear-gradient( 90deg, #ffb020, #ff8a5c );
}

.cricket-feed-carousel__dot.is-active i {
	animation: cricket-feed-dot 8s linear forwards;
}

.cricket-feed-carousel__dots.is-paused .cricket-feed-carousel__dot.is-active i {
	animation-play-state: paused;
}

.cricket-feed-carousel__dots.is-stopped .cricket-feed-carousel__dot.is-active i {
	animation: none;
	width: 100%;
}

.cricket-feed-carousel__dot:focus-visible {
	outline: 2px solid #ffb020;
	outline-offset: 3px;
}

@keyframes cricket-feed-dot {
	to { width: 100%; }
}

/* --- Recent Results ----------------------------------------------------- */

.cricket-results-summary {
	--ring-c: 94.25;
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 14px 14px 4px;
	padding: 12px 14px;
	border-radius: 16px;
	background:
		radial-gradient( 120% 140% at 0% 0%, rgba( 79, 209, 139, 0.16 ), transparent 60% ),
		rgba( 5, 14, 28, 0.35 );
	border: 1px solid rgba( 79, 209, 139, 0.25 );
}

.cricket-results-summary__ring {
	position: relative;
	flex: none;
	width: 46px;
	height: 46px;
}

.cricket-results-summary__ring svg {
	width: 100%;
	height: 100%;
	transform: rotate( -90deg );
}

.cricket-results-summary__ring circle {
	fill: none;
	stroke-width: 3.5;
	stroke: rgba( 255, 255, 255, 0.1 );
}

.cricket-results-summary__ring circle + circle {
	stroke: #4fd18b;
	stroke-linecap: round;
	stroke-dasharray: var( --ring-c );
	stroke-dashoffset: calc( var( --ring-c ) - var( --ring-c ) * var( --pct ) / 100 );
	filter: drop-shadow( 0 0 4px rgba( 79, 209, 139, 0.55 ) );
	animation: cricket-results-ring 1.4s var( --hfx-ease, ease ) both;
}

@keyframes cricket-results-ring {
	from { stroke-dashoffset: var( --ring-c ); }
}

.cricket-results-summary__ring b {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'JetBrains Mono', Consolas, monospace;
	font-size: 11px;
	font-weight: 700;
	color: #6ee7a8;
}

.cricket-results-summary__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.cricket-results-summary__text strong {
	font-family: var( --hfx-display, 'Outfit', sans-serif );
	font-size: 15px;
	font-weight: 800;
	color: #eaf4ff;
}

.cricket-results-summary__text small {
	font-size: 12px;
	line-height: 1.35;
	color: rgba( 234, 244, 255, 0.6 );
}

.cricket-results-list {
	display: grid;
	gap: 8px;
	flex: 1;
	padding: 10px 14px 14px;
	align-content: start;
}

.cricket-result-row,
.cricket-result-row:visited {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
	padding: 12px 14px;
	border-radius: 14px;
	text-decoration: none !important;
	color: #eaf4ff !important;
	background: rgba( 5, 14, 28, 0.35 );
	border: 1px solid rgba( 255, 255, 255, 0.08 );
	overflow: hidden;
	transition: border-color 0.25s ease, background 0.25s ease, transform 0.3s var( --hfx-ease, ease );
}

.cricket-result-row::before {
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	bottom: 14px;
	width: 3px;
	border-radius: 0 3px 3px 0;
	background: linear-gradient( 180deg, #6ee7a8, #4fd18b );
}

.cricket-result-row:hover,
.cricket-result-row:focus-visible {
	border-color: rgba( 255, 176, 32, 0.4 );
	background: rgba( 255, 176, 32, 0.05 );
	transform: translateY( -2px );
}

.cricket-result-row:focus-visible {
	outline: 2px solid #ffb020;
	outline-offset: 2px;
}

.cricket-result-row__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.cricket-result-row__tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
	overflow: hidden;
	font-family: 'JetBrains Mono', Consolas, monospace;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #8fb8ee;
}

.cricket-result-row__tag::before {
	content: "";
	flex: none;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4fd18b;
	box-shadow: 0 0 0 3px rgba( 79, 209, 139, 0.18 );
}

.cricket-result-row__ago {
	flex: none;
	font-family: 'JetBrains Mono', Consolas, monospace;
	font-size: 10px;
	color: rgba( 234, 244, 255, 0.45 );
}

.cricket-result-row__q {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: var( --hfx-display, 'Outfit', sans-serif );
	font-size: 14.5px;
	font-weight: 700;
	line-height: 1.3;
}

.cricket-result-row__outcome {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px 12px;
}

.cricket-result-row__vs {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.cricket-result-row__x {
	font-family: 'JetBrains Mono', Consolas, monospace;
	font-size: 10px;
	text-transform: uppercase;
	color: rgba( 234, 244, 255, 0.4 );
}

.cricket-result-row__team {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
	padding: 3px 8px 3px 3px;
	border-radius: 999px;
	border: 1px solid transparent;
}

.cricket-result-row__team.is-winner {
	background: rgba( 255, 176, 32, 0.12 );
	border-color: rgba( 255, 176, 32, 0.45 );
}

.cricket-result-row__team.is-loser {
	opacity: 0.55;
}

.cricket-result-row__crest {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	overflow: hidden;
	font-family: 'JetBrains Mono', Consolas, monospace;
	font-size: 8px;
	font-weight: 700;
	color: #ffffff;
	background: var( --crest, #3a86e0 );
}

.cricket-result-row__crest[data-logo] {
	background: #ffffff;
}

.cricket-result-row__crest img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.cricket-result-row__name {
	max-width: 110px;
	overflow: hidden;
	font-size: 12.5px;
	font-weight: 700;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.cricket-result-row__won {
	padding: 1px 6px;
	border-radius: 999px;
	font-family: 'JetBrains Mono', Consolas, monospace;
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	color: #1a1200;
	background: #ffb020;
}

.cricket-result-row__answer {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	max-width: 100%;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12.5px;
	font-weight: 700;
	color: #6ee7a8;
	background: rgba( 79, 209, 139, 0.12 );
	border: 1px solid rgba( 79, 209, 139, 0.35 );
}

.cricket-result-row__answer--void {
	color: rgba( 234, 244, 255, 0.6 );
	background: rgba( 255, 255, 255, 0.05 );
	border-color: rgba( 255, 255, 255, 0.15 );
}

.cricket-result-row__meter {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.cricket-result-row__bar {
	position: relative;
	width: 70px;
	height: 5px;
	border-radius: 999px;
	overflow: hidden;
	background: rgba( 255, 255, 255, 0.1 );
}

.cricket-result-row__bar i {
	position: absolute;
	inset: 0 auto 0 0;
	width: var( --pct );
	border-radius: inherit;
	background: linear-gradient( 90deg, #4fd18b, #6ee7a8 );
	animation: cricket-results-bar 1.2s var( --hfx-ease, ease ) both;
}

@keyframes cricket-results-bar {
	from { width: 0; }
}

.cricket-result-row__pct {
	font-family: 'JetBrains Mono', Consolas, monospace;
	font-size: 10.5px;
	font-weight: 700;
	white-space: nowrap;
	color: rgba( 234, 244, 255, 0.75 );
}

@media ( max-width: 480px ) {
	.cricket-feed-panel__head .cricket-feed-carousel__nav {
		margin-left: auto;
	}

	.cricket-result-row__meter {
		margin-left: 0;
	}

	.cricket-result-row__name {
		max-width: 80px;
	}
}

@media ( prefers-reduced-motion: reduce ) {
	.cricket-feed-carousel .proace-prediction,
	.cricket-feed-carousel__dot,
	.cricket-result-row {
		transition: none;
	}

	.cricket-feed-carousel.is-enhanced .proace-prediction:not( .is-current ) {
		transform: none;
	}

	.cricket-results-summary__ring circle + circle,
	.cricket-result-row__bar i {
		animation: none;
	}

	.cricket-result-row:hover {
		transform: none;
	}
}
