@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700;800&display=swap');

:root {
	--bt10-navy: #071433;
	--bt10-navy-2: #0c1c4d;
	--bt10-ink: #101828;
	--bt10-red: #ff3b4d;
	--bt10-gold: #f4c542;
	--bt10-gold-2: #f89d07;
	--bt10-line: #e7ebf3;
	--bt10-muted: #667085;
}

body.bt10-app .page-header,
body.bt10-app h1.entry-title {
	display: none !important;
}

body.bt10-app .site-main,
body.bt10-app .page-content {
	max-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.bt10-page {
	background: #f3f5fa;
	min-height: 70vh;
	padding: 0;
	font-family: Lexend, sans-serif;
}

.bt10-shell-dark {
	position: relative;
	background:
		radial-gradient(1200px 500px at 50% -10%, rgba(244, 197, 66, 0.18), transparent 55%),
		linear-gradient(180deg, #0a1a4a 0%, #071433 48%, #050e28 100%);
	overflow: hidden;
	padding: 28px 0 72px;
	min-height: 62vh;
}

.bt10-shell-dark::before,
.bt10-shell-dark::after {
	content: "";
	position: absolute;
	width: 280px;
	height: 280px;
	border: 2px solid rgba(255, 255, 255, 0.06);
	border-radius: 50%;
	pointer-events: none;
}

.bt10-shell-dark::before { left: -90px; bottom: -80px; }
.bt10-shell-dark::after { right: -70px; top: 40px; }

.bt10-shell-light {
	background: #f3f5fa;
	padding: 28px 0 72px;
}

.bt10-wrap {
	position: relative;
	z-index: 1;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px 8px;
	color: var(--bt10-ink);
	font-family: Lexend, sans-serif;
}

.bt10-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
}

.bt10-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.bt10-pills-center {
	justify-content: center;
	margin: 8px 0 24px;
}

.bt10-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	border-radius: 999px;
	background: #eceff6;
	color: #1d2433;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	border: 1px solid transparent;
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.bt10-pill svg { flex: 0 0 auto; }
.bt10-pill:hover { transform: translateY(-1px); background: #ffe58a; color: #111; }
.bt10-pill.is-active {
	background: var(--bt10-gold);
	color: #111;
	box-shadow: 0 8px 18px rgba(244, 197, 66, 0.35);
}

.bt10-shell-dark .bt10-pill {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}
.bt10-shell-dark .bt10-pill.is-active,
.bt10-shell-dark .bt10-pill:hover {
	background: var(--bt10-gold);
	color: #111;
}

.bt10-season {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 14px;
	color: #344054;
}

.bt10-shell-dark .bt10-season { color: #fff; }

.bt10-shell-dark .bt10-season select {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.28);
	background: #0c1848 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23ffffff' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E") no-repeat right 12px center;
}

.bt10-season select,
.bt10-stat-filters select {
	appearance: none;
	border: 1px solid #d0d5dd;
	border-radius: 10px;
	padding: 10px 36px 10px 12px;
	font-family: inherit;
	font-weight: 700;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23101828' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E") no-repeat right 12px center;
}

.bt10-teams-page-head {
	padding: 6px 0 22px;
}

.bt10-teams-page-title {
	margin: 0 0 10px;
	font-size: clamp(26px, 3.4vw, 34px);
	font-weight: 800;
	letter-spacing: .03em;
	text-transform: uppercase;
	color: #f4c542;
}

.bt10-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #9aa3bb;
}

.bt10-breadcrumb a {
	color: #9aa3bb;
	text-decoration: none;
}

.bt10-breadcrumb a:hover { color: #f4c542; }
.bt10-breadcrumb span:last-child { color: #e7ebf3; }

.bt10-teams-stage { padding: 8px 0 12px; }

.bt10-teams-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
	gap: 28px 22px;
}

.bt10-team-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	color: #fff;
	background: rgba(20, 22, 62, 0.55);
	border: 1px solid rgba(244, 197, 66, 0.22);
	border-radius: 16px;
	padding: 26px 26px 24px;
	box-sizing: border-box;
	height: 100%;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.bt10-team-card:hover {
	transform: translateY(-4px);
	border-color: #f4c542;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
}

.bt10-team-logo-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1;
	background: transparent;
	border-radius: 18px;
	padding: 10px;
	box-sizing: border-box;
}

.bt10-team-logo-box img {
	width: 78%;
	height: 78%;
	object-fit: contain;
}

.bt10-fallback,
.bt10-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-weight: 800;
	letter-spacing: .04em;
}

