/* =========================================================================
   WC2026 — modern sports hub design
   Tokens: --wc26-brand #c65a22 · --wc26-fifa-navy #020f2a · --wc26-live #22c55e
   ========================================================================= */

.wc26-hub {
	padding: 0 0 40px;
	color: var(--wc26-ink, #111827);
}

/* On mobile the Jannah `.container` collapses to full width with no gutters,
   so plugin content collides with the screen edges. Restore safe side
   breathing room using logical padding (RTL-aware) + the iOS safe-area inset. */
@media (max-width: 768px) {
	.wc26-scope.wc26-hub {
		padding-inline-start: max(16px, env(safe-area-inset-left));
		padding-inline-end: max(16px, env(safe-area-inset-right));
	}
}

@media (max-width: 480px) {
	.wc26-scope.wc26-hub {
		padding-inline-start: max(14px, env(safe-area-inset-left));
		padding-inline-end: max(14px, env(safe-area-inset-right));
	}
}

.wc26-page-header {
	margin-bottom: 14px;
}

.wc26-page__title {
	font-size: 1.6rem;
	font-weight: 800;
	margin: 0 0 12px;
	line-height: 1.25;
	color: var(--wc26-ink, #111827);
}

.wc26-page__intro {
	color: var(--wc26-muted, #4b5563);
	margin: 0 0 20px;
	line-height: 1.75;
	font-size: 1rem;
}

.wc26-section {
	margin: 32px 0;
}

.wc26-section-title {
	font-size: 1.15rem;
	font-weight: 700;
	margin: 22px 0 12px;
	color: var(--wc26-ink, #111827);
}

.wc26-section-meta {
	color: var(--wc26-muted, #6b7280);
	font-size: 0.85rem;
	font-weight: 400;
}

.wc26-section-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 16px;
	flex-wrap: wrap;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(0, 0, 0, 0.06);
	position: relative;
}

.wc26-section-header::after {
	content: "";
	position: absolute;
	bottom: -2px;
	inset-inline-start: 0;
	width: 60px;
	height: 2px;
	background: var(--wc26-brand);
}

.wc26-section-header__eyebrow {
	display: block;
	color: var(--wc26-brand);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.wc26-section-header__title {
	font-size: 1.3rem;
	margin: 0;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.wc26-section-header__cta {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--wc26-brand);
	text-decoration: none;
	transition: gap 0.15s, color 0.15s;
}

.wc26-section-header__cta:hover,
.wc26-section-header__cta:focus {
	color: var(--wc26-brand-dark, #9e451a);
	text-decoration: underline;
}

.wc26-section--live {
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.02));
	border: 1px solid rgba(34, 197, 94, 0.35);
	border-radius: var(--wc26-radius-lg, 14px);
	padding: 18px 20px;
	box-shadow: 0 8px 24px rgba(34, 197, 94, 0.1);
}

/* =========================================================================
   Hub hero — bold, prominent, modern
   ========================================================================= */

.wc26-hub-hero {
	margin: 0 0 28px;
	container-type: inline-size;
	container-name: wc26-hero;
}

.wc26-hero {
	display: block;
	background:
		radial-gradient(circle at 80% -10%, rgba(198, 90, 34, 0.55), transparent 55%),
		radial-gradient(circle at 10% 110%, rgba(2, 15, 42, 0.6), transparent 50%),
		linear-gradient(135deg, #020f2a 0%, #0a1c4a 60%, #1a2f6b 100%);
	color: #fff;
	border-radius: 18px;
	padding: 28px 24px 22px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 16px 50px rgba(2, 15, 42, 0.35);
	width: 100%;
	box-sizing: border-box;
}

.wc26-hero__decoration {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 70%);
	-webkit-mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 70%);
	pointer-events: none;
}

/* Vertical-by-default layout. The hero is rendered inside a Jannah column
   that may be as narrow as ~480px, which is too tight to fit logo + copy +
   countdown side-by-side. We use a container query (not viewport media query)
   to upgrade to a 3-col grid only when the hero card itself has enough room. */

.wc26-hero__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 18px;
	position: relative;
	z-index: 1;
	width: 100%;
	box-sizing: border-box;
}

.wc26-hero__logo {
	display: flex;
	justify-content: flex-start;
}

.wc26-hero__logo .wc26-logo__img {
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
	width: 64px;
	height: auto;
}

.wc26-hero__copy {
	min-width: 0;
}

@container wc26-hero (min-width: 720px) {
	.wc26-hero__inner {
		display: grid;
		grid-template-columns: 96px minmax(0, 1fr) auto;
		align-items: center;
		gap: 24px;
	}
	.wc26-hero__logo {
		justify-content: center;
	}
	.wc26-hero__logo .wc26-logo__img {
		width: 96px;
	}
}

.wc26-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(198, 90, 34, 0.92);
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	margin-bottom: 14px;
	color: #fff;
}

.wc26-hero__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.wc26-hero__title {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 900;
	margin: 0 0 6px;
	color: #fff;
	letter-spacing: -0.02em;
	line-height: 1.1;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.wc26-hero__subtitle {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 10px;
	font-weight: 500;
}

.wc26-hero__intro {
	color: rgba(255, 255, 255, 0.72);
	margin: 0 0 18px;
	line-height: 1.75;
	max-width: 60ch;
	font-size: 0.95rem;
}

.wc26-hero__cta-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.wc26-hero__countdown-wrap {
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
}

/* Stats — flex pill strip that wraps cleanly and never truncates labels. */
.wc26-hero__stats {
	list-style: none;
	margin: 18px 0 0;
	padding: 16px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	position: relative;
	z-index: 1;
}

.wc26-hero__stats li {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: baseline;
	gap: 6px;
	padding: 8px 14px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	white-space: nowrap;
	justify-content: center;
}

.wc26-hero__stat-num {
	color: #fff;
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.wc26-hero__stat-label {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.82rem;
	font-weight: 500;
}

@container wc26-hero (min-width: 720px) {
	.wc26-hero__stats {
		justify-content: space-between;
	}
	.wc26-hero__stat-num {
		font-size: 1.3rem;
	}
}

@media (max-width: 480px) {
	.wc26-hero__stats li {
		padding: 6px 10px;
	}
	.wc26-hero__stat-num {
		font-size: 1rem;
	}
	.wc26-hero__stat-label {
		font-size: 0.75rem;
	}
}

/* =========================================================================
   Countdown
   ========================================================================= */

.wc26-countdown {
	display: inline-flex;
	flex-direction: column;
	gap: 8px;
}

.wc26-countdown__label {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.78rem;
	letter-spacing: 0.02em;
}

.wc26-countdown__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.wc26-countdown__cell {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 12px;
	padding: 10px 14px;
	min-width: 72px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.wc26-countdown__num {
	font-size: 1.8rem;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.wc26-countdown__unit {
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 4px;
}

.wc26-countdown--ended .wc26-countdown__grid {
	display: none;
}

.wc26-countdown__status {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
}

.wc26-countdown__status-sub {
	margin: 4px 0 0;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.35;
}

.wc26-countdown--live .wc26-countdown__status {
	color: #ff6b6b;
}

.wc26-countdown--live .wc26-countdown__status::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ff3b3b;
	margin-inline-end: 8px;
	vertical-align: middle;
	animation: wc26-pulse 1.4s ease-in-out infinite;
}

.wc26-countdown--side .wc26-countdown__status {
	color: var(--wc26-ink, #111827);
	font-size: 1.05rem;
}

.wc26-countdown--side .wc26-countdown__status-sub {
	color: var(--wc26-muted, #6b7280);
}

.wc26-countdown--side.wc26-countdown--live .wc26-countdown__status {
	color: #c65a22;
}

@keyframes wc26-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.55; transform: scale(0.85); }
}

.wc26-countdown--side {
	width: 100%;
}

.wc26-countdown--side .wc26-countdown__label {
	color: var(--wc26-muted, #6b7280);
}

.wc26-countdown--side .wc26-countdown__cell {
	background: linear-gradient(135deg, #020f2a, #0a1c4a);
	border-color: rgba(0, 0, 0, 0.08);
}

/* =========================================================================
   Buttons
   ========================================================================= */

.wc26-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 44px;
	padding: 0 20px;
	border-radius: 10px;
	font-weight: 700;
	text-decoration: none;
	border: 1px solid transparent;
	transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.15s, box-shadow 0.18s;
	font-size: 0.95rem;
	letter-spacing: -0.005em;
}

.wc26-btn--lg {
	min-height: 48px;
	padding: 0 24px;
	font-size: 1rem;
}

.wc26-btn--primary {
	background: var(--wc26-brand, #c65a22);
	color: #fff;
	box-shadow: 0 6px 18px rgba(198, 90, 34, 0.35);
}

.wc26-btn--primary:hover,
.wc26-btn--primary:focus {
	background: var(--wc26-brand-dark, #9e451a);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(198, 90, 34, 0.45);
}

.wc26-btn--outline {
	background: transparent;
	border-color: var(--wc26-brand, #c65a22);
	color: var(--wc26-brand, #c65a22);
}

.wc26-btn--outline:hover,
.wc26-btn--outline:focus {
	background: rgba(198, 90, 34, 0.08);
}

.wc26-btn--ghost {
	color: var(--wc26-ink, #111827);
	border-color: rgba(0, 0, 0, 0.12);
}

.wc26-btn--ghost:hover,
.wc26-btn--ghost:focus {
	border-color: var(--wc26-brand);
	color: var(--wc26-brand);
}

.wc26-btn--ghost-light {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(6px);
}

.wc26-btn--ghost-light:hover,
.wc26-btn--ghost-light:focus {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.6);
	color: #fff;
}

.wc26-btn--secondary {
	background: transparent;
	border-color: var(--wc26-brand);
	color: var(--wc26-brand);
}

.wc26-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 20px 0 0;
}

/* =========================================================================
   Pre-tournament card (used on hub / fixtures / today / etc.)
   ========================================================================= */

.wc26-pre-card {
	background: linear-gradient(135deg, #fff 0%, #f9fafb 100%);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	padding: 24px 26px;
	margin: 0 0 24px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
	position: relative;
	overflow: hidden;
}

.wc26-pre-card::before {
	content: "";
	position: absolute;
	top: 0;
	inset-inline-start: 0;
	width: 4px;
	height: 100%;
	background: var(--wc26-brand);
}

.wc26-pre-card__eyebrow {
	display: inline-block;
	background: rgba(198, 90, 34, 0.12);
	color: var(--wc26-brand);
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.wc26-pre-card h2 {
	font-size: 1.4rem;
	margin: 0 0 10px;
	font-weight: 800;
	color: var(--wc26-ink, #111827);
}

.wc26-pre-card p {
	color: var(--wc26-muted, #4b5563);
	line-height: 1.75;
	margin: 0 0 10px;
}

.wc26-key-dates {
	list-style: none;
	padding: 0;
	margin: 12px 0;
	display: grid;
	gap: 6px;
}

.wc26-key-dates li {
	padding: 8px 12px;
	background: rgba(0, 0, 0, 0.03);
	border-radius: 8px;
	font-size: 0.9rem;
	border-inline-start: 3px solid var(--wc26-brand);
}

.wc26-key-dates strong {
	color: var(--wc26-brand);
	margin-inline-end: 6px;
}

.wc26-pre-card__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

/* =========================================================================
   Sub-nav (sticky pill bar)
   ========================================================================= */

.wc26-subnav {
	margin: 0 0 24px;
	display: flex;
	gap: 8px;
	overflow-x: auto;
	scrollbar-width: none;
	padding: 4px 0;
}

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

.wc26-subnav__link {
	flex: 0 0 auto;
	padding: 10px 16px;
	border-radius: 999px;
	background: #f3f4f6;
	color: var(--wc26-ink, #111827);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
}

.wc26-subnav__link:hover,
.wc26-subnav__link:focus {
	background: #fff;
	color: var(--wc26-brand);
	border-color: var(--wc26-brand);
	outline: none;
	transform: translateY(-1px);
}

/* =========================================================================
   Match card (new modernized layout)
   ========================================================================= */

.wc26-match-list {
	display: grid;
	gap: 10px;
}

.wc26-match-list--compact {
	gap: 6px;
}

.wc26-match-card {
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 10px;
	padding: 14px 16px;
	background: #fff;
	border-radius: 14px;
	text-decoration: none;
	color: inherit;
	border: 1px solid rgba(0, 0, 0, 0.07);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
	transition: border-color 0.18s, transform 0.15s, box-shadow 0.18s;
}

.wc26-match-card:hover,
.wc26-match-card:focus {
	border-color: var(--wc26-brand);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.wc26-match-card--live {
	background: linear-gradient(135deg, #fff 0%, rgba(34, 197, 94, 0.05) 100%);
	border-color: rgba(34, 197, 94, 0.4);
}

.wc26-match-card--live::before {
	content: "";
	position: absolute;
	width: 4px;
}

.wc26-match-card--ended {
	background: #fafafa;
}

.wc26-match-card__meta {
	display: flex;
	gap: 10px;
	align-items: center;
	font-size: 0.78rem;
	color: var(--wc26-muted, #6b7280);
	font-weight: 600;
}

.wc26-match-card__date::before {
	content: "📅 ";
	margin-inline-end: 2px;
}

.wc26-match-card__time {
	color: var(--wc26-brand);
}

.wc26-match-card__group {
	margin-inline-start: auto;
	padding: 2px 8px;
	background: rgba(198, 90, 34, 0.1);
	color: var(--wc26-brand);
	border-radius: 6px;
	font-size: 0.72rem;
}

.wc26-match-card__teams {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 12px;
	padding: 6px 0;
}

.wc26-match-card__team {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.wc26-match-card__team--away {
	justify-content: flex-end;
}

.wc26-match-card__flag {
	border-radius: 4px;
	flex-shrink: 0;
	object-fit: cover;
}

.wc26-match-card__name {
	font-weight: 700;
	font-size: 1.02rem;
	color: var(--wc26-ink, #111827);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.wc26-match-card__score {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--wc26-ink, #111827);
	font-variant-numeric: tabular-nums;
	padding: 4px 12px;
	background: rgba(0, 0, 0, 0.04);
	border-radius: 10px;
	min-width: 70px;
	justify-content: center;
}

.wc26-match-card--live .wc26-match-card__score {
	background: rgba(34, 197, 94, 0.15);
	color: #064e3b;
}

.wc26-match-card__score span {
	color: var(--wc26-muted, #9ca3af);
	font-weight: 400;
}

.wc26-match-card__vs {
	font-size: 1rem;
	color: var(--wc26-muted, #9ca3af);
	font-weight: 700;
	letter-spacing: 0.1em;
}

.wc26-match-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding-top: 8px;
	border-top: 1px dashed rgba(0, 0, 0, 0.08);
	font-size: 0.78rem;
	flex-wrap: wrap;
}

.wc26-match-card__venue {
	color: var(--wc26-muted, #6b7280);
}

.wc26-match-card__venue::before {
	content: "🏟️ ";
	margin-inline-end: 2px;
}

/* Single match page: venue + where-to-watch blocks */
.wc26-page--match .wc26-page__title--match {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--wc26-muted, #6b7280);
	margin-bottom: 14px;
}

.wc26-match-hero {
	margin: 0 0 24px;
	padding: 22px 20px 18px;
	border-radius: 18px;
	background: linear-gradient(145deg, #0d1014 0%, #12151a 55%, #1a2030 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
	color: #f3f4f6;
}

.wc26-match-hero--live {
	border-color: rgba(34, 197, 94, 0.55);
	box-shadow: 0 16px 40px rgba(34, 197, 94, 0.12);
}

.wc26-match-hero--ended {
	border-color: rgba(255, 255, 255, 0.14);
}

.wc26-match-hero__top {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}

.wc26-match-hero__pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.wc26-match-hero__pill--live {
	background: rgba(34, 197, 94, 0.18);
	color: #86efac;
	border: 1px solid rgba(34, 197, 94, 0.45);
}

.wc26-match-hero__pill--ended {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.85);
}

.wc26-match-hero__pill--upcoming {
	background: rgba(198, 90, 34, 0.18);
	color: #fdba74;
	border: 1px solid rgba(198, 90, 34, 0.35);
}

.wc26-match-hero__pill--group {
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.75);
}

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

.wc26-match-hero__team {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
	min-width: 0;
}

.wc26-match-hero__team--away {
	direction: ltr;
}

.wc26-match-hero__flag {
	width: 56px;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.wc26-match-hero__name {
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.3;
	color: #fff;
	text-decoration: none;
}

a.wc26-match-hero__name:hover,
a.wc26-match-hero__name:focus {
	color: var(--wc26-brand, #c65a22);
}

.wc26-match-hero__score {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 120px;
	padding: 12px 18px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.wc26-match-hero--live .wc26-match-hero__score {
	background: rgba(34, 197, 94, 0.12);
	border-color: rgba(34, 197, 94, 0.35);
}

.wc26-match-hero__score-num {
	font-size: clamp(2.4rem, 8vw, 3.4rem);
	font-weight: 900;
	line-height: 1;
	font-variant-numeric: tabular-nums;
	color: #fff;
}

.wc26-match-hero__score-sep {
	font-size: clamp(1.8rem, 5vw, 2.4rem);
	font-weight: 300;
	color: rgba(255, 255, 255, 0.55);
}

.wc26-match-hero__kickoff {
	font-size: clamp(1.6rem, 5vw, 2.2rem);
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	color: #fff;
}

.wc26-match-hero__vs {
	font-size: 0.85rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
}

.wc26-match-hero__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 16px 0 0;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.65);
	font-weight: 600;
}

.wc26-match-meta {
	color: var(--wc26-muted, #6b7280);
	font-weight: 600;
}

.wc26-match-venue,
.wc26-match-watch {
	margin-top: 22px;
	padding: 18px 20px;
	border: 1px solid var(--wc26-border, #e5e7eb);
	border-radius: 14px;
	background: var(--wc26-surface, #fff);
}

.wc26-match-venue h2,
.wc26-match-watch h2 {
	margin: 0 0 12px;
	font-size: 1.15rem;
}

.wc26-match-venue__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.wc26-match-venue__list li {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: baseline;
}

.wc26-match-venue__label {
	font-weight: 700;
	color: var(--wc26-muted, #6b7280);
	min-width: 64px;
}

.wc26-match-venue__country {
	color: var(--wc26-muted, #6b7280);
}

.wc26-match-venue a {
	font-weight: 700;
	color: var(--wc26-brand, #0b6e4f);
}

.wc26-match-intro {
	font-size: 1.02rem;
	line-height: 1.9;
	color: var(--wc26-text, #1f2937);
}

/* Per-country kickoff times: mobile-first card grid (replaces the table) */
.wc26-tz-cards {
	list-style: none;
	margin: 0 0 14px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 10px;
}

.wc26-tz-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 14px 10px;
	border: 1px solid var(--wc26-border, #e5e7eb);
	border-radius: 14px;
	background: var(--wc26-surface, #fff);
	text-align: center;
}

.wc26-tz-card__country {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--wc26-text, #1f2937);
}

.wc26-tz-card__time {
	font-size: 1.6rem;
	font-weight: 800;
	line-height: 1.1;
	color: var(--wc26-brand, #0b6e4f);
	font-variant-numeric: tabular-nums;
}

.wc26-tz-card__meta {
	font-size: 0.78rem;
	color: var(--wc26-muted, #6b7280);
}

@media (max-width: 480px) {
	.wc26-tz-cards {
		grid-template-columns: repeat(2, 1fr);
	}
	.wc26-tz-card__time {
		font-size: 1.45rem;
	}
}

body.dark-skin .wc26-tz-card,
body.dark .wc26-tz-card {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.12);
}

body.dark-skin .wc26-tz-card__country,
body.dark .wc26-tz-card__country {
	color: #e5e7eb;
}

/* Timezone page: matches grouped by local day as tappable rows */
.wc26-tz-day {
	margin-top: 18px;
}

.wc26-tz-day__title {
	font-size: 1.05rem;
	margin: 0 0 10px;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--wc26-brand, #0b6e4f);
	display: inline-block;
}

.wc26-tz-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.wc26-tz-row__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid var(--wc26-border, #e5e7eb);
	border-radius: 12px;
	background: var(--wc26-surface, #fff);
	text-decoration: none;
	color: var(--wc26-text, #1f2937);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

a.wc26-tz-row__inner:hover {
	border-color: var(--wc26-brand, #0b6e4f);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.wc26-tz-row__teams {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.wc26-tz-row__flag {
	border-radius: 3px;
	flex: 0 0 auto;
}

.wc26-tz-row__name {
	font-weight: 700;
	font-size: 0.95rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.wc26-tz-row__time {
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--wc26-brand, #0b6e4f);
	font-variant-numeric: tabular-nums;
	flex: 0 0 auto;
}

body.dark-skin .wc26-tz-row__inner,
body.dark .wc26-tz-row__inner {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.12);
	color: #e5e7eb;
}

/* Satellite frequencies: card per satellite (replaces the 7-col table) */
.wc26-sat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 14px;
	margin: 14px 0;
}

.wc26-sat-card {
	border: 1px solid var(--wc26-border, #e5e7eb);
	border-radius: 14px;
	background: var(--wc26-surface, #fff);
	overflow: hidden;
}

.wc26-sat-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 10px 14px;
	background: var(--wc26-brand, #0b6e4f);
	color: #fff;
}

.wc26-sat-card__name {
	font-weight: 800;
	font-size: 0.98rem;
}

.wc26-sat-card__pos {
	font-size: 0.82rem;
	font-weight: 700;
	background: rgba(255, 255, 255, 0.2);
	padding: 2px 8px;
	border-radius: 999px;
}

.wc26-sat-card__channels {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wc26-sat-ch {
	padding: 10px 14px;
	border-top: 1px solid var(--wc26-border, #eef0f2);
}

.wc26-sat-ch:first-child {
	border-top: 0;
}

.wc26-sat-ch__top {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 6px;
}

.wc26-sat-ch__name {
	font-weight: 700;
	font-size: 0.95rem;
}

.wc26-sat-ch__lang {
	font-size: 0.75rem;
	color: var(--wc26-muted, #6b7280);
	white-space: nowrap;
}

.wc26-sat-ch__specs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.wc26-spec {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 9px;
	border-radius: 8px;
	background: #f3f4f6;
	font-size: 0.8rem;
	font-variant-numeric: tabular-nums;
}

.wc26-spec__k {
	font-size: 0.68rem;
	color: var(--wc26-muted, #6b7280);
	font-weight: 700;
}

.wc26-spec__v {
	font-weight: 800;
	color: var(--wc26-text, #1f2937);
}

body.dark-skin .wc26-sat-card,
body.dark .wc26-sat-card {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.12);
}

body.dark-skin .wc26-sat-ch,
body.dark .wc26-sat-ch {
	border-top-color: rgba(255, 255, 255, 0.08);
}

body.dark-skin .wc26-sat-ch__name,
body.dark .wc26-sat-ch__name {
	color: #e5e7eb;
}

body.dark-skin .wc26-spec,
body.dark .wc26-spec {
	background: rgba(255, 255, 255, 0.08);
}

body.dark-skin .wc26-spec__v,
body.dark .wc26-spec__v {
	color: #e5e7eb;
}

.wc26-chip {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid var(--wc26-border, #e5e7eb);
	background: var(--wc26-surface, #fff);
	color: var(--wc26-brand, #0b6e4f);
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.wc26-chip:hover {
	background: var(--wc26-brand, #0b6e4f);
	color: #fff;
	border-color: var(--wc26-brand, #0b6e4f);
}

body.dark-skin .wc26-chip,
body.dark .wc26-chip {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.12);
	color: #e5e7eb;
}

.wc26-status-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.75rem;
	padding: 4px 10px;
	border-radius: 999px;
	background: #f3f4f6;
	color: var(--wc26-muted, #6b7280);
	font-weight: 700;
}

.wc26-status-badge--live {
	color: #064e3b;
	background: rgba(34, 197, 94, 0.2);
	border: 1px solid rgba(34, 197, 94, 0.4);
}

.wc26-status-badge--ended {
	color: #6b7280;
	background: #e5e7eb;
}

.wc26-status-badge--upcoming {
	color: var(--wc26-brand);
	background: rgba(198, 90, 34, 0.1);
}

.wc26-status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #16a34a;
	box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
	animation: wc26-pulse 2s ease-in-out infinite;
}

@keyframes wc26-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

@media (prefers-reduced-motion: reduce) {
	.wc26-status-dot { animation: none; }
}

@media (max-width: 575px) {
	.wc26-match-hero {
		padding: 18px 14px 14px;
	}

	.wc26-match-hero__board {
		gap: 8px;
	}

	.wc26-match-hero__flag {
		width: 44px;
	}

	.wc26-match-hero__name {
		font-size: 0.82rem;
	}

	.wc26-match-hero__score {
		min-width: 96px;
		padding: 10px 12px;
	}

	.wc26-match-card__name {
		font-size: 0.92rem;
	}
	.wc26-match-card__score {
		font-size: 1.25rem;
		min-width: 60px;
	}
}

/* =========================================================================
   Groups strip — mini cards with flag-bearing rows
   ========================================================================= */

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

.wc26-group-card-mini {
	display: block;
	padding: 0;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 14px;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
	transition: border-color 0.18s, transform 0.15s, box-shadow 0.18s;
	position: relative;
}

.wc26-group-card-mini:hover,
.wc26-group-card-mini:focus {
	border-color: var(--wc26-brand);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.wc26-group-card-mini__header {
	background: linear-gradient(135deg, #020f2a, #0a1c4a);
	color: #fff;
	padding: 12px 14px;
	position: relative;
	overflow: hidden;
}

.wc26-group-card-mini__letter-bg {
	position: absolute;
	top: -10px;
	inset-inline-end: -6px;
	font-size: 4rem;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.08);
	line-height: 1;
	pointer-events: none;
}

.wc26-group-card-mini__title {
	display: block;
	font-size: 0.95rem;
	font-weight: 800;
	position: relative;
	z-index: 1;
}

.wc26-group-card-mini__teams {
	list-style: none;
	margin: 0;
	padding: 8px 12px;
	display: grid;
	gap: 4px;
}

.wc26-group-card-mini__teams li {
	display: grid;
	grid-template-columns: 22px 22px 1fr auto;
	gap: 8px;
	font-size: 0.88rem;
	align-items: center;
	padding: 4px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.wc26-group-card-mini__teams li:last-child {
	border-bottom: none;
}

.wc26-group-card-mini__rank {
	color: var(--wc26-muted);
	font-weight: 700;
	font-size: 0.8rem;
	width: 22px;
}

.wc26-group-card-mini__flag {
	border-radius: 3px;
	object-fit: cover;
	background: #f3f4f6;
}

.wc26-group-card-mini__team {
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.wc26-group-card-mini__pts {
	font-weight: 800;
	color: var(--wc26-brand);
	font-variant-numeric: tabular-nums;
}

.wc26-group-card-mini__empty-msg {
	display: block;
	padding: 16px 14px;
	color: var(--wc26-muted);
	font-size: 0.85rem;
	font-style: italic;
	text-align: center;
}

.wc26-group-card-mini--empty .wc26-group-card-mini__header {
	background: linear-gradient(135deg, #6b7280, #374151);
}

/* Full standings table */
.wc26-standings {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.07);
	font-size: 0.9rem;
}

.wc26-standings th,
.wc26-standings td {
	padding: 12px 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	text-align: center;
}

.wc26-standings th {
	background: #f9fafb;
	font-weight: 700;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--wc26-muted);
}

.wc26-standings tbody tr:last-child td {
	border-bottom: none;
}

.wc26-standings tbody tr:hover {
	background: rgba(198, 90, 34, 0.03);
}

.wc26-standings__row--qualified {
	background: rgba(34, 197, 94, 0.05);
}

.wc26-standings__row--qualified td:first-child::before {
	content: "✓ ";
	color: #16a34a;
}

.wc26-standings img {
	border-radius: 3px;
	margin-inline-end: 6px;
	vertical-align: middle;
}

/* =========================================================================
   Arab teams (modern flag cards)
   ========================================================================= */

.wc26-arab-teams {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 12px;
}

.wc26-arab-team-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 12px;
	color: inherit;
	text-decoration: none;
	transition: border-color 0.18s, transform 0.15s, box-shadow 0.18s;
	position: relative;
	overflow: hidden;
}

.wc26-arab-team-card:hover,
.wc26-arab-team-card:focus {
	border-color: var(--wc26-brand);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.wc26-arab-team-card__flag {
	border-radius: 4px;
	object-fit: cover;
	flex-shrink: 0;
}

.wc26-arab-team-card__name {
	font-weight: 700;
	font-size: 0.95rem;
}

.wc26-arab-team-card--feature {
	background: linear-gradient(135deg, #fff 0%, rgba(198, 90, 34, 0.06) 100%);
	border-color: rgba(198, 90, 34, 0.35);
}

.wc26-arab-team-card__pin {
	position: absolute;
	top: 8px;
	inset-inline-end: 8px;
	background: var(--wc26-brand);
	color: #fff;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.04em;
}

/* Teams grid (groups page) */
.wc26-teams-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 10px;
}

.wc26-team-card {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 10px;
	text-decoration: none;
	color: inherit;
	font-size: 0.92rem;
	font-weight: 600;
	transition: border-color 0.18s, transform 0.15s;
}

.wc26-team-card:hover,
.wc26-team-card:focus {
	border-color: var(--wc26-brand);
	transform: translateY(-1px);
}

.wc26-team-card img {
	border-radius: 3px;
	flex-shrink: 0;
	object-fit: cover;
}

/* =========================================================================
   News strip
   ========================================================================= */

.wc26-news-strip {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 16px;
}

.wc26-news-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 14px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}

.wc26-news-card:hover,
.wc26-news-card:focus {
	border-color: var(--wc26-brand);
	transform: translateY(-3px);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.wc26-news-card__thumb {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #f3f4f6;
}

.wc26-news-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.wc26-news-card:hover .wc26-news-card__thumb img {
	transform: scale(1.06);
}

.wc26-news-card__body {
	padding: 14px;
}

.wc26-news-card__meta {
	color: var(--wc26-muted);
	font-size: 0.75rem;
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
}

.wc26-news-card__title {
	font-size: 0.98rem;
	margin: 0;
	line-height: 1.45;
	font-weight: 700;
	color: var(--wc26-ink, #111827);
}

/* =========================================================================
   Quicklinks grid
   ========================================================================= */

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

.wc26-quicklink-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 18px;
	background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 14px;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.18s, transform 0.15s, box-shadow 0.18s;
	position: relative;
}

.wc26-quicklink-card:hover,
.wc26-quicklink-card:focus {
	border-color: var(--wc26-brand);
	transform: translateY(-3px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.wc26-quicklink-card__icon {
	font-size: 1.7rem;
	margin-bottom: 4px;
	display: inline-block;
}

.wc26-quicklink-card strong {
	display: block;
	font-size: 1.02rem;
	color: var(--wc26-ink, #111827);
	font-weight: 800;
}

.wc26-quicklink-card span:not(.wc26-quicklink-card__icon) {
	color: var(--wc26-muted);
	font-size: 0.85rem;
	line-height: 1.55;
}

/* =========================================================================
   Broadcast / Cities / Format / Facts
   ========================================================================= */

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

.wc26-broadcast-card,
.wc26-city-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 14px;
	padding: 16px;
	transition: border-color 0.18s, transform 0.15s, box-shadow 0.18s;
}

.wc26-broadcast-card:hover,
.wc26-city-card:hover {
	border-color: var(--wc26-brand);
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.wc26-broadcast-card header,
.wc26-city-card header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 8px;
	flex-wrap: wrap;
}

.wc26-broadcast-card strong,
.wc26-city-card strong {
	font-size: 1.05rem;
	font-weight: 800;
}

.wc26-broadcast-card p,
.wc26-city-card p {
	color: var(--wc26-muted);
	font-size: 0.9rem;
	margin: 0 0 6px;
	line-height: 1.7;
}

.wc26-broadcast-card small,
.wc26-city-card small {
	color: var(--wc26-muted);
	font-size: 0.78rem;
}

.wc26-city-card__venue {
	font-weight: 700;
	color: var(--wc26-brand) !important;
	margin-bottom: 4px !important;
}

.wc26-city-card__cap {
	color: var(--wc26-muted);
	font-size: 0.85rem !important;
}

/* --- Group chips + knockout role badges on city cards --- */
.wc26-city-card__block {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.wc26-city-card__block:first-of-type {
	margin-top: 14px;
}

.wc26-city-card__label {
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--wc26-muted, #4b5563);
	margin-bottom: 8px;
	letter-spacing: 0.01em;
}

.wc26-city-card__groups,
.wc26-city-card__roles {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.wc26-group-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px 5px 6px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(198, 90, 34, 0.10), rgba(244, 162, 97, 0.14));
	border: 1px solid rgba(198, 90, 34, 0.25);
	color: var(--wc26-brand, #c65a22);
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.18s ease, border-color 0.18s ease, transform 0.15s ease, color 0.18s ease;
}

.wc26-group-chip:hover,
.wc26-group-chip:focus-visible {
	background: linear-gradient(135deg, var(--wc26-brand, #c65a22), var(--wc26-brand-2, #f4a261));
	border-color: var(--wc26-brand, #c65a22);
	color: #fff;
	transform: translateY(-1px);
}

.wc26-group-chip__pre {
	font-size: 0.74rem;
	font-weight: 600;
	opacity: 0.88;
}

.wc26-group-chip__letter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	color: var(--wc26-brand, #c65a22);
	font-weight: 800;
	font-size: 0.82rem;
	box-shadow: inset 0 0 0 1px rgba(198, 90, 34, 0.25);
	transition: background 0.18s ease, color 0.18s ease;
}

.wc26-group-chip:hover .wc26-group-chip__letter,
.wc26-group-chip:focus-visible .wc26-group-chip__letter {
	background: #fff;
	color: var(--wc26-brand, #c65a22);
}

.wc26-role-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.4;
	white-space: nowrap;
}

.wc26-role-badge--soft {
	background: rgba(75, 85, 99, 0.08);
	color: #4b5563;
	border: 1px solid rgba(75, 85, 99, 0.18);
}

.wc26-role-badge--mid {
	background: rgba(198, 90, 34, 0.12);
	color: var(--wc26-brand, #c65a22);
	border: 1px solid rgba(198, 90, 34, 0.3);
}

.wc26-role-badge--hot {
	background: linear-gradient(135deg, rgba(198, 90, 34, 0.2), rgba(244, 162, 97, 0.28));
	color: var(--wc26-brand, #c65a22);
	border: 1px solid rgba(198, 90, 34, 0.5);
}

.wc26-role-badge--gold {
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	color: #422006;
	border: 1px solid #b45309;
	box-shadow: 0 2px 6px rgba(245, 158, 11, 0.25);
}

.tie-dark-skin .wc26-city-card__block,
.tie-dark-mode .wc26-city-card__block {
	border-top-color: rgba(255, 255, 255, 0.08);
}

.tie-dark-skin .wc26-city-card__label,
.tie-dark-mode .wc26-city-card__label {
	color: #d1d5db;
}

.tie-dark-skin .wc26-role-badge--soft,
.tie-dark-mode .wc26-role-badge--soft {
	background: rgba(255, 255, 255, 0.06);
	color: #e5e7eb;
	border-color: rgba(255, 255, 255, 0.12);
}

.wc26-tag {
	display: inline-block;
	padding: 3px 9px;
	border-radius: 999px;
	background: rgba(198, 90, 34, 0.12);
	color: var(--wc26-brand);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.wc26-callout {
	background: linear-gradient(135deg, rgba(198, 90, 34, 0.06), rgba(198, 90, 34, 0.02));
	border-inline-start: 4px solid var(--wc26-brand);
	padding: 14px 18px;
	border-radius: 10px;
	margin: 20px 0;
	font-size: 0.92rem;
	line-height: 1.75;
}

.wc26-facts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	gap: 12px;
}

.wc26-fact-card {
	background: linear-gradient(135deg, #fff 0%, #f9fafb 100%);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 12px;
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	transition: border-color 0.18s, transform 0.15s;
}

.wc26-fact-card:hover {
	border-color: var(--wc26-brand);
	transform: translateY(-2px);
}

.wc26-fact-card small {
	color: var(--wc26-muted);
	font-size: 0.78rem;
	font-weight: 600;
}

.wc26-fact-card strong {
	font-size: 1.1rem;
	color: var(--wc26-ink, #111827);
	font-weight: 800;
}

.wc26-phases {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
	counter-reset: phase;
}

.wc26-phases li {
	background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 14px;
	/* Logical padding: the badge sits at inline-start, so the gap must
	   go on inline-start regardless of LTR / RTL direction. */
	padding-block: 18px;
	padding-inline-start: 72px;
	padding-inline-end: 18px;
	position: relative;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wc26-phases li:hover {
	border-color: rgba(198, 90, 34, 0.35);
	box-shadow: 0 6px 18px rgba(17, 24, 39, 0.05);
}

.wc26-phases li::before {
	counter-increment: phase;
	content: counter(phase);
	position: absolute;
	top: 18px;
	inset-inline-start: 18px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--wc26-brand, #c65a22) 0%, var(--wc26-brand-2, #f4a261) 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.05rem;
	line-height: 1;
	box-shadow:
		0 6px 14px rgba(198, 90, 34, 0.32),
		inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.wc26-phases h3 {
	margin: 0 0 6px;
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--wc26-ink, #111827);
	line-height: 1.35;
}

.wc26-phases p {
	margin: 0;
	color: var(--wc26-muted, #4b5563);
	line-height: 1.75;
	font-size: 0.97rem;
}

@media (max-width: 520px) {
	.wc26-phases li {
		padding-inline-start: 62px;
		padding-block: 14px;
	}
	.wc26-phases li::before {
		top: 14px;
		inset-inline-start: 14px;
		width: 34px;
		height: 34px;
		font-size: 0.95rem;
	}
}

.tie-dark-skin .wc26-phases li,
.tie-dark-mode .wc26-phases li {
	background: linear-gradient(180deg, #1f2937 0%, #1a2230 100%);
	border-color: rgba(255, 255, 255, 0.08);
}
.tie-dark-skin .wc26-phases h3,
.tie-dark-mode .wc26-phases h3 {
	color: #f3f4f6;
}
.tie-dark-skin .wc26-phases p,
.tie-dark-mode .wc26-phases p {
	color: #d1d5db;
}

/* =========================================================================
   Fixture day groups
   ========================================================================= */

.wc26-fixture-meta {
	margin: 0 0 22px;
	padding: 14px 16px;
	background: linear-gradient(135deg, #fff 0%, #f9fafb 100%);
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.07);
	color: var(--wc26-muted);
	font-size: 0.92rem;
}

.wc26-fixture-day {
	margin: 24px 0;
}

.wc26-fixture-day__title {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--wc26-brand);
	margin: 0 0 12px;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--wc26-brand);
	display: inline-block;
}

/* =========================================================================
   Sidebar — WC26 stack of widgets
   ========================================================================= */

.wc26-sidebar {
	color: var(--wc26-ink, #111827);
}

.wc26-sidebar-stack {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.wc26-side-widget {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 14px;
	padding: 14px 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.wc26-side-widget__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: 2px solid rgba(0, 0, 0, 0.06);
	position: relative;
}

.wc26-side-widget__header::after {
	content: "";
	position: absolute;
	bottom: -2px;
	inset-inline-start: 0;
	width: 40px;
	height: 2px;
	background: var(--wc26-brand);
}

.wc26-side-widget__header strong {
	font-size: 0.92rem;
	font-weight: 800;
}

.wc26-side-widget__more {
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--wc26-brand);
	text-decoration: none;
}

.wc26-side-widget--countdown {
	background: linear-gradient(135deg, #020f2a 0%, #0a1c4a 100%);
	color: #fff;
	border: none;
}

.wc26-side-widget--countdown .wc26-side-widget__header strong {
	color: #fff;
}

.wc26-side-widget--countdown .wc26-side-widget__header {
	border-bottom-color: rgba(255, 255, 255, 0.15);
}

.wc26-side-widget--countdown .wc26-countdown__cell {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.18);
}

.wc26-side-widget--countdown .wc26-countdown__label {
	color: rgba(255, 255, 255, 0.7);
}

.wc26-side-widget--next .wc26-match-card {
	padding: 12px;
}

.wc26-side-teams,
.wc26-side-news {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.wc26-side-teams li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	font-size: 0.92rem;
	font-weight: 600;
	transition: background 0.15s;
}

.wc26-side-teams li a:hover,
.wc26-side-teams li a:focus {
	background: rgba(198, 90, 34, 0.06);
	color: var(--wc26-brand);
}

.wc26-side-teams img {
	border-radius: 3px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wc26-side-news li a {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 10px;
	padding: 8px;
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	transition: background 0.15s;
}

.wc26-side-news li a:hover,
.wc26-side-news li a:focus {
	background: rgba(0, 0, 0, 0.03);
}

.wc26-side-news__thumb {
	display: block;
	overflow: hidden;
	border-radius: 6px;
	aspect-ratio: 1 / 1;
	background: #f3f4f6;
}

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

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

.wc26-side-news__title {
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.wc26-side-news__date {
	color: var(--wc26-muted);
	font-size: 0.72rem;
}

.wc26-side-quicklinks {
	display: grid;
	gap: 4px;
}

.wc26-side-quicklinks a {
	display: block;
	padding: 8px 10px;
	border-radius: 8px;
	background: #f9fafb;
	text-decoration: none;
	color: inherit;
	font-size: 0.88rem;
	font-weight: 600;
	transition: background 0.15s, color 0.15s;
}

.wc26-side-quicklinks a:hover,
.wc26-side-quicklinks a:focus {
	background: rgba(198, 90, 34, 0.08);
	color: var(--wc26-brand);
}

/* =========================================================================
   Empty / utility
   ========================================================================= */

.wc26-empty {
	color: var(--wc26-muted);
	padding: 18px;
	text-align: center;
	background: #f9fafb;
	border-radius: 10px;
	border: 1px dashed rgba(0, 0, 0, 0.1);
}

.wc26-empty-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 14px;
	padding: 18px;
	margin: 0 0 20px;
}

.wc26-empty-card h2 {
	margin: 0 0 8px;
	font-size: 1.15rem;
	font-weight: 800;
}

.wc26-empty-card p {
	margin: 0 0 12px;
	color: var(--wc26-muted);
	line-height: 1.7;
}

.wc26-rss-source {
	margin-top: 24px;
	padding-top: 12px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* =========================================================================
   Posts created by the RSS scraper — lead, FAQ, related links
   ========================================================================= */

.wc26-post-lead {
	font-size: 1.1rem;
	line-height: 1.85;
	color: var(--wc26-ink, #111827);
	background: linear-gradient(135deg, rgba(198, 90, 34, 0.06), rgba(198, 90, 34, 0.02));
	border-inline-start: 4px solid var(--wc26-brand);
	border-radius: 8px;
	padding: 14px 18px;
	margin: 0 0 22px;
}

/* ============================================================
   FAQ block (rendered at the bottom of every RSS article)
   ============================================================ */
.entry-content h2#faq,
.wc26-faq-heading,
h2#faq {
	position: relative;
	margin: 32px 0 18px;
	padding-inline-start: 18px;
	font-size: clamp(1.25rem, 1.05rem + 0.6vw, 1.55rem);
	font-weight: 800;
	line-height: 1.3;
	color: var(--wc26-ink, #111827);
}

.entry-content h2#faq::before,
h2#faq::before {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 70%;
	border-radius: 3px;
	background: linear-gradient(180deg, var(--wc26-brand, #c65a22) 0%, var(--wc26-brand-2, #f4a261) 100%);
}

.wc26-faq {
	display: grid;
	gap: 10px;
	margin: 0 0 32px;
	padding: 0;
	list-style: none;
}

.wc26-faq__item {
	position: relative;
	background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 14px;
	padding: 0;
	overflow: hidden;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease,
		transform 0.2s ease;
}

.wc26-faq__item:hover {
	border-color: rgba(198, 90, 34, 0.35);
	box-shadow: 0 4px 14px rgba(17, 24, 39, 0.04);
}

.wc26-faq__item[open] {
	border-color: var(--wc26-brand, #c65a22);
	background: #fff;
	box-shadow:
		0 10px 28px rgba(198, 90, 34, 0.08),
		0 2px 6px rgba(17, 24, 39, 0.04);
}

.wc26-faq__item[open]::before {
	content: "";
	position: absolute;
	top: 0;
	inset-inline-start: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, var(--wc26-brand, #c65a22) 0%, var(--wc26-brand-2, #f4a261) 100%);
}

.wc26-faq__item > summary {
	position: relative;
	cursor: pointer;
	padding: 16px 18px 16px 22px;
	font-weight: 700;
	font-size: 1.02rem;
	line-height: 1.55;
	color: var(--wc26-ink, #111827);
	list-style: none;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	user-select: none;
	transition: color 0.18s ease;
}

.wc26-faq__item > summary::-webkit-details-marker {
	display: none;
}

.wc26-faq__item > summary:hover {
	color: var(--wc26-brand, #c65a22);
}

.wc26-faq__item > summary:focus-visible {
	outline: 2px solid var(--wc26-brand, #c65a22);
	outline-offset: -2px;
	border-radius: 14px;
}

/* Numbered Q badge — reads from data-num to avoid CSS counter quirks
   with <details> elements inside Jannah's .entry-content reset. */
.wc26-faq__item > summary::before {
	content: attr(data-num);
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(198, 90, 34, 0.12), rgba(244, 162, 97, 0.18));
	color: var(--wc26-brand, #c65a22);
	font-size: 0.85rem;
	font-weight: 800;
	margin-top: 2px;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wc26-faq__item[open] > summary::before {
	background: linear-gradient(135deg, var(--wc26-brand, #c65a22), var(--wc26-brand-2, #f4a261));
	color: #fff;
	transform: scale(1.05);
}

/* Chevron toggle (rotates on open) */
.wc26-faq__item > summary::after {
	content: "";
	flex: 0 0 auto;
	margin-inline-start: auto;
	width: 12px;
	height: 12px;
	margin-top: 8px;
	border-right: 2.5px solid var(--wc26-brand, #c65a22);
	border-bottom: 2.5px solid var(--wc26-brand, #c65a22);
	transform: rotate(45deg);
	transition: transform 0.25s ease;
}

.wc26-faq__item[open] > summary::after {
	transform: rotate(-135deg);
	margin-top: 12px;
}

.wc26-faq__item > div {
	padding: 0 18px 16px calc(18px + 28px + 14px);
	color: var(--wc26-muted, #4b5563);
	line-height: 1.9;
	font-size: 0.97rem;
	border-top: 1px dashed rgba(0, 0, 0, 0.06);
	margin-top: -1px;
	padding-top: 14px;
	animation: wc26FaqIn 0.22s ease;
}

.wc26-faq__item > div :is(p, ul, ol):first-child {
	margin-top: 0;
}

.wc26-faq__item > div :is(p, ul, ol):last-child {
	margin-bottom: 0;
}

.wc26-faq__item > div a {
	color: var(--wc26-brand, #c65a22);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.wc26-faq__item > div a:hover {
	color: var(--wc26-brand-2, #f4a261);
}

@keyframes wc26FaqIn {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 640px) {
	.wc26-faq__item > summary {
		padding: 14px 14px 14px 16px;
		font-size: 0.97rem;
		gap: 10px;
	}
	.wc26-faq__item > summary::before {
		width: 24px;
		height: 24px;
		font-size: 0.78rem;
	}
	.wc26-faq__item > div {
		padding-inline-start: calc(14px + 24px + 10px);
		font-size: 0.93rem;
	}
}

/* Dark-theme friendliness (Jannah's dark skin) */
.tie-dark-skin .wc26-faq__item,
.tie-dark-mode .wc26-faq__item {
	background: linear-gradient(180deg, #1f2937 0%, #1a2230 100%);
	border-color: rgba(255, 255, 255, 0.08);
}

.tie-dark-skin .wc26-faq__item[open],
.tie-dark-mode .wc26-faq__item[open] {
	background: #1f2937;
	border-color: var(--wc26-brand, #c65a22);
}

.tie-dark-skin .wc26-faq__item > summary,
.tie-dark-mode .wc26-faq__item > summary {
	color: #f3f4f6;
}

.tie-dark-skin .wc26-faq__item > div,
.tie-dark-mode .wc26-faq__item > div {
	color: #d1d5db;
	border-top-color: rgba(255, 255, 255, 0.08);
}

.wc26-related {
	margin: 22px 0;
	padding: 16px 18px;
	background: linear-gradient(135deg, #fff 0%, #f9fafb 100%);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 12px;
}

.wc26-related > strong {
	display: block;
	margin-bottom: 10px;
	color: var(--wc26-brand);
	font-size: 0.95rem;
}

.wc26-related ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.wc26-related li {
	display: inline-flex;
}

.wc26-related a {
	display: inline-block;
	padding: 6px 12px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 999px;
	text-decoration: none;
	color: var(--wc26-ink, #111827);
	font-size: 0.85rem;
	font-weight: 600;
	transition: border-color 0.18s, color 0.18s;
}

.wc26-related a:hover,
.wc26-related a:focus {
	border-color: var(--wc26-brand);
	color: var(--wc26-brand);
}

.wc26-article-hub-link {
	margin: 0 0 16px;
	font-size: 0.9rem;
}

.wc26-article-hub-link a {
	font-weight: 600;
	text-decoration: none;
}

.wc26-breadcrumb a {
	color: var(--wc26-muted);
}

/* =========================================================================
   Per-team news hub (route: /كاس-العالم-2026/المنتخب-XXX/)
   ========================================================================= */

.wc26-team-page {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.wc26-team-hero {
	display: flex;
	gap: 22px;
	align-items: center;
	padding: 22px 22px;
	border-radius: 16px;
	background:
		linear-gradient(135deg, rgba(2, 15, 42, 0.95) 0%, rgba(15, 32, 78, 0.92) 60%, rgba(45, 30, 80, 0.9) 100%);
	color: #fff;
	box-shadow: 0 12px 32px rgba(2, 15, 42, 0.28);
	position: relative;
	overflow: hidden;
}

.wc26-team-hero__flag {
	width: 96px;
	height: 64px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
}

.wc26-team-hero__body {
	min-width: 0;
}

.wc26-team-hero__eyebrow {
	display: inline-block;
	background: rgba(198, 90, 34, 0.95);
	color: #fff;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	margin-bottom: 10px;
}

.wc26-team-hero__title {
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 900;
	margin: 0 0 8px;
	color: #fff;
	letter-spacing: -0.01em;
	line-height: 1.15;
}

.wc26-team-hero__intro {
	color: rgba(255, 255, 255, 0.78);
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.7;
	max-width: 60ch;
}

@media (max-width: 600px) {
	.wc26-team-hero {
		flex-direction: column;
		text-align: start;
		align-items: flex-start;
		padding: 18px;
	}
	.wc26-team-hero__flag {
		width: 72px;
		height: 48px;
	}
}

/* Team filter chips on the /أخبار/ hub */
.wc26-news-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 18px 0 22px;
	padding: 14px 16px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
}

.wc26-news-filter__label {
	font-weight: 700;
	font-size: 0.85rem;
	color: #4b5563;
	margin-inline-end: 4px;
}

.wc26-news-filter__chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 999px;
	background: #f3f4f6;
	color: #1f2937;
	font-size: 0.84rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease;
	border: 1px solid transparent;
}

.wc26-news-filter__chip img {
	width: 20px;
	height: 14px;
	border-radius: 2px;
	object-fit: cover;
}

.wc26-news-filter__chip:hover {
	background: #e5e7eb;
}

.wc26-news-filter__chip.is-active {
	background: rgba(198, 90, 34, 0.95);
	color: #fff;
}

/* ------------------------------------------------------------------
 * Entity hero — used on per-city, per-stadium, per-broadcaster pages.
 * Distinct H1 + intro paragraph layout that ranks high in Search.
 * ------------------------------------------------------------------ */
.wc26-entity-hero {
	position: relative;
	background: linear-gradient(135deg, rgba(198, 90, 34, 0.08), rgba(13, 71, 161, 0.06));
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 18px;
	padding: 28px 26px;
	margin-bottom: 22px;
	overflow: hidden;
}

.wc26-entity-hero::before {
	content: "";
	position: absolute;
	inset-block-start: -40px;
	inset-inline-end: -40px;
	width: 180px;
	height: 180px;
	background: radial-gradient(circle, rgba(198, 90, 34, 0.18) 0%, transparent 70%);
	z-index: 0;
}

.wc26-entity-hero__eyebrow {
	position: relative;
	z-index: 1;
	display: inline-block;
	background: rgba(198, 90, 34, 0.15);
	color: var(--wc26-brand, #c65a22);
	font-size: 0.78rem;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 999px;
	margin-bottom: 12px;
}

.wc26-entity-hero__title {
	position: relative;
	z-index: 1;
	font-size: clamp(1.5rem, 3.2vw, 2.2rem);
	font-weight: 900;
	line-height: 1.3;
	margin: 0 0 12px;
	color: var(--wc26-ink, #0b1424);
}

.wc26-entity-hero__intro {
	position: relative;
	z-index: 1;
	font-size: 1.05rem;
	line-height: 1.85;
	color: var(--wc26-muted, #4b5563);
	margin: 0;
	max-width: 75ch;
}

/* Linkable broadcast card — same look as static, but full-card link. */
a.wc26-broadcast-card--link {
	text-decoration: none;
	color: inherit;
	display: block;
}

a.wc26-broadcast-card--link:hover {
	border-color: var(--wc26-brand);
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
	color: inherit;
}

a.wc26-broadcast-card--link strong {
	color: var(--wc26-brand, #c65a22);
}

/* Make city-card city + venue links inherit color but underline on hover. */
.wc26-city-card header strong a,
.wc26-city-card__venue a {
	color: inherit;
	text-decoration: none;
}

.wc26-city-card header strong a:hover,
.wc26-city-card__venue a:hover {
	color: var(--wc26-brand, #c65a22);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Facts grid for entity pages. */
.wc26-facts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
	margin: 14px 0 18px;
}

.wc26-fact-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 12px;
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.wc26-fact-card small {
	font-size: 0.78rem;
	color: var(--wc26-muted, #6b7280);
}

.wc26-fact-card strong {
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--wc26-ink, #0b1424);
}

/* Dark theme. */
body.dark-skin .wc26-entity-hero,
body.dark .wc26-entity-hero {
	background: linear-gradient(135deg, rgba(198, 90, 34, 0.18), rgba(13, 71, 161, 0.12));
	border-color: rgba(255, 255, 255, 0.08);
}

body.dark-skin .wc26-entity-hero__title,
body.dark .wc26-entity-hero__title {
	color: #fff;
}

body.dark-skin .wc26-entity-hero__intro,
body.dark .wc26-entity-hero__intro {
	color: rgba(255, 255, 255, 0.78);
}

body.dark-skin .wc26-fact-card,
body.dark .wc26-fact-card {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.08);
}

body.dark-skin .wc26-fact-card strong,
body.dark .wc26-fact-card strong {
	color: #fff;
}

/* ==========================================================================
   Pagination — wraps Jannah's native .pages-numbers component so plugin
   archives match the theme, with a touch of extra polish (centering,
   spacing, hover lift) to lose the flat look.
   ========================================================================== */
.wc26-pagination {
	margin-top: 36px;
	padding-top: 24px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	text-align: center;
}

.wc26-pagination .pages-numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: visible;
}

.wc26-pagination .pages-numbers li {
	margin: 0;
}

/* Boxed buttons: round them up a bit and add a smooth transition/hover lift. */
.wc26-pagination .pages-numbers a,
.wc26-pagination .pages-nav-item {
	min-width: 42px;
	height: 42px;
	line-height: 40px;
	padding: 0 14px;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	font-weight: 700;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.wc26-pagination .pages-numbers a:hover {
	background: var(--brand-color, #c65a22);
	border-color: var(--brand-color, #c65a22);
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(198, 90, 34, 0.28);
}

.wc26-pagination .pages-numbers li.current span,
.wc26-pagination .pages-numbers .pages-nav-item.current {
	min-width: 42px;
	height: 42px;
	line-height: 40px;
	padding: 0 14px;
	border-radius: 10px;
	font-weight: 800;
	background: var(--brand-color, #c65a22);
	border: 1px solid var(--brand-color, #c65a22);
	color: #fff;
	box-shadow: 0 6px 16px rgba(198, 90, 34, 0.28);
}

.wc26-pagination .pages-numbers li.extend span {
	border: 0;
	background: transparent;
	box-shadow: none;
	letter-spacing: 2px;
	opacity: 0.6;
}

/* Fallback paginate_links() markup (non-Jannah). */
.wc26-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	margin: 0 4px;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: #fff;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.wc26-pagination .page-numbers:hover,
.wc26-pagination .page-numbers.current {
	background: var(--brand-color, #c65a22);
	border-color: var(--brand-color, #c65a22);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(198, 90, 34, 0.28);
}

/* Dark theme. */
body.dark-skin .wc26-pagination,
body.dark .wc26-pagination {
	border-top-color: rgba(255, 255, 255, 0.08);
}

body.dark-skin .wc26-pagination .pages-numbers a,
body.dark .wc26-pagination .pages-numbers a,
body.dark-skin .wc26-pagination .pages-nav-item,
body.dark .wc26-pagination .pages-nav-item,
body.dark-skin .wc26-pagination .page-numbers,
body.dark .wc26-pagination .page-numbers {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: none;
}

/* =====================================================================
   Squad (التشكيلة) feature
   ===================================================================== */
.wc26-squad-hero {
	display: flex;
	gap: 18px;
	align-items: center;
	flex-wrap: wrap;
}

.wc26-squad-meta {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
	margin: 8px 0;
	font-size: 0.85rem;
	color: var(--wc26-muted, #4b5563);
}

.wc26-squad-badge {
	display: inline-flex;
	align-items: center;
	padding: 3px 12px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.8rem;
	color: #fff;
	background: var(--wc26-brand, #c65a22);
}

.wc26-squad-badge--official { background: #1a7f37; }
.wc26-squad-badge--expected { background: #b8860b; }
.wc26-squad-badge--outdated { background: #6b7280; }
.wc26-squad-badge--unavailable { background: #9ca3af; }

.wc26-squad-count,
.wc26-squad-updated {
	display: inline-flex;
	align-items: center;
}

/* Sticky mini-nav */
.wc26-squad-nav {
	position: sticky;
	top: 0;
	z-index: 5;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	padding: 10px 0;
	margin: 6px 0 18px;
	background: var(--wc26-bg, #fff);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.wc26-squad-nav a {
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(198, 90, 34, 0.08);
	color: var(--wc26-brand, #c65a22);
	font-weight: 700;
	font-size: 0.85rem;
	text-decoration: none;
}

.wc26-squad-nav a:hover { background: var(--wc26-brand, #c65a22); color: #fff; }

/* Position groups */
.wc26-squad-group { margin: 0 0 26px; }

.wc26-squad-group__title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.15rem;
	font-weight: 800;
	margin: 0 0 14px;
	padding-inline-start: 12px;
	border-inline-start: 4px solid var(--wc26-brand, #c65a22);
	color: var(--wc26-ink, #111827);
}

.wc26-squad-group__count {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--wc26-muted, #6b7280);
	background: rgba(0, 0, 0, 0.05);
	border-radius: 999px;
	padding: 1px 9px;
}

/* Player grid: 4 / 3 / 2 columns */
.wc26-player-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

@media (max-width: 900px) {
	.wc26-player-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
	.wc26-player-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.wc26-player-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 16px 10px 14px;
	border-radius: var(--wc26-radius-lg, 14px);
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.wc26-player-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.wc26-player-card__media {
	position: relative;
	width: 96px;
	height: 96px;
	margin-bottom: 10px;
}

.wc26-player-card__photo {
	width: 96px;
	height: 96px;
	border-radius: 18px;
	object-fit: cover;
	background: #f3f4f6;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
}

.wc26-player-card__photo--empty { border: 1px dashed rgba(0, 0, 0, 0.12); }

.wc26-player-card__number {
	position: absolute;
	inset-inline-end: -6px;
	inset-block-start: -6px;
	min-width: 26px;
	height: 26px;
	padding: 0 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--wc26-fifa-navy, #020f2a);
	color: #fff;
	font-weight: 800;
	font-size: 0.8rem;
}

.wc26-player-card__name { font-weight: 800; font-size: 0.95rem; color: var(--wc26-ink, #111827); }
.wc26-player-card__name-en { font-size: 0.72rem; color: var(--wc26-muted, #9ca3af); }

.wc26-player-card__meta {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 4px;
	font-size: 0.75rem;
	color: var(--wc26-muted, #6b7280);
}

.wc26-player-card__meta span + span::before { content: "·"; margin-inline-end: 6px; }
.wc26-player-card__club { font-size: 0.72rem; color: var(--wc26-muted, #9ca3af); margin-top: 2px; }

/* Squad links chips */
.wc26-squad-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 14px 0;
}

.wc26-squad-links__label { font-weight: 700; color: var(--wc26-muted, #4b5563); font-size: 0.85rem; }

.wc26-squad-links__chip {
	padding: 6px 13px;
	border-radius: 999px;
	background: rgba(198, 90, 34, 0.08);
	color: var(--wc26-brand, #c65a22);
	font-weight: 700;
	font-size: 0.82rem;
	text-decoration: none;
	border: 1px solid rgba(198, 90, 34, 0.18);
}

.wc26-squad-links__chip:hover { background: var(--wc26-brand, #c65a22); color: #fff; }

/* Featured squads grid */
.wc26-featured-squads { margin: 22px 0; }
.wc26-featured-squads__title { font-size: 1.2rem; font-weight: 800; margin: 0 0 14px; }

.wc26-featured-squads__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 10px;
}

.wc26-featured-squad-card {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	font-weight: 700;
	color: var(--wc26-ink, #111827);
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.wc26-featured-squad-card:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08); }

/* Inline squad box appended to articles */
.wc26-squad-inline-box {
	margin: 26px 0;
	padding: 16px 18px;
	border-radius: var(--wc26-radius-lg, 14px);
	background: rgba(198, 90, 34, 0.05);
	border: 1px solid rgba(198, 90, 34, 0.15);
}

.wc26-squad-inline-box__title { display: block; margin-bottom: 10px; }

/* Compact preview variant */
.wc26-squad-groups--compact .wc26-squad-group { margin-bottom: 16px; }
.wc26-squad-preview__more { margin-top: 8px; }

/* Standings table inside squad page */
.wc26-standings .is-current { background: rgba(198, 90, 34, 0.08); font-weight: 700; }
.wc26-standings__team { display: flex; align-items: center; gap: 8px; }
.wc26-standings__team a { text-decoration: none; color: inherit; }

/* Dark theme */
body.dark-skin .wc26-player-card,
body.dark .wc26-player-card,
body.dark-skin .wc26-featured-squad-card,
body.dark .wc26-featured-squad-card {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.1);
}

body.dark-skin .wc26-squad-nav,
body.dark .wc26-squad-nav { background: #0b1220; }

/* ============================================================
   SEO utility pages: broadcast logos, frequency + timezone
   tables, steps, split grid, country grid, FTA list.
   ============================================================ */

.wc26-broadcast-card__logo {
	display: inline-flex;
	align-items: center;
	margin-inline-end: 10px;
}
.wc26-broadcast-card__logo img {
	height: 34px;
	width: auto;
	max-width: 120px;
	display: block;
	border-radius: 6px;
}
.wc26-broadcast-card header {
	flex-wrap: wrap;
	gap: 8px;
}

/* Responsive table wrapper */
.wc26-table-wrap {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: 12px;
}

.wc26-freq-table,
.wc26-tz-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	font-size: 0.9rem;
	min-width: 560px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	overflow: hidden;
}
.wc26-freq-table thead th,
.wc26-tz-table thead th {
	background: var(--wc26-brand, #c65a22);
	color: #fff;
	text-align: start;
	padding: 10px 12px;
	font-weight: 700;
	font-size: 0.82rem;
	white-space: nowrap;
}
.wc26-freq-table td,
.wc26-tz-table td {
	padding: 9px 12px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	color: #1f2937;
}
.wc26-freq-table tbody tr:nth-child(odd),
.wc26-tz-table tbody tr:nth-child(odd) {
	background: rgba(0, 0, 0, 0.02);
}
.wc26-freq-table tbody tr:hover,
.wc26-tz-table tbody tr:hover {
	background: rgba(198, 90, 34, 0.07);
}
.wc26-tz-table td a { color: var(--wc26-brand, #c65a22); text-decoration: none; font-weight: 700; }

/* Steps */
.wc26-steps {
	margin: 0;
	padding-inline-start: 1.2rem;
	display: grid;
	gap: 10px;
}
.wc26-steps li { line-height: 1.7; }
.wc26-steps--cards {
	list-style: none;
	padding: 0;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 14px;
}
.wc26-step-card {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 12px;
	padding: 14px;
}
.wc26-step-card__num {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--wc26-brand, #c65a22);
	color: #fff;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wc26-step-card strong { display: block; margin-bottom: 4px; }
.wc26-step-card p { margin: 0; color: var(--wc26-muted, #64748b); font-size: 0.9rem; }

/* Free vs paid split */
.wc26-split-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 14px;
}
.wc26-split-card {
	border-radius: 12px;
	padding: 16px 18px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: #fff;
}
.wc26-split-card h3 { margin: 0 0 10px; font-size: 1.05rem; }
.wc26-split-card ul { margin: 0; padding-inline-start: 1.1rem; display: grid; gap: 6px; }
.wc26-split-card--paid { border-top: 4px solid #5b2a86; }
.wc26-split-card--free { border-top: 4px solid #00b3a6; }

/* Country grid */
.wc26-country-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 12px;
}
.wc26-country-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	padding: 14px 16px;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.15s ease, transform 0.15s ease;
}
.wc26-country-card:hover {
	border-color: var(--wc26-brand, #c65a22);
	transform: translateY(-2px);
}
.wc26-country-card strong { font-weight: 700; font-size: 0.95rem; }
.wc26-country-card span {
	font-size: 0.78rem;
	color: #fff;
	background: var(--wc26-brand, #c65a22);
	padding: 2px 8px;
	border-radius: 999px;
	white-space: nowrap;
}

/* FTA list */
.wc26-fta-list { margin: 0 0 14px; padding: 0; list-style: none; display: grid; gap: 10px; }
.wc26-fta-list li {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-inline-start: 4px solid #00b3a6;
	border-radius: 10px;
	padding: 10px 14px;
}
.wc26-fta-list strong { display: block; }
.wc26-fta-list span { color: var(--wc26-muted, #64748b); font-size: 0.88rem; }

.wc26-section__lead { color: var(--wc26-muted, #64748b); margin-bottom: 12px; }

.wc26-callout--muted { border-inline-start-color: #94a3b8; background: rgba(148, 163, 184, 0.08); }
.wc26-callout--accent { border-inline-start-color: var(--wc26-brand, #c65a22); }

/* Dark theme */
body.dark-skin .wc26-freq-table,
body.dark .wc26-freq-table,
body.dark-skin .wc26-tz-table,
body.dark .wc26-tz-table,
body.dark-skin .wc26-step-card,
body.dark .wc26-step-card,
body.dark-skin .wc26-split-card,
body.dark .wc26-split-card,
body.dark-skin .wc26-country-card,
body.dark .wc26-country-card,
body.dark-skin .wc26-fta-list li,
body.dark .wc26-fta-list li {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.1);
	color: #e5e7eb;
}
body.dark-skin .wc26-freq-table td,
body.dark .wc26-freq-table td,
body.dark-skin .wc26-tz-table td,
body.dark .wc26-tz-table td { color: #e5e7eb; border-top-color: rgba(255, 255, 255, 0.08); }

