/**
 * লাইভ খেলা (Live Khela) — frontend v2 "Signal console".
 *
 * Architecture: no hero. A slim sticky command bar (brand + tagline left,
 * icon navigation, timezone right) drops the visitor straight onto the
 * broadcast STAGE — a full-bleed console band holding the player, the
 * up-next card and a vertical channel rail. Below it, standings, results
 * and fixture match-cards sit on a clean sheet.
 *
 * The chrome (topbar, stage, footer, mobile dock) is always dark console;
 * the sheet honours the dashboard light/dark/auto theme. The dashboard
 * accent arrives via an inline `:root{--wc26-accent:…}` rule and every
 * accent shade here derives from it.
 */

/* ---------------------------------------------------------------- accent */

:root {
	--wc26-accent: #00794f;
	--wc26-accent-2: #10c07d;                 /* bright signal */
	--wc26-glow: rgba(16, 192, 125, 0.4);
	--wc26-accent-soft: rgba(0, 121, 79, 0.12);
	--wc26-accent-line: rgba(0, 121, 79, 0.35);
}

@supports (color: color-mix(in srgb, red, blue)) {
	:root {
		--wc26-accent-2: color-mix(in srgb, var(--wc26-accent) 62%, #7dffc4);
		--wc26-glow: color-mix(in srgb, var(--wc26-accent-2) 42%, transparent);
		--wc26-accent-soft: color-mix(in srgb, var(--wc26-accent) 12%, transparent);
		--wc26-accent-line: color-mix(in srgb, var(--wc26-accent) 36%, transparent);
	}
}

/* ---------------------------------------------------------------- tokens */

.wc26-app {
	/* Sheet (light "matchday paper") */
	--wc26-bg: #f2f6f3;
	--wc26-card: #ffffff;
	--wc26-ink: #0a1310;
	--wc26-muted: #5b6d64;
	--wc26-faint: #8fa198;
	--wc26-line: #e2e9e5;
	--wc26-soft: #ecf2ee;
	--wc26-soft-2: #f7faf8;

	/* Console (chrome — identical in both themes) */
	--wc26-c0: #060b09;
	--wc26-c1: #0b1310;
	--wc26-c2: #101b16;
	--wc26-c3: #16241e;
	--wc26-cink: #f2f7f4;
	--wc26-cmut: rgba(242, 247, 244, 0.62);
	--wc26-cfnt: rgba(242, 247, 244, 0.4);
	--wc26-cline: rgba(242, 247, 244, 0.1);
	--wc26-cfill: rgba(242, 247, 244, 0.06);
	--wc26-cfill-2: rgba(242, 247, 244, 0.11);

	/* Signals */
	--wc26-red: #ff3b52;
	--wc26-red-soft: rgba(255, 59, 82, 0.14);
	--wc26-gold: #f2b21c;
	--wc26-gold-soft: rgba(242, 178, 28, 0.15);

	/* Geometry & depth */
	--wc26-tb: 64px;                              /* topbar height */
	--wc26-r-sm: 11px;
	--wc26-r: 16px;
	--wc26-r-lg: 22px;
	--wc26-sh-card: 0 1px 2px rgba(10, 19, 16, 0.05), 0 10px 28px rgba(10, 19, 16, 0.06);
	--wc26-sh-pop: 0 3px 6px rgba(10, 19, 16, 0.07), 0 20px 48px rgba(10, 19, 16, 0.12);
	--wc26-sh-stage: 0 30px 80px -24px rgba(0, 0, 0, 0.85), 0 6px 24px -8px rgba(0, 0, 0, 0.6);

	--wc26-font-d: "Anek Bangla", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Noto Sans Bengali", "Hind Siliguri", "SolaimanLipi", "Kalpurush", "Helvetica Neue", Arial, sans-serif;
	--wc26-font-b: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
		"Noto Sans Bengali", "Hind Siliguri", "SolaimanLipi", "Kalpurush", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

.wc26-app[data-theme="dark"] {
	--wc26-bg: #070d0a;
	--wc26-card: #0e1613;
	--wc26-ink: #e9f1ec;
	--wc26-muted: #93a69d;
	--wc26-faint: #6b7d74;
	--wc26-line: #1c2822;
	--wc26-soft: #121c17;
	--wc26-soft-2: #0c1410;
	--wc26-sh-card: 0 1px 2px rgba(0, 0, 0, 0.5), 0 12px 30px rgba(0, 0, 0, 0.4);
	--wc26-sh-pop: 0 3px 8px rgba(0, 0, 0, 0.55), 0 22px 52px rgba(0, 0, 0, 0.55);
}

/* ------------------------------------------------------------------ base */

body.wc26-body {
	margin: 0;
	background: var(--wc26-c0);
}

.wc26-app {
	font-family: var(--wc26-font-b);
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--wc26-ink);
	background: var(--wc26-bg);
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

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

/* Components below set display:flex/grid/block; make sure the `hidden`
   attribute (used heavily by the JS for state) always wins. */
.wc26-app [hidden] { display: none !important; }

.wc26-app.is-embed { min-height: 0; }

.wc26-app img, .wc26-app svg, .wc26-app video, .wc26-app iframe { max-width: 100%; }

.wc26-app a { color: var(--wc26-accent); text-decoration: none; }
.wc26-app a:hover { text-decoration: underline; text-underline-offset: 3px; }

.wc26-app h1, .wc26-app h2, .wc26-app h3 {
	font-family: var(--wc26-font-d);
	line-height: 1.15;
	margin: 0;
	letter-spacing: -0.015em;
}

.wc26-app button { font-family: inherit; cursor: pointer; }

.wc26-app :focus-visible {
	outline: 2px solid var(--wc26-accent-2);
	outline-offset: 2px;
	border-radius: 6px;
}

.wc26-app ::selection { background: var(--wc26-accent); color: #fff; }

.wc26-container {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: clamp(14px, 3.4vw, 28px);
}

.wc26-main { flex: 1; }

/* Sticky-offset for in-page anchors under the fixed topbar. */
.wc26-app [data-wc26-section] { scroll-margin-top: calc(var(--wc26-tb) + 12px); }

@media (prefers-reduced-motion: reduce) {
	.wc26-app *, .wc26-app *::before, .wc26-app *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* ---------------------------------------------------------------- topbar */

.wc26-topbar {
	position: sticky;
	top: 0;
	z-index: 80;
	background: color-mix(in srgb, var(--wc26-c1) 86%, transparent);
	-webkit-backdrop-filter: blur(16px) saturate(1.5);
	backdrop-filter: blur(16px) saturate(1.5);
	border-bottom: 1px solid var(--wc26-cline);
}

@supports not (color: color-mix(in srgb, red, blue)) {
	.wc26-topbar { background: var(--wc26-c1); }
}

/* Hair-thin signal line across the very top. */
.wc26-topbar::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--wc26-accent-2) 30%, var(--wc26-accent) 70%, transparent);
	opacity: 0.85;
}

body.admin-bar .wc26-topbar { top: 32px; }
@media (max-width: 782px) { body.admin-bar .wc26-topbar { top: 46px; } }

.wc26-topbar-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 18px;
	height: var(--wc26-tb);
}