.bt10-team-card-name {
	font-size: 20px;
	font-weight: 800;
	text-align: center;
	color: #f4c542;
	margin-top: 2px;
}

.bt10-team-card-city {
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	color: #9aa3bb;
	margin-top: -8px;
}

.bt10-team-card-btn {
	align-self: center;
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #f4c542;
	border-radius: 8px;
	padding: 9px 16px;
	color: #f4c542;
	font-weight: 700;
	font-size: 14px;
	transition: background .18s ease, color .18s ease;
}

.bt10-team-card:hover .bt10-team-card-btn {
	background: #f4c542;
	color: #111;
}

.bt10-strip {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 6px 4px 18px;
	margin-bottom: 8px;
	scrollbar-width: thin;
}

.bt10-strip-item {
	flex: 0 0 64px;
	height: 64px;
	background: #fff;
	border-radius: 14px;
	display: grid;
	place-items: center;
	padding: 8px;
	border: 2px solid transparent;
	transition: transform .15s ease;
}

.bt10-strip-item img { max-width: 100%; max-height: 100%; object-fit: contain; }
.bt10-strip-item.is-active { border-color: var(--bt10-gold); transform: translateY(-3px); }

.bt10-match-list,
.bt10-panel {
	background: #fff;
	border-radius: 20px;
	padding: 6px 8px;
	box-shadow: 0 16px 40px rgba(16, 24, 40, 0.08);
	overflow: hidden;
}

.bt10-match-row {
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr) 150px;
	gap: 12px;
	align-items: center;
	padding: 18px 16px;
	border-bottom: 1px solid var(--bt10-line);
}

.bt10-match-row:last-child { border-bottom: 0; }
.bt10-match-row.is-live { background: linear-gradient(90deg, rgba(255, 59, 77, 0.06), transparent 40%); }