/* Brand ------------------------------------------------------------------ */

.wc26-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
	color: var(--wc26-cink);
}

.wc26-app a.wc26-brand:hover { text-decoration: none; }

.wc26-brand-orb {
	position: relative;
	flex: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.95) 0 13%, transparent 14%),
		conic-gradient(from 210deg, var(--wc26-accent-2), var(--wc26-accent) 52%, #04140d 88%, var(--wc26-accent-2));
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.07), 0 0 18px -2px var(--wc26-glow);
	transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.25, 1.2);
}

.wc26-brand-orb::after {
	content: "";
	position: absolute;
	inset: 22%;
	border-radius: 50%;
	background: radial-gradient(circle at 62% 66%, transparent 52%, rgba(0, 0, 0, 0.3));
}

.wc26-app a.wc26-brand:hover .wc26-brand-orb { transform: rotate(32deg) scale(1.07); }

.wc26-brand-stack {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.wc26-brand-word {
	font-family: var(--wc26-font-d);
	font-size: 1.18rem;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.015em;
	color: var(--wc26-cink);
	white-space: nowrap;
}

.wc26-brand-word .lk-2 { color: var(--wc26-accent-2); }

.wc26-brand-tag {
	font-size: 0.63rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: var(--wc26-cfnt);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 240px;
}

/* Nav -------------------------------------------------------------------- */

.wc26-nav { min-width: 0; justify-self: center; }

.wc26-nav-links {
	display: flex;
	gap: 4px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: 4px;
	border-radius: 999px;
	background: var(--wc26-cfill);
	border: 1px solid var(--wc26-cline);
}

.wc26-nav-links::-webkit-scrollbar { display: none; }

.wc26-nav-links a {
	position: relative;
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 14px;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--wc26-cmut);
	transition: color 0.15s ease, background-color 0.15s ease;
}

.wc26-nav-links a:hover { color: var(--wc26-cink); background: var(--wc26-cfill-2); text-decoration: none; }

.wc26-nav-links a.is-active {
	color: #052015;
	background: linear-gradient(135deg, var(--wc26-accent-2), var(--wc26-accent));
	box-shadow: 0 4px 14px -4px var(--wc26-glow);
}

.wc26-ni { display: inline-flex; }
.wc26-ni svg { width: 15px; height: 15px; }

/* Utilities (right) ------------------------------------------------------- */

.wc26-utils {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-self: end;
	min-width: 0;
}

.wc26-tzchip {
	font-size: 0.7rem;
	font-weight: 650;
	font-variant-numeric: tabular-nums;
	color: var(--wc26-cmut);
	background: var(--wc26-cfill);
	border: 1px solid var(--wc26-cline);
	border-radius: 999px;
	padding: 5px 11px;
	white-space: nowrap;
}

.wc26-updated {
	font-size: 0.68rem;
	color: var(--wc26-cfnt);
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

/* -------------------------------------------------------------- pulse bar
   Fallback home for the tournament line / countdown / up-next when the
   live stage isn't rendered. */

.wc26-pulse {
	background: linear-gradient(180deg, var(--wc26-c1), var(--wc26-c0));
	border-bottom: 1px solid var(--wc26-cline);
	color: var(--wc26-cink);
	padding: 14px 0;
}

.wc26-pulse-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 20px;
}

.wc26-pulse .wc26-upnext { flex: 1 1 320px; }

/* ----------------------------------------------------------------- stage */

.wc26-stage {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	color: var(--wc26-cink);
	background:
		radial-gradient(110% 120% at 78% -20%, var(--wc26-glow) 0%, transparent 44%),
		radial-gradient(90% 100% at 8% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
		linear-gradient(172deg, var(--wc26-c2) 0%, var(--wc26-c1) 46%, var(--wc26-c0) 100%);
	padding: clamp(20px, 3.4vw, 34px) 0 clamp(30px, 4.6vw, 48px);
}

/* Broadcast scanlines — barely-there texture. */
.wc26-stage::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: repeating-linear-gradient(180deg,
		rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 4px);
	mix-blend-mode: overlay;
}

.wc26-stage > .wc26-container { position: relative; }

/* Stage head -------------------------------------------------------------- */

.wc26-stage-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 18px;
	margin-bottom: 18px;
}

.wc26-stage-title {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.wc26-stage-titles { min-width: 0; }

.wc26-stage-titles h2 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 12px;
	min-width: 0;
	font-size: clamp(1.3rem, 2.6vw, 1.7rem);
	font-weight: 800;
	color: var(--wc26-cink);
}

/* Live matchup inside the h2: Home 🇽 vs 🇾 Away (or the scoreline). */
.wc26-lm-team {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
}

.wc26-lm-team > span:not(.wc26-flag) {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 34vw;
}

.wc26-lm-team .wc26-flag { font-size: 0.88em; transform: none; }

.wc26-lm-mid {
	flex: none;
	font-size: 0.5em;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wc26-cmut);
	background: var(--wc26-cfill);
	border: 1px solid var(--wc26-cline);
	border-radius: 999px;
	padding: 4px 11px;
}

.wc26-lm-mid.is-score {
	font-size: 0.82em;
	letter-spacing: 0.02em;
	color: var(--wc26-cink);
	font-variant-numeric: tabular-nums;
	border-color: rgba(255, 59, 82, 0.55);
	background: var(--wc26-red-soft);
}

.wc26-stage-substage { color: var(--wc26-accent-2); font-weight: 750; }

.wc26-stage-meta {
	margin: 3px 0 0;
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.1em;
	color: var(--wc26-cfnt);
	display: flex;
	align-items: center;
	gap: 9px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.wc26-stage-meta::before {
	content: "";
	flex: none;
	width: 20px;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--wc26-accent-2), transparent);
}

/* LIVE badge --------------------------------------------------------------- */

.wc26-live-badge {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 13px;
	border-radius: 10px;
	font-family: var(--wc26-font-d);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: #fff;
	background: linear-gradient(140deg, #ff5b6e, var(--wc26-red) 60%, #c2142c);
	box-shadow: 0 6px 18px -6px rgba(255, 59, 82, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.wc26-live-badge.is-off {
	background: var(--wc26-cfill);
	border: 1px solid var(--wc26-cline);
	color: var(--wc26-cmut);
	box-shadow: none;
}

.wc26-live-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #fff;
	animation: wc26-blink 1.15s ease-in-out infinite;
}

.wc26-live-badge.is-off .wc26-live-dot { background: var(--wc26-cfnt); animation: none; }

@keyframes wc26-blink {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
	50% { opacity: 0.45; box-shadow: 0 0 0 5px rgba(255, 255, 255, 0); }
}

/* Countdown chip ------------------------------------------------------------ */

.wc26-chip-count {
	flex: none;
	font-size: 0.78rem;
	font-weight: 750;
	font-variant-numeric: tabular-nums;
	color: var(--wc26-gold);
	background: var(--wc26-gold-soft);
	border: 1px solid rgba(242, 178, 28, 0.4);
	border-radius: 999px;
	padding: 7px 14px;
	white-space: nowrap;
}

/* Stage grid ---------------------------------------------------------------- */

.wc26-stage-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 22px;
	align-items: start;
}

.wc26-stage-grid.is-solo { grid-template-columns: minmax(0, 1fr); }

.wc26-stage-main { min-width: 0; }

/* Player -------------------------------------------------------------------- */

.wc26-player {
	position: relative;
	width: 100%;
	background: #000;
	border-radius: var(--wc26-r-lg);
	overflow: hidden;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.09),
		0 0 44px -8px var(--wc26-glow),
		var(--wc26-sh-stage);
	animation: wc26-breathe 5s ease-in-out infinite;
}

@keyframes wc26-breathe {
	0%, 100% { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.09), 0 0 44px -8px var(--wc26-glow), var(--wc26-sh-stage); }
	50% { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 68px -6px var(--wc26-glow), var(--wc26-sh-stage); }
}

.wc26-stage.is-offair .wc26-player { animation: none; }