.bt10-match-stage { font-weight: 800; font-size: 16px; color: #101828; }
.bt10-match-venue,
.bt10-match-date { color: var(--bt10-muted); font-size: 13px; margin-top: 4px; }

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

.bt10-side { display: flex; align-items: center; gap: 12px; min-width: 0; }
.bt10-side-right { justify-content: flex-end; text-align: right; }
.bt10-side-copy { min-width: 0; }

.bt10-crest {
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	background: #f8f9fc;
	border-radius: 14px;
	display: grid;
	place-items: center;
	overflow: hidden;
	border: 1px solid var(--bt10-line);
}

.bt10-crest img { width: 42px; height: 42px; object-fit: contain; }

.bt10-side-name {
	font-size: 12px;
	color: #475467;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 160px;
}

.bt10-score { font-size: 26px; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.bt10-overs { font-size: 11px; color: #98a2b3; text-transform: uppercase; margin-top: 3px; letter-spacing: .08em; }

.bt10-vs {
	font-weight: 800;
	font-style: italic;
	color: #1d3a8a;
	font-size: 18px;
}

.bt10-status-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 9px 16px;
	border: 1.5px solid #1d3a8a;
	border-radius: 999px;
	color: #1d3a8a;
	text-decoration: none;
	font-weight: 800;
	font-size: 13px;
	white-space: nowrap;
	transition: background .15s ease, color .15s ease;
}

.bt10-status-btn:hover { background: #1d3a8a; color: #fff; }
.is-live .bt10-status-btn { border-color: var(--bt10-red); color: var(--bt10-red); }
.is-live .bt10-status-btn:hover { background: var(--bt10-red); color: #fff; }

.bt10-live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--bt10-red);
	box-shadow: 0 0 0 0 rgba(255, 59, 77, 0.7);
	animation: bt10pulse 1.4s infinite;
}

@keyframes bt10pulse {
	70% { box-shadow: 0 0 0 8px rgba(255, 59, 77, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 59, 77, 0); }
}

.bt10-table-wrap { overflow-x: auto; }
.bt10-panel { padding: 8px 4px 12px; }

.bt10-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.bt10-table th,
.bt10-table td {
	padding: 14px 12px;
	border-bottom: 1px solid var(--bt10-line);
	text-align: left;
	white-space: nowrap;
}

.bt10-table th {
	background: #f8fafc;
	font-weight: 800;
	color: #475467;
	font-size: 12px;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.bt10-table tbody tr:hover { background: #fafbff; }
.bt10-table tbody tr:last-child th,
.bt10-table tbody tr:last-child td { border-bottom: 0; }
.bt10-table a { color: #101828; font-weight: 700; text-decoration: none; }
.bt10-table a:hover { color: #1d3a8a; }

.bt10-team-cell { display: flex; align-items: center; gap: 10px; }
.bt10-team-cell img {
	width: 32px;
	height: 32px;
	object-fit: contain;
	background: #fff;
	border-radius: 8px;
	border: 1px solid var(--bt10-line);
	padding: 2px;
}

.bt10-rank {
	display: inline-grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: #eef2ff;
	font-weight: 800;
	font-size: 12px;
}

.is-qualified .bt10-rank { background: #f4c542; color: #111; }
.bt10-q {
	display: inline-grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #12b76a;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
}
.bt10-pts { font-weight: 800; color: #1d3a8a; font-size: 16px; }

.bt10-stat-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	justify-content: flex-end;
	margin: 0 0 16px;
}

.bt10-radio {
	display: flex;
	gap: 6px;
	background: #eceff6;
	padding: 4px;
	border-radius: 999px;
	font-weight: 700;
}
.bt10-radio label {
	padding: 8px 16px;
	border-radius: 999px;
	cursor: pointer;
}
.bt10-radio input { display: none; }
.bt10-radio label:has(input:checked) {
	background: var(--bt10-gold);
	box-shadow: 0 4px 12px rgba(244, 197, 66, 0.35);
}

.bt10-section-title {
	font-size: 22px;
	font-weight: 800;
	color: #0c1c4d;
	margin: 28px 0 12px;
}

.bt10-team-hero {
	display: flex;
	gap: 28px;
	align-items: center;
	padding: 12px 0 8px;
	color: #fff;
}

.bt10-team-hero-crest {
	width: 168px;
	height: 168px;
	background: #fff;
	border-radius: 24px;
	display: grid;
	place-items: center;
	padding: 18px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.bt10-team-hero-crest img { max-width: 100%; max-height: 100%; object-fit: contain; }
.bt10-kicker { margin: 0 0 6px; color: var(--bt10-gold); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; }
.bt10-team-hero-copy h1 { margin: 0 0 16px; font-size: 42px; letter-spacing: -0.03em; }

.bt10-staff-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.bt10-staff-pills div {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	padding: 10px 14px;
	min-width: 160px;
}
.bt10-staff-pills span { display: block; font-size: 11px; color: #b8c1d9; text-transform: uppercase; letter-spacing: .08em; }
.bt10-staff-pills strong { color: #fff; font-size: 14px; }

.bt10-roster h2 {
	font-size: 26px;
	margin: 10px 0 16px;
	color: #0c1c4d;
	position: relative;
	padding-left: 14px;
}
.bt10-roster h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	bottom: 6px;
	width: 4px;
	border-radius: 4px;
	background: var(--bt10-gold);
}

.bt10-player-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	gap: 18px;
	margin-bottom: 28px;
}

.bt10-player-card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
	transition: transform .18s ease;
}
.bt10-player-card:hover { transform: translateY(-4px); }

.bt10-player-photo {
	position: relative;
	display: block;
	background: linear-gradient(180deg, #dbe4f5, #9aaed4);
	aspect-ratio: 3 / 3.6;
}

.bt10-player-photo img,
.bt10-avatar {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bt10-avatar {
	font-size: 42px;
	color: #fff;
	text-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.bt10-role-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.role-batter .bt10-role-icon,
.role-wicketkeeper .bt10-role-icon { background: #12b76a; }
.role-bowler .bt10-role-icon { background: #f04438; }
.role-all_rounder .bt10-role-icon { background: #f4c542; }

.bt10-player-name {
	display: block;
	background: linear-gradient(90deg, #163a8a, #1d4ed8);
	color: #fff;
	text-align: center;
	padding: 10px 8px;
	font-size: 13px;
	font-weight: 700;
}

.bt10-match-hero {
	background:#1F0A59;
	color: #fff;
	padding: 36px 0 28px;
}

.bt10-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr 1fr;
	gap: 16px;
	align-items: center;
}

.bt10-hero-side { text-align: center; }
.bt10-hero-side img {
	width: 110px;
	height: 110px;
	margin: 0 auto 10px;
	background: #fff;
	border-radius: 18px;
	padding: 12px;
	object-fit: contain;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.bt10-hero-name { font-weight: 800; font-size: 18px; color: #fff !important; }

.bt10-hero-score {
	font-size: 40px;
	font-weight: 800;
	text-align: center;
	letter-spacing: -0.04em;
	color: #fff !important;
}
.bt10-hero-score span { opacity: 0.55; font-size: 18px; padding: 0 10px; color: #fff !important; }
.bt10-hero-result {
	text-align: center;
	margin-top: 8px;
	color: var(--bt10-gold) !important;
	font-weight: 700;
}
.bt10-hero-meta { text-align: center; margin-top: 8px; font-size: 13px; opacity: 0.8; color: #fff !important; }

.bt10-card {
	background: #fff;
	border-radius: 18px;
	padding: 20px;
	margin: 0 0 16px;
	box-shadow: 0 12px 30px rgba(16, 24, 40, 0.07);
}
.bt10-card h2 { margin: 0 0 14px; font-size: 18px; }

.bt10-lineup { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bt10-xi { list-style: none; margin: 0; padding: 0; }
.bt10-xi li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid var(--bt10-line);
}
.bt10-xi img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; background: #eef2ff; }
.bt10-xi small { margin-left: auto; color: #667085; }

.bt10-over-bar {
	background: #c6efb5;
	padding: 10px 14px;
	font-weight: 800;
	margin-top: 16px;
	border-radius: 8px 8px 0 0;
}

.bt10-ball {
	display: flex;
	gap: 12px;
	padding: 12px 10px;
	border-bottom: 1px solid var(--bt10-line);
	background: #fff;
}

.bt10-ball-icon {
	flex: 0 0 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eef2ff;
	font-weight: 800;
	font-size: 12px;
}
.event-four .bt10-ball-icon,
.event-six .bt10-ball-icon { background: var(--bt10-gold); }
.event-wicket .bt10-ball-icon { background: #7a3daf; color: #fff; }

.bt10-player-hero { display: flex; gap: 24px; align-items: center; margin-bottom: 24px; }
.bt10-player-hero img { width: 180px; border-radius: 18px; }
.bt10-role-tag {
	display: inline-block;
	background: var(--bt10-gold);
	padding: 4px 12px;
	border-radius: 999px;
	font-weight: 800;
}

.bt10-empty { padding: 28px; text-align: center; color: var(--bt10-muted); }
.bt10-empty-dark { color: #d0d5dd; }
.bt10-info-table th { width: 160px; }

.bt10-team-logo-box img,
.bt10-match-board img,
.bt10-hero-side img,
.bt10-player-photo img,
.bt10-xi img,
.bt10-team-cell img,
.bt10-strip-item img {
	display: block;
}

@media (max-width: 980px) {
	.bt10-teams-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bt10-match-row,
	.bt10-hero-grid,
	.bt10-lineup,
	.bt10-team-hero { grid-template-columns: 1fr; display: flex; flex-direction: column; }
	.bt10-match-action,
	.bt10-side-right { justify-content: flex-start; text-align: left; }
	.bt10-team-hero-copy h1 { font-size: 28px; }
	.bt10-hero-score { font-size: 28px; }
	.bt10-td-hero { grid-template-columns: 1fr; text-align: center; }
	.bt10-td-name { font-size: 32px; }
	.bt10-td-meta { margin: 0 auto; text-align: left; border-left: 0; border-top: 2px solid var(--bt10-gold); padding: 16px 0 0; }
	.bt10-td-controls { flex-direction: column; align-items: flex-start; }
}

/* ===== Team detail page (screenshot layout) ===== */
html.single-bt10_team,
body.single-bt10_team,
body.single-bt10_team .site-main,
body.single-bt10_team #content,
body.single-bt10_team #page,
body.single-bt10_team .page-content,
.bt10-page.bt10-single-team {
	background: #0b0c2a !important;
}

.bt10-team-page {
	background:
		radial-gradient(1000px 420px at 78% 8%, rgba(70, 60, 160, 0.28), transparent 58%),
		linear-gradient(180deg, #12143a 0%, #0b0c2a 42%, #08091f 100%);
	min-height: 80vh;
	padding: 18px 0 90px;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.bt10-team-page::before {
	content: "";
	position: absolute;
	left: -8%;
	right: -8%;
	top: 78px;
	height: 210px;
	/* background:
		radial-gradient(ellipse at 50% 120%, rgba(18, 40, 110, 0.55), transparent 70%),
		linear-gradient(90deg, transparent, rgba(244, 197, 66, 0.18), transparent); */
	pointer-events: none;
}

.bt10-team-wrap {
	max-width: 1340px !important;
	position: relative;
	z-index: 1;
	color: #fff;
}

.bt10-team-page .bt10-season { color: #fff; }

.bt10-team-page .bt10-season select {
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: #0c0d2e url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23ffffff' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E") no-repeat right 12px center;
	min-width: 88px;
}

.bt10-team-page .bt10-strip {
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	padding: 10px 0 26px;
	margin: 0 auto;
	max-width: 90%;
	overflow-x: visible;
}

.bt10-team-page .bt10-strip-item {
	flex: 0 0 110px;
	height: 110px;
	border-radius: 12px;
	border: 1px solid #f4c542;
	background: #10143a;
	box-shadow: none;
	padding: 14px;
}

.bt10-team-page .bt10-strip-item img {
	max-width: 78%;
	max-height: 78%;
	filter: none;
}

.bt10-team-page .bt10-strip-item.is-active {
	border-color: #f4c542;
	background: #1a2058;
	box-shadow: 0 0 0 1px #f4c542;
	transform: none;
}

.bt10-td-hero {
	display: grid;
	grid-template-columns: 170px minmax(0, 1fr) minmax(280px, 360px);
	gap: 20px 28px;
	align-items: center;
	margin: 6px 0 26px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(244, 197, 66, 0.35);
}

.bt10-td-logo img {
	width: 150px;
	height: auto;
	max-height: 150px;
	object-fit: contain;
	filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.bt10-td-name {
	margin: 0;
	font-size: clamp(28px, 3.2vw, 42px);
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #f4c542;
	line-height: 1.1;
	text-align: left;
}

.bt10-td-meta {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 14px;
	background: transparent;
	border: 0;
	border-left: 2px solid #f4c542;
	border-radius: 0;
	padding: 4px 0 4px 22px;
	min-width: 0;
}

.bt10-td-meta-row {
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr);
	gap: 10px;
	align-items: baseline;
}

.bt10-td-meta-row span {
	color: #f4c542;
	font-size: 15px;
	font-weight: 700;
}

.bt10-td-meta-row span::after {
	content: ":";
	margin-left: 4px;
}

.bt10-td-meta-row strong {
	color: #fff;
	font-size: 15px;
	font-weight: 600;
}

.bt10-td-controls {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 4px 0 28px;
}

.bt10-td-filters { display: flex; flex-wrap: wrap; gap: 10px; }

.bt10-td-filter {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(180, 198, 255, 0.35);
	cursor: pointer;
	font-family: inherit;
	font-weight: 700;
	font-size: 14px;
	padding: 9px 20px;
	border-radius: 999px;
	background: #10143a;
	color: #fff;
}

.bt10-td-filter svg { flex: 0 0 auto; }

.bt10-td-filter.is-active {
	background: #f4c542;
	color: #111;
	border-color: #f4c542;
	box-shadow: none;
}

.bt10-td-roster { margin-bottom: 34px; scroll-margin-top: 18px; }

.bt10-td-roster h2 {
	margin: 0 0 16px;
	color: #f4c542;
	font-size: 22px;
	font-weight: 800;
}

.bt10-td-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 16px;
}

.bt10-td-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	border: 1px solid #f4c542;
	border-radius: 10px;
	overflow: hidden;
	background: #10143a;
	transition: transform .18s ease, box-shadow .18s ease;
}

.bt10-td-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.bt10-td-photo {
	position: relative;
	display: block;
	aspect-ratio: 3 / 3.4;
	background: linear-gradient(180deg, #1a2460, #0b1238);
}

.bt10-td-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.bt10-td-silhouette {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 100%;
	color: rgba(255, 255, 255, 0.42);
	padding-bottom: 28px;
}

.bt10-td-role {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #111;
	background: #f4c542;
}

.role-bowler .bt10-td-role,
.role-all_rounder .bt10-td-role,
.role-batter .bt10-td-role,
.role-wicketkeeper .bt10-td-role {
	background: #f4c542;
	color: #111;
}

.bt10-td-pname {
	display: block;
	margin-top: 10px;
	padding: 0 6px 12px;
	background: transparent;
	color: #f4c542;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.25;
}

@media (max-width: 1200px) {
	.bt10-td-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
	.bt10-td-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bt10-td-hero { grid-template-columns: 1fr; text-align: center; }
	.bt10-td-meta { margin: 0 auto; border-left: 0; border-top: 2px solid #f4c542; padding: 16px 0 0; }
}

/* ===== Fixtures page ===== */
.bt10-page-dark,
body.page-fixtures,
body.page-fixtures .site-main,
body.page-fixtures #content,
body.page-results,
body.page-results .site-main,
body.page-results #content,
body.page-points-table,
body.page-points-table .site-main,
body.page-points-table #content,
body.page-player-stats,
body.page-player-stats .site-main,
body.page-player-stats #content {
	background: #0a0a24 !important;
}

.bt10-fixtures-shell {
	background:
		radial-gradient(900px 420px at 85% 0%, rgba(88, 70, 180, 0.26), transparent 55%),
		radial-gradient(700px 380px at 8% 100%, rgba(12, 90, 160, 0.18), transparent 50%),
		linear-gradient(180deg, #161336 0%, #0c0b28 48%, #07071c 100%);
}

.bt10-fx-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 4px 0 28px;
}

.bt10-fx-row {
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr) 158px;
	gap: 18px;
	align-items: center;
	padding: 22px 26px;
	background: rgba(22, 20, 56, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
}

.bt10-fx-date {
	color: #fff;
	font-weight: 700;
	font-size: 16px;
}

.bt10-fx-venue,
.bt10-fx-time {
	color: #9aa3bb;
	font-size: 13px;
	margin-top: 5px;
	line-height: 1.35;
}

.bt10-fx-board {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
}

.bt10-fx-team {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.bt10-fx-crest {
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
}

.bt10-fx-crest img {
	max-width: 48px;
	max-height: 48px;
	object-fit: contain;
}

.bt10-fx-name {
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.25;
}

.bt10-fx-vs {
	color: #fff;
	font-weight: 800;
	font-size: 18px;
}

.bt10-fx-action { text-align: right; }

.bt10-fx-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #f5c445;
	color: #111;
	font-weight: 800;
	font-size: 14px;
	padding: 12px 20px;
	border-radius: 8px;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 8px 18px rgba(245, 196, 69, 0.22);
}

.bt10-fx-btn:hover {
	background: #ffd45a;
	color: #111;
}

/* ===== Results page (score cards) ===== */
.bt10-fx-name-wrap {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 0;
}

.bt10-fx-score {
	color: #9aa3bb;
	font-weight: 800;
	font-size: 16px;
}

.bt10-fx-score em {
	font-style: normal;
	font-weight: 600;
	font-size: 11px;
	color: #6b7290;
	margin-left: 4px;
}

.bt10-fx-team.is-winner .bt10-fx-name { color: #f4c542; }
.bt10-fx-team.is-winner .bt10-fx-score { color: #fff; }

.bt10-rs-row .bt10-fx-action {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
}

.bt10-rs-result {
	color: #f4c542;
	font-size: 12px;
	font-weight: 700;
	text-align: right;
	line-height: 1.3;
}

@media (max-width: 980px) {
	.bt10-fx-row {
		grid-template-columns: 1fr;
	}
	.bt10-fx-action { text-align: left; }
	.bt10-rs-row .bt10-fx-action { align-items: flex-start; }
	.bt10-rs-result { text-align: left; }
}

/* ===== Player profile page ===== */
body.single-bt10_player,
body.single-bt10_player .site-main,
body.single-bt10_player #content,
body.single-bt10_player #page,
body.single-bt10_player .page-content {
	background: #0b1230 !important;
}

.bt10-pp-hero {
	background:
		radial-gradient(900px 420px at 85% 0%, rgba(88, 70, 180, 0.22), transparent 55%),
		linear-gradient(180deg, #10173f 0%, #0b1230 55%, #08102c 100%);
	padding: 22px 0 56px;
	color: #fff;
	overflow: hidden;
}

.bt10-pp-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #c7cce3;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 22px;
}

.bt10-pp-back:hover { color: #f4c542; }

.bt10-pp-grid {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 40px;
	align-items: start;
}

.bt10-pp-photo-col {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.bt10-pp-photo-frame {
	position: relative;
	width: 100%;
}

.bt10-pp-watermark {
	position: absolute;
	top: -10px;
	right: -20px;
	width: 220px;
	height: 220px;
	object-fit: contain;
	opacity: 0.16;
	z-index: 0;
	pointer-events: none;
}

.bt10-pp-streaks {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	background-image:
		linear-gradient(-35deg, transparent 40%, #ff5b8a 40.4%, #ff5b8a 40.9%, transparent 41.3%),
		linear-gradient(-35deg, transparent 48%, #4fd6ff 48.4%, #4fd6ff 48.9%, transparent 49.3%),
		linear-gradient(-35deg, transparent 56%, #f4c542 56.4%, #f4c542 56.9%, transparent 57.3%),
		linear-gradient(-35deg, transparent 64%, #7c5cff 64.4%, #7c5cff 64.9%, transparent 65.3%);
	opacity: 0.65;
}

.bt10-pp-photo {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 1;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 6px;
	overflow: hidden;
	background: linear-gradient(180deg, #232a5c, #131736);
	display: grid;
	place-items: center;
}

.bt10-pp-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.bt10-pp-silhouette { color: rgba(255, 255, 255, 0.4); }

.bt10-pp-card {
	position: relative;
	z-index: 1;
	width: 100%;
	margin-top: 18px;
	background: linear-gradient(180deg, rgba(244, 197, 66, 0.1), rgba(255, 255, 255, 0.04));
	border: 1px solid rgba(244, 197, 66, 0.32);
	border-radius: 12px;
	padding: 18px 16px;
	box-sizing: border-box;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.bt10-pp-name {
	margin: 0;
	font-size: 19px;
	font-weight: 800;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: #f4c542;
	text-align: center;
}

.bt10-pp-role {
	margin: 4px 0 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #c7cce3;
	text-align: center;
}

.bt10-pp-meta-row {
	display: flex;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.bt10-pp-meta-item {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 0 6px;
	text-align: center;
	border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.bt10-pp-meta-item:first-child { border-left: 0; }

.bt10-pp-meta-icon { color: #f4c542; }

.bt10-pp-meta-item strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
}

.bt10-pp-meta-item small {
	display: block;
	margin-top: 2px;
	font-size: 10px;
	color: #9aa3bb;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.bt10-pp-stats-col { min-width: 0; }

.bt10-pp-stats-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	padding-bottom: 12px;
	font-size: 19px;
	font-weight: 800;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: #f4c542;
	border-bottom: 1px solid rgba(244, 197, 66, 0.22);
}

.bt10-pp-title-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(244, 197, 66, 0.14);
	color: #f4c542;
}

.bt10-pp-stats-col .bt10-pp-stats-title:not(:first-child) { margin-top: 34px; }

.bt10-pp-tiles {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 14px;
}

.bt10-pp-tiles-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.bt10-pp-tile {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 18px 10px;
	text-align: center;
	transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.bt10-pp-tile:hover {
	transform: translateY(-3px);
	border-color: rgba(244, 197, 66, 0.45);
	background: linear-gradient(180deg, rgba(244, 197, 66, 0.14), rgba(255, 255, 255, 0.04));
}

.bt10-pp-tile-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-bottom: 10px;
	border-radius: 50%;
	background: rgba(244, 197, 66, 0.14);
	color: #f4c542;
}

.bt10-pp-tile strong {
	display: block;
	font-size: 19px;
	font-weight: 800;
	color: #fff;
}

.bt10-pp-tile-label {
	display: block;
	margin-top: 6px;
	font-size: 11px;
	letter-spacing: .02em;
	color: #aab0c9;
}

@media (max-width: 900px) {
	.bt10-pp-grid { grid-template-columns: 1fr; }
	.bt10-pp-photo-frame { max-width: 320px; }
}

@media (max-width: 640px) {
	.bt10-pp-tiles,
	.bt10-pp-tiles-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.bt10-pp-meta-row { flex-direction: column; gap: 12px; }
	.bt10-pp-meta-item { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 10px; }
	.bt10-pp-meta-item:first-child { border-top: 0; padding-top: 0; }
}

.bt10-shell-dark .bt10-wrap { color: #fff; }

.bt10-panel-dark {
	background: rgba(22, 20, 56, 0.78) !important;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

.bt10-table-dark th {
	background: rgba(255, 255, 255, 0.06);
	color: #f4c542;
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

.bt10-table-dark td {
	color: #fff;
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

.bt10-table-dark a { color: #fff; }
.bt10-table-dark a:hover { color: #f4c542; }
.bt10-table-dark tbody tr:hover { background: rgba(255, 255, 255, 0.04); }
.bt10-table-dark .bt10-pts { color: #f4c542; }

.bt10-shell-dark .bt10-stat-filters { color: #fff; }
.bt10-shell-dark .bt10-radio {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}
.bt10-shell-dark .bt10-radio label:has(input:checked) {
	color: #111;
}

.bt10-shell-dark .bt10-pill {
	font-size: 13px;
	padding: 9px 16px;
}

.bt10-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 20px 4px 6px;
}

.bt10-page-num,
.bt10-page-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 12px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
}

.bt10-page-num:hover,
.bt10-page-btn:hover { border-color: #f4c542; color: #f4c542; }

.bt10-page-num.is-active {
	background: #f4c542;
	border-color: #f4c542;
	color: #111;
}

.bt10-page-btn.is-disabled {
	opacity: 0.4;
	pointer-events: none;
}