.wc26-src, .wc26-src iframe, .wc26-src .wc26-video,
.wc26-embed-target, .wc26-embed-target iframe, .wc26-embed-target video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.wc26-src { background: #000; }
.wc26-video { object-fit: contain; background: #000; }

.wc26-player-empty {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 20px;
	text-align: center;
	color: var(--wc26-cmut);
	font-size: 0.9rem;
}

/* Fail-over toast + note ------------------------------------------------------ */

.wc26-live-msg {
	margin: 12px 0 0;
	padding: 10px 15px;
	border-radius: var(--wc26-r-sm);
	background: var(--wc26-gold-soft);
	border: 1px solid rgba(242, 178, 28, 0.4);
	color: var(--wc26-gold);
	font-size: 0.82rem;
	font-weight: 650;
}

.wc26-live-note {
	margin: 12px 2px 0;
	font-size: 0.8rem;
	color: var(--wc26-cfnt);
}

/* Off-air standby -------------------------------------------------------------- */

.wc26-live-offair {
	position: relative;
	border-radius: var(--wc26-r-lg);
	border: 1px solid var(--wc26-cline);
	background:
		radial-gradient(80% 90% at 50% -20%, var(--wc26-cfill-2), transparent 60%),
		var(--wc26-c2);
	padding: clamp(30px, 5vw, 52px) 24px;
	text-align: center;
}

.wc26-offair-icon {
	display: inline-grid;
	place-items: center;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	color: var(--wc26-accent-2);
	background: var(--wc26-cfill);
	border: 1px solid var(--wc26-cline);
	position: relative;
	margin-bottom: 16px;
}

.wc26-offair-icon svg { width: 30px; height: 30px; }

.wc26-offair-icon::after {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: 50%;
	border: 1px solid var(--wc26-accent-2);
	animation: wc26-ping 2.4s ease-out infinite;
}

@keyframes wc26-ping {
	0% { transform: scale(1); opacity: 0.7; }
	80%, 100% { transform: scale(1.7); opacity: 0; }
}

.wc26-live-offair h3 {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--wc26-cink);
}

.wc26-live-offair p {
	margin: 9px auto 0;
	max-width: 480px;
	color: var(--wc26-cmut);
	font-size: 0.9rem;
}

.wc26-offair-next {
	display: inline-block;
	margin-top: 16px !important;
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--wc26-gold-soft);
	border: 1px solid rgba(242, 178, 28, 0.4);
	color: var(--wc26-gold) !important;
	font-weight: 750;
	font-variant-numeric: tabular-nums;
	font-size: 0.84rem !important;
}

/* Stage sidebar ------------------------------------------------------------------ */

.wc26-stage-side {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}

/* Up-next card */
.wc26-upnext {
	border-radius: var(--wc26-r);
	border: 1px solid var(--wc26-cline);
	background: linear-gradient(180deg, var(--wc26-c3), var(--wc26-c2));
	padding: 15px 16px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.wc26-un-label {
	margin: 0 0 10px;
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wc26-accent-2);
}

.wc26-un-label .wc26-live-dot { background: var(--wc26-red); }

.wc26-un-match {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 10px;
}

.wc26-un-team {
	display: flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
	font-weight: 750;
	font-size: 0.92rem;
	color: var(--wc26-cink);
}

.wc26-un-team span:not(.wc26-flag) { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wc26-un-team.home { justify-content: flex-end; text-align: right; }

.wc26-un-mid {
	font-family: var(--wc26-font-d);
	font-weight: 800;
	font-size: 0.98rem;
	font-variant-numeric: tabular-nums;
	color: var(--wc26-cink);
	background: var(--wc26-cfill);
	border: 1px solid var(--wc26-cline);
	border-radius: 9px;
	padding: 5px 10px;
	white-space: nowrap;
}

.wc26-un-mid.is-live { color: #fff; background: var(--wc26-red); border-color: transparent; }

.wc26-un-sub {
	margin: 10px 0 0;
	font-size: 0.76rem;
	color: var(--wc26-cfnt);
	text-align: center;
}

.wc26-un-sub strong { color: var(--wc26-accent-2); font-variant-numeric: tabular-nums; }

/* Channel rail */
.wc26-srcpanel {
	border-radius: var(--wc26-r);
	border: 1px solid var(--wc26-cline);
	background: var(--wc26-c2);
	padding: 14px;
}

.wc26-stage.is-offair .wc26-srcpanel { display: none; }

.wc26-srcpanel-label {
	margin: 0 2px 10px;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wc26-cfnt);
}

.wc26-live-srcs {
	display: flex;
	flex-direction: column;
	gap: 7px;
	max-height: 300px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--wc26-cfill-2) transparent;
}

.wc26-live-srcs button {
	display: grid;
	grid-template-columns: 26px 1fr auto;
	align-items: center;
	gap: 10px;
	width: 100%;
	min-height: 46px;
	padding: 9px 12px;
	border: 1px solid transparent;
	border-radius: var(--wc26-r-sm);
	background: var(--wc26-cfill);
	color: var(--wc26-cmut);
	text-align: left;
	font-size: 0.87rem;
	font-weight: 700;
	transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.wc26-live-srcs button:hover {
	background: var(--wc26-cfill-2);
	color: var(--wc26-cink);
	transform: translateX(3px);
}

.wc26-live-srcs button.is-active {
	background: linear-gradient(90deg, var(--wc26-accent-soft), transparent 85%), var(--wc26-cfill);
	border-color: var(--wc26-accent-line);
	box-shadow: inset 3px 0 0 var(--wc26-accent-2);
	color: var(--wc26-cink);
}

.wc26-src-logo {
	flex: none;
	width: 26px;
	height: 26px;
	border-radius: 7px;
	overflow: hidden;
	display: grid;
	place-items: center;
	background: var(--wc26-cfill-2);
	box-shadow: inset 0 0 0 1px var(--wc26-cline);
}

.wc26-src-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.wc26-live-srcs button.has-logo:not(.logo-broken) .wc26-src-no { display: none; }
.wc26-live-srcs button.logo-broken .wc26-src-logo { display: none; }

.wc26-src-no {
	font-family: var(--wc26-font-d);
	font-size: 0.72rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	color: var(--wc26-cfnt);
}

.wc26-live-srcs button.is-active .wc26-src-no { color: var(--wc26-accent-2); }

.wc26-src-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Equaliser — visible only on the playing channel. */
.wc26-src-eq { display: none; align-items: flex-end; gap: 2px; height: 14px; }
.wc26-live-srcs button.is-active .wc26-src-eq { display: inline-flex; }

.wc26-src-eq i {
	width: 3px;
	border-radius: 2px;
	background: var(--wc26-accent-2);
	animation: wc26-eq 0.9s ease-in-out infinite;
}

.wc26-src-eq i:nth-child(1) { height: 60%; animation-delay: 0s; }
.wc26-src-eq i:nth-child(2) { height: 100%; animation-delay: 0.22s; }
.wc26-src-eq i:nth-child(3) { height: 75%; animation-delay: 0.44s; }

@keyframes wc26-eq {
	0%, 100% { transform: scaleY(0.5); }
	50% { transform: scaleY(1); }
}

.wc26-live-hint {
	margin: 10px 2px 0;
	font-size: 0.72rem;
	color: var(--wc26-cfnt);
}

.wc26-live-open {
	display: block;
	margin-top: 10px;
	padding: 10px 14px;
	text-align: center;
	border-radius: var(--wc26-r-sm);
	border: 1px solid var(--wc26-cline);
	background: var(--wc26-cfill);
	color: var(--wc26-cmut) !important;
	font-size: 0.8rem;
	font-weight: 700;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.wc26-live-open:hover { background: var(--wc26-cfill-2); color: var(--wc26-cink) !important; text-decoration: none; }

/* -------------------------------------------------------------- sections */

.wc26-section { padding: clamp(34px, 5vw, 52px) 0; }
.wc26-section + .wc26-section { padding-top: 0; }
.wc26-stage + .wc26-section { padding-top: clamp(34px, 5vw, 52px); }
.wc26-section.wc26-stage { padding: clamp(20px, 3.4vw, 34px) 0 clamp(30px, 4.6vw, 48px); }

.wc26-section-head {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-bottom: 14px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--wc26-line);
	position: relative;
}

.wc26-section-head::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 74px;
	height: 3px;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--wc26-accent-2), var(--wc26-accent));
}

.wc26-sec-glyph {
	flex: none;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 13px;
	color: var(--wc26-accent);
	background: var(--wc26-accent-soft);
	border: 1px solid var(--wc26-accent-line);
}

.wc26-sec-glyph svg { width: 21px; height: 21px; }

.wc26-sec-titles { min-width: 0; }

.wc26-sec-titles h2 {
	font-size: clamp(1.25rem, 2.4vw, 1.55rem);
	font-weight: 800;
}

.wc26-section-sub {
	margin: 2px 0 0;
	font-size: 0.82rem;
	color: var(--wc26-muted);
}

/* ------------------------------------------------------------- standings */

.wc26-groups {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 18px;
}

.wc26-group {
	background: var(--wc26-card);
	border: 1px solid var(--wc26-line);
	border-radius: var(--wc26-r);
	box-shadow: var(--wc26-sh-card);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wc26-group:hover { transform: translateY(-2px); box-shadow: var(--wc26-sh-pop); }

.wc26-group-head {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 13px 16px;
	background: var(--wc26-soft-2);
	border-bottom: 1px solid var(--wc26-line);
}

.wc26-group-badge {
	flex: none;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	font-family: var(--wc26-font-d);
	font-size: 1rem;
	font-weight: 900;
	color: #fff;
	background: linear-gradient(140deg, var(--wc26-accent-2), var(--wc26-accent));
	box-shadow: 0 5px 12px -4px var(--wc26-glow);
}

.wc26-group-head h3 { font-size: 0.98rem; font-weight: 800; }

.wc26-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.86rem;
	font-variant-numeric: tabular-nums;
}

.wc26-table th {
	padding: 8px 6px;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wc26-faint);
	text-align: center;
	border-bottom: 1px solid var(--wc26-line);
}

.wc26-table th.wc26-th-team { text-align: left; padding-left: 14px; }

.wc26-table td {
	padding: 9px 6px;
	text-align: center;
	border-bottom: 1px solid var(--wc26-line);
	color: var(--wc26-muted);
}

.wc26-table tr:last-child td { border-bottom: 0; }
.wc26-table tbody tr { transition: background-color 0.12s ease; }
.wc26-table tbody tr:hover { background: var(--wc26-soft-2); }

.wc26-cell-team { text-align: left !important; padding-left: 14px !important; }

.wc26-team {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	font-weight: 700;
	color: var(--wc26-ink);
}

.wc26-team span:not(.wc26-flag) { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.wc26-pos {
	display: inline-grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	font-size: 0.72rem;
	font-weight: 800;
	color: var(--wc26-muted);
	background: var(--wc26-soft);
}

.wc26-pts {
	font-weight: 800 !important;
	color: var(--wc26-ink) !important;
}

/* Qualification rails */
.wc26-table tr.is-q1 { box-shadow: inset 3px 0 0 var(--wc26-accent); background: var(--wc26-accent-soft); }
.wc26-table tr.is-q3 { box-shadow: inset 3px 0 0 var(--wc26-gold); background: var(--wc26-gold-soft); }
.wc26-table tr.is-q1 .wc26-pos { background: var(--wc26-accent); color: #fff; }
.wc26-table tr.is-q3 .wc26-pos { background: var(--wc26-gold); color: #2c2005; }

.wc26-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	margin-top: 16px;
	font-size: 0.78rem;
	color: var(--wc26-muted);
}

.wc26-legend-item { display: inline-flex; align-items: center; gap: 8px; }

.wc26-dot { width: 10px; height: 10px; border-radius: 3px; }
.wc26-dot.q1 { background: var(--wc26-accent); }
.wc26-dot.q3 { background: var(--wc26-gold); }

/* --------------------------------------------------------- days (shared) */

.wc26-day { margin-bottom: 26px; }
.wc26-day:last-child { margin-bottom: 0; }

.wc26-day-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.wc26-day-head h3 {
	font-size: 0.95rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	gap: 10px;
}

.wc26-day-head h3::before {
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--wc26-faint);
	box-shadow: 0 0 0 3px var(--wc26-soft);
}

.wc26-day-head .is-today { color: var(--wc26-accent); }

.wc26-day-head:has(.is-today) h3::before {
	background: var(--wc26-accent-2);
	box-shadow: 0 0 0 3px var(--wc26-accent-soft);
}

.wc26-day-count {
	font-size: 0.68rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	color: var(--wc26-muted);
	background: var(--wc26-soft);
	border: 1px solid var(--wc26-line);
	border-radius: 999px;
	padding: 2px 9px;
}

.wc26-day-head::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--wc26-line);
}

/* --------------------------------------------------------------- results */

.wc26-results {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	gap: 14px;
}

.wc26-result {
	position: relative;
	background: var(--wc26-card);
	border: 1px solid var(--wc26-line);
	border-radius: var(--wc26-r);
	box-shadow: var(--wc26-sh-card);
	padding: 15px 16px 12px;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.wc26-result:hover { transform: translateY(-2px); box-shadow: var(--wc26-sh-pop); }

.wc26-result.is-live {
	border-color: rgba(255, 59, 82, 0.45);
	box-shadow: inset 3px 0 0 var(--wc26-red), var(--wc26-sh-card);
}

.wc26-r-scoreline {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 10px;
}

.wc26-r-team {
	display: flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
	font-weight: 750;
	font-size: 0.92rem;
}

.wc26-r-team span:not(.wc26-flag) { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wc26-r-team.home { justify-content: flex-end; text-align: right; }

.wc26-score {
	font-family: var(--wc26-font-d);
	font-size: 1.45rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.01em;
	display: inline-flex;
	align-items: baseline;
	gap: 5px;
}

.wc26-result.is-live .wc26-score { color: var(--wc26-red); }

.wc26-score-sep { color: var(--wc26-faint); font-size: 1rem; font-weight: 600; }

.wc26-r-foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 8px;
	margin-top: 11px;
	padding-top: 10px;
	border-top: 1px dashed var(--wc26-line);
	font-size: 0.72rem;
	color: var(--wc26-muted);
}

.wc26-sep { color: var(--wc26-faint); }
.wc26-r-date { font-variant-numeric: tabular-nums; }

.wc26-pens {
	color: var(--wc26-gold);
	background: var(--wc26-gold-soft);
	border-radius: 999px;
	padding: 1px 8px;
	font-weight: 750;
}

/* Status chip */
.wc26-status-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	padding: 3px 9px;
	border-radius: 999px;
	border: 1px solid var(--wc26-line);
	background: var(--wc26-soft);
	color: var(--wc26-muted);
}

.wc26-status-chip.is-live {
	color: #fff;
	background: var(--wc26-red);
	border-color: transparent;
}

.wc26-status-chip .wc26-live-dot { width: 5px; height: 5px; }

/* -------------------------------------------------------------- fixtures */

/* Sticky filter toolbar */
.wc26-fixture-tools {
	position: sticky;
	top: calc(var(--wc26-tb) + 8px);
	z-index: 40;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding: 10px;
	margin-bottom: 20px;
	border-radius: var(--wc26-r);
	background: color-mix(in srgb, var(--wc26-card) 88%, transparent);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border: 1px solid var(--wc26-line);
	box-shadow: var(--wc26-sh-card);
}

@supports not (color: color-mix(in srgb, red, blue)) {
	.wc26-fixture-tools { background: var(--wc26-card); }
}

.wc26-chips {
	display: inline-flex;
	gap: 3px;
	padding: 3px;
	border-radius: 999px;
	background: var(--wc26-soft);
	border: 1px solid var(--wc26-line);
	overflow-x: auto;
	scrollbar-width: none;
	max-width: 100%;
}

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

.wc26-fchip {
	flex: none;
	border: 0;
	background: transparent;
	color: var(--wc26-muted);
	font-size: 0.8rem;
	font-weight: 750;
	padding: 7px 14px;
	border-radius: 999px;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.wc26-fchip:hover { color: var(--wc26-ink); }

.wc26-fchip.is-active {
	color: #fff;
	background: linear-gradient(135deg, var(--wc26-accent-2), var(--wc26-accent));
	box-shadow: 0 4px 12px -4px var(--wc26-glow);
}

.wc26-select, .wc26-search {
	height: 40px;
	padding: 0 13px;
	border-radius: 11px;
	border: 1px solid var(--wc26-line);
	background: var(--wc26-card);
	color: var(--wc26-ink);
	font-family: inherit;
	font-size: 0.84rem;
	font-weight: 600;
}

.wc26-search { flex: 1 1 170px; min-width: 140px; }

.wc26-select:focus, .wc26-search:focus {
	outline: none;
	border-color: var(--wc26-accent);
	box-shadow: 0 0 0 3px var(--wc26-accent-soft);
}

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

/* Match cards */
.wc26-flist {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 14px;
}

.wc26-fixture {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--wc26-card);
	border: 1px solid var(--wc26-line);
	border-radius: var(--wc26-r);
	box-shadow: var(--wc26-sh-card);
	padding: 13px 16px 12px;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.wc26-fixture:not(.is-past):hover { transform: translateY(-3px); box-shadow: var(--wc26-sh-pop); }

.wc26-fixture.is-past { opacity: 0.55; }

.wc26-fixture.is-next {
	border-color: var(--wc26-accent-line);
	box-shadow: 0 0 0 1px var(--wc26-accent-line), 0 14px 34px -12px var(--wc26-glow), var(--wc26-sh-card);
}

.wc26-fnext-tag {
	position: absolute;
	top: -1px;
	right: 14px;
	padding: 3px 10px 4px;
	border-radius: 0 0 9px 9px;
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: #fff;
	background: linear-gradient(135deg, var(--wc26-accent-2), var(--wc26-accent));
	box-shadow: 0 6px 14px -6px var(--wc26-glow);
}

.wc26-f-top {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	padding-bottom: 10px;
	margin-bottom: 11px;
	border-bottom: 1px solid var(--wc26-line);
}

.wc26-fstage {
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wc26-accent);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.wc26-ftime {
	flex: none;
	font-family: var(--wc26-font-d);
	font-size: 1.06rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	color: var(--wc26-ink);
}

.wc26-tbc {
	display: inline-block;
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	padding: 3px 9px;
	border-radius: 999px;
	background: var(--wc26-gold-soft);
	color: var(--wc26-gold);
	border: 1px solid rgba(242, 178, 28, 0.45);
}

.wc26-fteams {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.wc26-fteam {
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
	font-weight: 750;
	font-size: 0.94rem;
	color: var(--wc26-ink);
}

.wc26-fteam span:not(.wc26-flag) { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.wc26-fteam + .wc26-fteam { padding-top: 8px; border-top: 1px dashed var(--wc26-line); }

.wc26-fmeta {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 7px;
	margin-top: 11px;
	padding-top: 9px;
	border-top: 1px solid var(--wc26-line);
	font-size: 0.7rem;
	color: var(--wc26-muted);
}

.wc26-fmeta > * + *::before { content: "·"; margin-right: 7px; color: var(--wc26-faint); }

.wc26-fnote { color: var(--wc26-gold); font-weight: 650; }

/* Flags (emoji) */
.wc26-flag { flex: none; font-size: 1.12rem; line-height: 1; transform: translateY(1px); }

/* ------------------------------------------------- empty / skeleton / btn */

.wc26-empty {
	text-align: center;
	padding: 44px 20px;
	border: 1.5px dashed var(--wc26-line);
	border-radius: var(--wc26-r);
	color: var(--wc26-muted);
	background: var(--wc26-soft-2);
}

.wc26-empty p { margin: 0 0 14px; }
.wc26-empty p:last-child { margin-bottom: 0; }

.wc26-btn {
	display: inline-block;
	padding: 10px 20px;
	border: 0;
	border-radius: 999px;
	background: var(--wc26-ink);
	color: var(--wc26-bg) !important;
	font-size: 0.84rem;
	font-weight: 750;
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.wc26-btn:hover { background: var(--wc26-accent); color: #fff !important; text-decoration: none; transform: translateY(-1px); }

.wc26-more { text-align: center; margin-top: 22px; }

.wc26-skeleton { display: grid; gap: 12px; }

.wc26-skeleton span {
	display: block;
	height: 72px;
	border-radius: var(--wc26-r);
	background: linear-gradient(100deg, var(--wc26-soft) 40%, var(--wc26-soft-2) 50%, var(--wc26-soft) 60%);
	background-size: 200% 100%;
	animation: wc26-shimmer 1.3s linear infinite;
}

@keyframes wc26-shimmer {
	to { background-position: -200% 0; }
}

/* --------------------------------------------------------------- ad slot */

.wc26-adslot { padding: 20px 0; text-align: center; }

.wc26-adslot .wc26-container > * { margin-inline: auto; }

.wc26-adslot-label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--wc26-faint);
}

.wc26-adslot-below_live { background: var(--wc26-soft-2); border-bottom: 1px solid var(--wc26-line); }
.wc26-adslot-above_footer { border-top: 1px solid var(--wc26-line); }

/* ---------------------------------------------------------------- footer */

.wc26-footer {
	margin-top: auto;
	background: linear-gradient(180deg, var(--wc26-c1), var(--wc26-c0));
	border-top: 1px solid var(--wc26-cline);
	color: var(--wc26-cmut);
	padding: 34px 0 30px;
	position: relative;
}

.wc26-footer::before {
	content: "";
	position: absolute;
	inset: -1px 0 auto 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--wc26-accent) 50%, transparent);
	opacity: 0.7;
}

.wc26-footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
}

.wc26-brand-foot .wc26-brand-orb { width: 26px; height: 26px; }
.wc26-brand-foot .wc26-brand-word { font-size: 1rem; }

.wc26-footer-text { margin: 0; font-size: 0.82rem; max-width: 560px; }

.wc26-footer-meta {
	margin: 0;
	font-size: 0.7rem;
	color: var(--wc26-cfnt);
	font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------- back top */

.wc26-top {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 70;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--wc26-cline);
	background: var(--wc26-c2);
	color: var(--wc26-cink);
	font-size: 1.1rem;
	box-shadow: var(--wc26-sh-pop);
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.wc26-top:hover { background: var(--wc26-accent); transform: translateY(-3px); }

/* --------------------------------------------------------------- embeds */

.wc26-app.is-embed .wc26-topbar { position: static; }
.wc26-app.is-embed .wc26-stage,
.wc26-app.is-embed .wc26-pulse { border-radius: var(--wc26-r-lg); }
.wc26-app.is-embed [data-wc26-section] { scroll-margin-top: 16px; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 1020px) {
	.wc26-stage-grid { grid-template-columns: minmax(0, 1fr); }

	/* Sidebar tucks under the player, side-by-side where it fits. */
	.wc26-stage-side {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		align-items: start;
	}

	.wc26-live-srcs { max-height: 236px; }
}

@media (max-width: 900px) {
	.wc26-updated { display: none; }
	.wc26-brand-tag { max-width: 170px; }
}

/* Mobile: the nav becomes an app-style bottom dock. */
@media (max-width: 760px) {
	.wc26-topbar-inner { grid-template-columns: auto 1fr; gap: 10px; }
	.wc26-utils { justify-self: end; }

	/* backdrop-filter on an ancestor would turn it into the containing
	   block for the fixed dock below — use a solid bar on phones instead. */
	.wc26-app:not(.is-embed) .wc26-topbar {
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		background: var(--wc26-c1);
	}

	.wc26-app:not(.is-embed) .wc26-nav {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 90;
		background: color-mix(in srgb, var(--wc26-c1) 90%, transparent);
		-webkit-backdrop-filter: blur(18px) saturate(1.5);
		backdrop-filter: blur(18px) saturate(1.5);
		border-top: 1px solid var(--wc26-cline);
		padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px));
	}

	@supports not (color: color-mix(in srgb, red, blue)) {
		.wc26-app:not(.is-embed) .wc26-nav { background: var(--wc26-c1); }
	}

	.wc26-app:not(.is-embed) .wc26-nav-links {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: 1fr;
		gap: 2px;
		padding: 0;
		background: transparent;
		border: 0;
		border-radius: 0;
		overflow: visible;
	}

	.wc26-app:not(.is-embed) .wc26-nav-links a {
		flex-direction: column;
		justify-content: center;
		gap: 3px;
		padding: 7px 4px 6px;
		border-radius: 12px;
		font-size: 0.62rem;
		font-weight: 750;
		letter-spacing: 0.01em;
	}

	.wc26-app:not(.is-embed) .wc26-nav-links a.is-active {
		background: var(--wc26-accent-soft);
		color: var(--wc26-accent-2);
		box-shadow: none;
	}

	.wc26-app:not(.is-embed) .wc26-ni svg { width: 21px; height: 21px; }

	/* Clear the dock. */
	.wc26-app:not(.is-embed) .wc26-footer { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
	.wc26-app:not(.is-embed) .wc26-top { bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }

	.wc26-fixture-tools { top: calc(var(--wc26-tb) + 4px); padding: 8px; }
	.wc26-stage-head { margin-bottom: 14px; }
	.wc26-chip-count { order: 3; flex: 1 1 100%; text-align: center; }
}

@media (max-width: 480px) {
	.wc26-brand-tag { display: none; }
	.wc26-brand-orb { width: 28px; height: 28px; }
	.wc26-brand-word { font-size: 1.06rem; }
	.wc26-tzchip { font-size: 0.62rem; padding: 4px 9px; max-width: 46vw; overflow: hidden; text-overflow: ellipsis; }
	.wc26-results, .wc26-flist { grid-template-columns: 1fr; }
	.wc26-groups { grid-template-columns: 1fr; }
	.wc26-stage-titles h2 { font-size: 1.18rem; }
	.wc26-live-badge { padding: 6px 10px; font-size: 0.66rem; }
}

/* ----------------------------------------------------------------- print */

@media print {
	.wc26-topbar, .wc26-nav, .wc26-top, .wc26-fixture-tools, .wc26-srcpanel { display: none !important; }
	.wc26-stage { background: none; color: #000; }
}
