.fad-wrap,
.fad-home-dashboard {
	--fad-font-sans: Arial, Helvetica, sans-serif;
	box-sizing: border-box;
	width: 100%;
	color: #17202a;
	font-family: var(--fad-font-sans);
	font-size: 15px;
	line-height: 1.45;
	text-size-adjust: 100%;
}

.fad-wrap {
	margin: 16px 0;
}

.fad-home-dashboard {
	display: grid;
	gap: 24px;
	max-width: 1180px;
	margin: 0 auto;
	color: #f8fbf8;
}

.fad-home-dashboard > .fad-wrap {
	margin: 0 auto;
}

.fad-wrap *,
.fad-wrap *::before,
.fad-wrap *::after,
.fad-home-dashboard *,
.fad-home-dashboard *::before,
.fad-home-dashboard *::after {
	box-sizing: inherit;
}

.fad-wrap h1,
.fad-wrap h2,
.fad-wrap h3,
.fad-wrap h4,
.fad-wrap h5,
.fad-wrap h6,
.fad-wrap p,
.fad-wrap figure,
.fad-wrap blockquote,
.fad-home-dashboard h1,
.fad-home-dashboard h2,
.fad-home-dashboard h3,
.fad-home-dashboard h4,
.fad-home-dashboard h5,
.fad-home-dashboard h6,
.fad-home-dashboard p,
.fad-home-dashboard figure,
.fad-home-dashboard blockquote {
	margin-block-start: 0;
	margin-block-end: 0;
	font-family: var(--fad-font-sans) !important;
	letter-spacing: 0;
	line-height: inherit;
}

.fad-wrap a,
.fad-wrap button,
.fad-wrap input,
.fad-wrap select,
.fad-wrap textarea,
.fad-home-dashboard a,
.fad-home-dashboard button,
.fad-home-dashboard input,
.fad-home-dashboard select,
.fad-home-dashboard textarea {
	font-family: var(--fad-font-sans);
}

.fad-wrap img,
.fad-home-dashboard img {
	max-width: 100%;
	height: auto;
}

.fad-card {
	margin: 0 0 12px;
	padding: 14px;
	border: 1px solid #d8dee6;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
}

.fad-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: space-between;
	margin-bottom: 10px;
	color: #607080;
	font-size: 13px;
}

.fad-match-card {
	position: relative;
	overflow: hidden;
}

.fad-match-main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: 14px;
}

.fad-team {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	font-weight: 600;
}

.fad-team-away {
	justify-content: flex-end;
	text-align: right;
}

.fad-team img,
.fad-league-card img {
	width: 28px;
	height: 28px;
	flex: 0 0 auto;
	object-fit: contain;
	border-radius: 50%;
	background: #f4f6f8;
}

.fad-team span,
.fad-team strong {
	min-width: 0;
	overflow-wrap: anywhere;
}

.fad-score {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 58px;
	padding: 6px 8px;
	border-radius: 8px;
	background: #f3f6f9;
	color: #101828;
	font-weight: 700;
	white-space: nowrap;
}

.fad-score-large {
	min-width: 86px;
	padding: 10px 12px;
	font-size: 22px;
}

.fad-status,
.fad-time,
.fad-league {
	display: inline-flex;
	align-items: center;
	color: #52616f;
	font-size: 13px;
}

.fad-match-card > .fad-status {
	margin-top: 10px;
}

.fad-live {
	border-color: #15a46a;
}

.fad-live .fad-status {
	color: #0f8a58;
	font-weight: 700;
}

.fad-live::before {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #ff3d48;
	box-shadow: 0 0 0 0 rgba(255, 61, 72, 0.38);
	animation: fad-live-pulse 1.8s ease-in-out infinite;
	content: "";
}

@keyframes fad-live-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 61, 72, 0.38);
		opacity: 0.82;
	}

	50% {
		box-shadow: 0 0 0 7px rgba(255, 61, 72, 0.08);
		opacity: 1;
	}

	100% {
		box-shadow: 0 0 0 0 rgba(255, 61, 72, 0);
		opacity: 0.86;
	}
}

.fad-detail-card .fad-league {
	margin-bottom: 12px;
	font-weight: 700;
}

.fad-detail-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-top: 16px;
}

.fad-detail-grid div {
	padding: 10px;
	border-radius: 8px;
	background: #f6f8fa;
}

.fad-detail-grid span {
	display: block;
	margin-bottom: 3px;
	color: #607080;
	font-size: 12px;
}

.fad-table-scroll {
	width: 100%;
	overflow-x: auto;
	border: 1px solid #d8dee6;
	border-radius: 8px;
	background: #fff;
}

.fad-table {
	width: 100%;
	min-width: 680px;
	border-collapse: collapse;
}

.fad-table th,
.fad-table td {
	padding: 10px;
	border-bottom: 1px solid #edf1f5;
	text-align: left;
	vertical-align: middle;
}

.fad-table th {
	background: #f6f8fa;
	color: #52616f;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.fad-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
}

.fad-league-card {
	display: flex;
	align-items: center;
	gap: 10px;
}

.fad-lineup-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.fad-player-list {
	display: grid;
	gap: 8px;
	margin: 10px 0 0;
	padding: 0;
	list-style: none;
}

.fad-player-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px;
	border-radius: 8px;
	background: #f6f8fa;
}

.fad-player-list li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #e8eef5;
	color: #415164;
	font-size: 12px;
	font-weight: 700;
}

.fad-player-list li img {
	width: 36px;
	height: 36px;
	flex: 0 0 auto;
	object-fit: cover;
	border-radius: 50%;
	background: #e8eef5;
}

.fad-lineup-team-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: -2px -2px 12px;
	padding: 10px 12px;
	border-radius: 8px;
	background: #edf3fb;
}

.fad-lineup-team-head img {
	width: 30px;
	height: 30px;
	object-fit: contain;
	border-radius: 50%;
	background: #fff;
}

.fad-lineup-team-head strong,
.fad-lineup-team-head small {
	display: block;
}

.fad-lineup-team-head small {
	margin-top: 2px;
	color: #6c7784;
	font-size: 12px;
}

.fad-stats-row + .fad-stats-row {
	margin-top: 14px;
}

.fad-stats-values {
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr) 70px;
	gap: 8px;
	margin-bottom: 7px;
	text-align: center;
}

.fad-stats-values span:first-child {
	text-align: left;
}

.fad-stats-values span:last-child {
	text-align: right;
}

.fad-stat-bar {
	position: relative;
	height: 8px;
	overflow: hidden;
	border-radius: 999px;
	background: #e7edf3;
}

.fad-stat-bar span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #2878d8, #15a46a);
}

.fad-stat-board {
	padding: 14px;
	border: 1px solid #d8dee6;
	border-radius: 8px;
	background: #fff;
}

.fad-stat-board-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	margin-bottom: 14px;
}

.fad-stat-board-head div {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.fad-stat-board-head div:last-child {
	justify-content: flex-end;
	text-align: right;
}

.fad-stat-board-head img {
	width: 30px;
	height: 30px;
	flex: 0 0 auto;
	object-fit: contain;
	border-radius: 50%;
	background: #f6f8fa;
}

.fad-stat-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
}

.fad-stat-tabs span {
	padding: 8px 12px;
	border-radius: 5px;
	background: #f0f0f0;
	color: #333;
	font-weight: 700;
}

.fad-stat-tabs .is-active {
	background: #178be7;
	color: #fff;
}

.fad-possession {
	display: grid;
	gap: 8px;
	margin-bottom: 14px;
	text-align: center;
}

.fad-possession-bar,
.fad-stat-split {
	display: flex;
	width: 100%;
	overflow: hidden;
	border-radius: 4px;
	background: #e7edf3;
}

.fad-possession-bar {
	height: 34px;
}

.fad-possession-bar span,
.fad-stat-split span {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	height: 100%;
	padding: 0 8px;
	color: #fff;
	font-weight: 900;
}

.fad-possession-bar .is-home,
.fad-stat-split .is-home {
	justify-content: flex-start;
	background: #3b7fd7;
}

.fad-possession-bar .is-away,
.fad-stat-split .is-away {
	justify-content: flex-end;
	background: #f5b543;
}

.fad-stat-split {
	height: 4px;
	border-radius: 999px;
}

.fad-stats-values .is-strong {
	color: #fff;
}

.fad-stats-values .is-strong:first-child {
	justify-self: start;
	padding: 1px 6px;
	border-radius: 4px;
	background: #3b7fd7;
}

.fad-stats-values .is-strong:last-child {
	justify-self: end;
	padding: 1px 6px;
	border-radius: 4px;
	background: #f5b543;
}

.fad-timeline {
	margin-top: 12px;
}

.fad-timeline-item {
	display: grid;
	grid-template-columns: 54px 140px minmax(0, 1fr);
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid #edf1f5;
}

.fad-timeline-item:last-child {
	border-bottom: 0;
}

.fad-timeline-item span {
	color: #0f8a58;
	font-weight: 700;
}

.fad-timeline-item em {
	color: #52616f;
	font-style: normal;
	overflow-wrap: anywhere;
}

.fad-key-value {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 9px 0;
	border-bottom: 1px solid #edf1f5;
}

.fad-key-value:last-child {
	border-bottom: 0;
}

.fad-error,
.fad-empty {
	padding: 14px;
	border: 1px solid #d8dee6;
	border-radius: 8px;
	background: #f8fafc;
	color: #52616f;
}

.fad-error {
	border-color: #f0c5c5;
	background: #fff6f6;
	color: #9f1f1f;
}

.fad-debug {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(159, 31, 31, 0.22);
	color: #6f2424;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 12px;
	overflow-wrap: anywhere;
}

.fad-match-center {
	padding: 20px;
	border-radius: 8px;
	background: #171717;
	color: #f7f7f7;
}

.fad-match-center .fad-card,
.fad-match-center .fad-table-scroll,
.fad-match-center .fad-empty {
	border-color: rgba(255, 255, 255, 0.12);
	background: #252525;
	color: #f7f7f7;
	box-shadow: none;
}

.fad-mc-hero {
	margin-bottom: 20px;
	padding: 18px;
	border-radius: 8px;
	background: #282828;
}

.fad-mc-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.fad-mc-tabs button {
	appearance: none;
	padding: 11px 14px;
	border: 0;
	border-bottom: 3px solid transparent;
	background: transparent;
	color: #d8d8d8;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.fad-mc-tabs button.is-active {
	border-color: #f4c430;
	color: #f4c430;
}

.fad-mc-meta,
.fad-mc-scoreboard,
.fad-mc-grid,
.fad-mc-facts,
.fad-mc-links,
.fad-mc-anchors {
	display: grid;
	gap: 12px;
}

.fad-mc-meta {
	grid-template-columns: repeat(2, max-content);
	justify-content: center;
	color: #c8c8c8;
	font-size: 14px;
}

.fad-mc-scoreboard {
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	margin-top: 14px;
}

.fad-mc-team {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	min-width: 0;
	text-align: right;
	font-size: 20px;
	font-weight: 800;
}

.fad-mc-team-away {
	flex-direction: row-reverse;
	justify-content: flex-end;
	text-align: left;
}

.fad-mc-team img {
	width: 72px;
	height: 72px;
	flex: 0 0 auto;
	object-fit: contain;
	border-radius: 50%;
	background: #454545;
	padding: 8px;
}

.fad-mc-team strong {
	min-width: 0;
	overflow-wrap: anywhere;
}

.fad-mc-score {
	display: grid;
	grid-template-columns: auto auto auto;
	align-items: center;
	gap: 8px;
	text-align: center;
}

.fad-mc-score span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 58px;
	height: 58px;
	border-radius: 8px;
	background: #464646;
	font-size: 34px;
	font-weight: 800;
}

.fad-mc-score span:first-child {
	box-shadow: inset 4px 0 0 #e95252;
}

.fad-mc-score span:nth-child(3) {
	box-shadow: inset -4px 0 0 #5067d9;
}

.fad-mc-score b {
	font-size: 26px;
}

.fad-mc-score em {
	grid-column: 1 / -1;
	justify-self: center;
	padding: 6px 14px;
	border-radius: 6px;
	background: #f4c430;
	color: #1c1c1c;
	font-size: 13px;
	font-style: normal;
	font-weight: 800;
	text-transform: uppercase;
}

.fad-mc-grid {
	grid-template-columns: minmax(0, 1fr) 320px;
	align-items: start;
}

.fad-mc-grid--single {
	grid-template-columns: minmax(0, 1fr);
}

.fad-mc-main,
.fad-mc-side {
	display: grid;
	gap: 16px;
}

.fad-mc-panel {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	background: #222;
}

.fad-mc-main > .fad-mc-panel[data-fad-panel] {
	display: none;
}

.fad-mc-main > .fad-mc-panel[data-fad-panel].is-active {
	display: block;
}

.fad-match-center--one-page .fad-mc-main {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(320px, 1fr);
	gap: 18px 20px;
}

.fad-match-center--one-page .fad-mc-live-panel,
.fad-match-center--one-page .fad-mc-main > .fad-mc-panel[data-fad-panel] {
	display: block;
}

.fad-match-center--one-page .fad-mc-live-panel {
	grid-column: 1 / -1;
	order: 1;
}

.fad-match-center--one-page .fad-mc-main > .fad-mc-panel[data-fad-panel="odds"] {
	grid-column: 1 / -1;
	order: 2;
}

.fad-match-center--one-page .fad-mc-main > .fad-mc-panel[data-fad-panel="overview"] {
	grid-column: 1;
	order: 3;
}

.fad-match-center--one-page .fad-mc-main > .fad-mc-panel[data-fad-panel="stats"] {
	grid-column: 2;
	order: 4;
}

.fad-match-center--one-page .fad-mc-main:not(:has(> .fad-mc-panel[data-fad-panel="stats"])) > .fad-mc-panel[data-fad-panel="overview"] {
	grid-column: 1 / -1;
}

.fad-match-center--one-page .fad-mc-main > .fad-mc-panel[data-fad-panel="events"] {
	grid-column: 1 / -1;
	order: 5;
}

.fad-match-center--one-page .fad-mc-main > .fad-mc-panel[data-fad-panel="h2h"] {
	grid-column: 1 / -1;
	order: 6;
}

.fad-match-center--one-page .fad-mc-main > .fad-mc-panel[data-fad-panel="form"] {
	grid-column: 1 / -1;
	order: 7;
}

.fad-match-center--one-page .fad-mc-main > .fad-mc-panel[data-fad-panel="lineup"] {
	grid-column: 1 / -1;
	order: 8;
}

.fad-match-center--one-page .fad-mc-panel {
	border: 0;
	border-radius: 0;
	background: transparent;
}

.fad-match-center--one-page .fad-mc-panel > h2 {
	margin: 0 0 14px;
	padding: 0 0 0 12px;
	border: 0;
	border-left: 4px solid #f4c430;
	background: transparent;
	font-size: 22px;
	font-weight: 850;
	text-transform: uppercase;
}

.fad-match-center--one-page .fad-mc-panel > .fad-wrap,
.fad-match-center--one-page .fad-mc-panel > .fad-card,
.fad-match-center--one-page .fad-mc-panel > .fad-table-scroll,
.fad-match-center--one-page .fad-mc-panel > .fad-empty,
.fad-match-center--one-page .fad-mc-empty-block,
.fad-match-center--one-page .fad-mc-form-grid,
.fad-match-center--one-page .fad-lineup {
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	background: #252525;
}

@media (max-width: 920px) {
	.fad-match-center--one-page .fad-mc-main {
		grid-template-columns: 1fr;
	}

	.fad-match-center--one-page .fad-mc-live-panel,
	.fad-match-center--one-page .fad-mc-main > .fad-mc-panel[data-fad-panel] {
		grid-column: 1;
	}
}

.fad-mc-panel h2 {
	margin: 0;
	padding: 14px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	text-transform: uppercase;
}

.fad-mc-live-panel {
	overflow: hidden;
	border: 1px solid rgba(244, 196, 48, 0.34);
	border-radius: 8px;
	background: #111;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.fad-mc-live-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 14px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: #202020;
}

.fad-mc-live-head span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 4px;
	color: #f4c430;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.fad-mc-live-head span::before {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ff3d48;
	box-shadow: 0 0 0 5px rgba(255, 61, 72, 0.14);
	content: "";
}

.fad-mc-live-head h2 {
	margin: 0;
	padding: 0;
	border: 0;
	color: #fff;
	font-size: 20px;
	font-weight: 900;
	text-transform: uppercase;
}

.fad-mc-live-head h2::before,
.fad-mc-live-head h2::after {
	display: none !important;
	content: none !important;
}

.fad-mc-live-head .ez-toc-section,
.fad-mc-live-head .ez-toc-section-end {
	display: none !important;
}

.fad-mc-live-head small {
	max-width: 44%;
	overflow: hidden;
	color: #c8c8c8;
	font-size: 12px;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fad-mc-live-screen {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at center, rgba(244, 196, 48, 0.08), transparent 42%),
		#050505;
	aspect-ratio: 16 / 9;
}

.fad-mc-live-screen iframe,
.fad-mc-live-screen video {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
	background: #050505;
}

.fad-mc-live-actions {
	display: flex;
	justify-content: flex-end;
	padding: 12px 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: #181818;
}

.fad-mc-live-actions a {
	min-height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	border: 1px solid #f4c430;
	border-radius: 6px;
	color: #f4c430;
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
}

.fad-mc-tracker {
	background: #111;
}

.fad-mc-tracker iframe {
	display: block;
	width: 100%;
	min-height: 520px;
	border: 0;
	background: #111;
}

.fad-mc-stat-stage {
	position: relative;
	min-height: 360px;
	overflow: hidden;
	background: #161616;
}

.fad-mc-field {
	position: absolute;
	inset: 18px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	background:
		linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.4) calc(50% - 1px), rgba(255, 255, 255, 0.4) calc(50% + 1px), transparent calc(50% + 1px)),
		repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 12%, transparent 12% 24%),
		linear-gradient(135deg, #3f8a45, #74b85b);
	opacity: 0.85;
}

.fad-mc-field::before,
.fad-mc-field::after {
	position: absolute;
	top: 26%;
	width: 16%;
	height: 48%;
	border: 2px solid rgba(255, 255, 255, 0.58);
	content: "";
}

.fad-mc-field::before {
	left: 0;
	border-left: 0;
}

.fad-mc-field::after {
	right: 0;
	border-right: 0;
}

.fad-mc-stat-cloud {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	max-width: 760px;
	margin: 0 auto;
	padding: 42px 32px;
	background: rgba(34, 34, 34, 0.88);
}

.fad-mc-stat-tile {
	display: grid;
	gap: 8px;
	text-align: center;
}

.fad-mc-stat-tile div {
	display: flex;
	justify-content: center;
	gap: 18px;
	font-size: 26px;
	font-weight: 900;
}

.fad-mc-stat-tile i {
	position: relative;
	display: block;
	width: 70px;
	height: 42px;
	margin: 0 auto;
	border-radius: 6px;
	background: #f4c86a;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.14);
}

.fad-mc-stat-tile i b {
	display: block;
	height: 100%;
	border-radius: inherit 0 0 inherit;
	background: #78aee0;
}

.fad-mc-stat-tile strong {
	color: #fff;
	font-size: 18px;
	line-height: 1.18;
}

.fad-mc-empty-block {
	padding: 22px;
	color: #c8c8c8;
}

.fad-mc-panel > .fad-wrap {
	margin: 0;
	padding: 14px;
	color: #f7f7f7;
}

.fad-match-center .fad-table th {
	background: #111;
	color: #f4c430;
}

.fad-odds .fad-table-scroll {
	overflow-x: hidden;
}

.fad-odds-table {
	width: 100%;
	min-width: 0;
	table-layout: fixed;
	text-align: center;
}

.fad-odds-table .fad-odds-label-col {
	width: 21%;
}

.fad-odds-table .fad-odds-market-col {
	width: 6.5833%;
}

.fad-odds-table th,
.fad-odds-table td {
	padding: 6px 3px;
	text-align: center;
	white-space: nowrap;
}

.fad-odds-table thead tr:first-child th {
	border-right: 1px solid rgba(255, 255, 255, 0.16);
	background: #242424;
	color: #fff;
	font-size: 11px;
	letter-spacing: 0;
}

.fad-odds-table thead tr:nth-child(2) th {
	background: #0f0f0f;
	color: #e8e8e8;
	font-size: 10px;
}

.fad-odds-table tbody th {
	background: rgba(255, 255, 255, 0.03);
	color: #f7f7f7;
	font-size: 10px;
	font-weight: 800;
	line-height: 1.25;
	text-align: left;
}

.fad-odds-table tbody td {
	background: rgba(255, 255, 255, 0.045);
	color: #f6f8fb;
	font-size: 12px;
	font-weight: 800;
	opacity: 1;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.fad-odds-table tbody tr:nth-child(even) td {
	background: rgba(255, 255, 255, 0.065);
}

.fad-odds-table tbody th span {
	display: block;
	max-width: 100%;
	overflow-wrap: anywhere;
	white-space: normal;
}

.fad-odds-table tbody th.is-live-label span {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
	color: #f4c430;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
}

.fad-odds-table tbody th.is-live-label span::after {
	flex: 0 0 7px;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: #ff3d48;
	box-shadow: 0 0 0 0 rgba(255, 61, 72, 0.38);
	animation: fad-live-pulse 1.8s ease-in-out infinite;
	content: "";
}

.fad-odds-table td:nth-child(4),
.fad-odds-table td:nth-child(7),
.fad-odds-table td:nth-child(10),
.fad-odds-table td:nth-child(13) {
	border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.fad-match-center .fad-table small {
	display: block;
	margin-top: 2px;
	color: #b7b7b7;
	font-size: 12px;
	font-weight: 500;
}

.fad-match-center .fad-table td,
.fad-match-center .fad-table th,
.fad-match-center .fad-timeline-item,
.fad-match-center .fad-key-value {
	border-color: rgba(255, 255, 255, 0.1);
}

.fad-match-center .fad-status,
.fad-match-center .fad-time,
.fad-match-center .fad-league,
.fad-match-center .fad-card-meta,
.fad-match-center .fad-detail-grid span {
	color: #c8c8c8;
}

.fad-match-center .fad-player-list li,
.fad-match-center .fad-detail-grid div {
	background: #303030;
	color: #f7f7f7;
}

.fad-match-center .fad-player-list li img {
	background: #191919;
}

.fad-match-center .fad-player-list li span {
	background: #191919;
	color: #f4c430;
}

.fad-match-center .fad-lineup-team-head {
	background: #2c333d;
	color: #f7f7f7;
}

.fad-match-center .fad-lineup-team-head img {
	background: #181818;
}

.fad-match-center .fad-lineup-team-head small,
.fad-match-center .fad-player-list li em {
	color: #b7b7b7;
}

.fad-match-center .fad-stat-board {
	border-color: rgba(255, 255, 255, 0.1);
	background: #222;
	color: #f7f7f7;
}

.fad-match-center .fad-stat-tabs span {
	background: #333;
	color: #ddd;
}

.fad-match-center .fad-stat-tabs .is-active {
	background: #f4c430;
	color: #111;
}

.fad-match-center .fad-stat-bar {
	background: #444;
}

.fad-match-center .fad-stat-bar span {
	background: linear-gradient(90deg, #75a7da, #f7c86a);
}

.fad-match-center .fad-possession-bar,
.fad-match-center .fad-stat-split {
	background: #333;
}

.fad-mc-facts {
	padding: 14px;
}

.fad-mc-facts div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fad-mc-facts div:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.fad-mc-facts span {
	color: #b7b7b7;
}

.fad-mc-facts strong {
	text-align: right;
	overflow-wrap: anywhere;
}

.fad-mc-links,
.fad-mc-anchors,
.fad-mc-data-list {
	padding: 14px;
}

.fad-mc-data-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.fad-mc-data-list span {
	padding: 7px 9px;
	border-radius: 6px;
	background: rgba(244, 196, 48, 0.13);
	color: #f4c430;
	font-weight: 800;
}

.fad-mc-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	border: 1px solid #f4c430;
	border-radius: 6px;
	color: #f4c430;
	font-weight: 800;
	text-decoration: none;
}

.fad-mc-anchor {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.fad-mc-anchor img {
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	object-fit: cover;
	border-radius: 50%;
	background: #333;
}

.fad-mc-anchor span {
	min-width: 0;
	overflow-wrap: anywhere;
}

.fad-lineup-pitch {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 20px;
	margin-bottom: 14px;
	padding: 28px;
	border-radius: 8px;
	background:
		linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.38) calc(50% - 1px), rgba(255, 255, 255, 0.38) calc(50% + 1px), transparent calc(50% + 1px)),
		repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 12%, transparent 12% 24%),
		linear-gradient(135deg, #39904b, #71b55a);
}

.fad-lineup-pitch-coordinate {
	display: block;
	aspect-ratio: 2.08 / 1;
	min-height: 430px;
	overflow: hidden;
	padding: 0;
	background:
		radial-gradient(circle at 50% 50%, transparent 0 6%, rgba(255, 255, 255, 0.36) 6.2% 6.6%, transparent 6.8%),
		linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.38) calc(50% - 1px), rgba(255, 255, 255, 0.38) calc(50% + 1px), transparent calc(50% + 1px)),
		repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 12%, transparent 12% 24%),
		linear-gradient(135deg, #36964d, #48a95b);
}

.fad-pitch-line {
	position: absolute;
	inset: 14px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	pointer-events: none;
}

.fad-pitch-team {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
	align-content: center;
	gap: 12px;
	min-height: 280px;
}

.fad-pitch-player {
	display: grid;
	justify-items: center;
	gap: 5px;
	min-width: 0;
	color: #fff;
	text-align: center;
}

.fad-pitch-player-positioned {
	position: absolute;
	z-index: 2;
	width: 104px;
	transform: translate(-50%, -50%);
}

.fad-pitch-player span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #111;
	color: #f4c430;
	font-weight: 900;
}

.fad-pitch-player-positioned span {
	width: 48px;
	height: 48px;
	overflow: hidden;
	border: 3px solid rgba(255, 255, 255, 0.92);
	background: #f4f4f4;
	color: #111;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.fad-pitch-player-positioned img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fad-pitch-player-positioned small {
	color: rgba(255, 255, 255, 0.94);
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
}

.fad-pitch-player strong {
	max-width: 100%;
	font-size: 12px;
	line-height: 1.15;
	overflow-wrap: anywhere;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.fad-pitch-player-positioned strong {
	display: -webkit-box;
	min-height: 28px;
	overflow: hidden;
	font-size: 12px;
	font-weight: 800;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.fad-lineup-formation {
	position: absolute;
	bottom: 16px;
	z-index: 2;
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
}

.fad-lineup-formation-home {
	left: 24px;
}

.fad-lineup-formation-away {
	right: 24px;
}

.fad-lineup .fad-card h3,
.fad-lineup .fad-card h4,
.fad-mc-form-grid .fad-card h3 {
	margin: 0 0 10px;
	color: #fff;
}

.fad-lineup-subtitle {
	margin: 12px 0 8px;
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
}

.fad-lineup .fad-card h3 small {
	margin-left: 8px;
	color: #f4c430;
	font-size: 12px;
}

.fad-player-list li {
	position: relative;
}

.fad-player-list li em {
	margin-left: auto;
	color: #b7b7b7;
	font-size: 12px;
	font-style: normal;
}

.fad-player-list li b {
	padding: 2px 5px;
	border-radius: 4px;
	background: #f4c430;
	color: #111;
	font-size: 11px;
}

.fad-mc-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	padding: 14px;
}

.fad-h2h {
	display: grid;
	gap: 0;
}

.fad-result-row,
.fad-mc-form-row {
	display: grid;
	grid-template-columns: minmax(92px, 0.22fr) minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	min-height: 66px;
	margin: 0;
	padding: 12px 16px;
	border-top: 1px solid #edf1f5;
}

.fad-h2h .fad-result-row:first-child,
.fad-mc-form-grid .fad-card .fad-result-row:first-of-type {
	border-top: 0;
}

.fad-match-center .fad-h2h .fad-card,
.fad-match-center .fad-mc-form-row {
	border-right: 0;
	border-bottom: 0;
	border-left: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.fad-result-time,
.fad-mc-form-row > span {
	color: #607080;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.35;
}

.fad-result-match {
	display: grid;
	grid-template-columns: minmax(96px, 190px) 86px minmax(96px, 190px);
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-width: 0;
}

.fad-result-team,
.fad-mc-form-row strong {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	color: #17202a;
	font-size: 16px;
	font-weight: 850;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.fad-result-team-home {
	justify-content: flex-end;
	text-align: right;
}

.fad-result-team-away {
	justify-content: flex-start;
	text-align: left;
}

.fad-result-team span {
	min-width: 0;
	overflow-wrap: anywhere;
}

.fad-result-team img {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 3px;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.08);
}

.fad-match-center .fad-result-row,
.fad-match-center .fad-mc-form-row {
	border-top-color: rgba(255, 255, 255, 0.1);
}

.fad-match-center .fad-result-time,
.fad-match-center .fad-mc-form-row > span {
	color: #b7b7b7;
}

.fad-match-center .fad-result-team,
.fad-match-center .fad-mc-form-row strong {
	color: #f6f8fb;
}

.fad-result-score,
.fad-mc-form-row b {
	justify-self: center;
	min-width: 86px;
	padding: 8px 11px;
	border-radius: 8px;
	background: #f4c430;
	color: #111;
	font-size: 19px;
	font-weight: 950;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
}

.fad-result-score em {
	margin: 0 5px;
	font-style: normal;
}

.fad-result-score span {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
}

.fad-standing-board {
	position: relative;
	margin: 0 auto 24px;
	padding: 0 20px 28px;
	background: #262626;
	color: #fff;
	font-size: 14px;
}

.fad-standing-title {
	margin: 0;
	padding: 0 0 54px;
	color: #ffc71e;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
}

.fad-standing-toolbar {
	position: relative;
	z-index: 4;
	min-height: 52px;
	margin-bottom: -8px;
}

.fad-standing-selector {
	position: relative;
	width: min(340px, 100%);
}

.fad-standing-current {
	appearance: none;
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) 16px;
	align-items: center;
	gap: 9px;
	width: 100%;
	min-height: 42px;
	padding: 7px 10px;
	border: 1px solid #d8d8d8;
	border-radius: 4px;
	background: #252525;
	color: #ffc71e;
	font: inherit;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.fad-standing-current span:not(.fad-standing-logo-placeholder) {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fad-standing-current img,
.fad-standing-option img,
.fad-standing-logo-placeholder,
.fad-standing-team-placeholder {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	object-fit: contain;
	background: #39423a;
}

.fad-standing-current i {
	width: 0;
	height: 0;
	border-right: 7px solid transparent;
	border-left: 7px solid transparent;
	border-top: 13px solid #ffc71e;
}

.fad-standing-menu {
	position: absolute;
	top: calc(100% + 1px);
	left: 0;
	width: 100%;
	max-height: 440px;
	overflow: hidden;
	border: 1px solid #e4e4e4;
	background: #252525;
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.38);
}

.fad-standing-search {
	display: block;
	width: 100%;
	height: 42px;
	padding: 0 14px;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 0;
	background: #fff;
	color: #1f1f1f;
	font: inherit;
}

.fad-standing-options {
	max-height: 390px;
	overflow-y: auto;
}

.fad-standing-option,
.fad-standing-no-option {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	align-items: center;
	gap: 9px;
	min-height: 48px;
	padding: 8px 10px;
	color: #f4f4f4;
	text-decoration: none;
}

.fad-standing-option:hover,
.fad-standing-option:focus,
.fad-standing-option.is-active {
	background: #151515;
	color: #ffc71e;
}

.fad-standing-option span:not(.fad-standing-logo-placeholder) {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fad-standing-table-wrap {
	width: 100%;
	overflow-x: auto;
	background: #262626;
}

.fad-standing-table {
	width: 100%;
	min-width: 920px;
	border-collapse: collapse;
	color: #fff;
}

.fad-standing-table th,
.fad-standing-table td {
	padding: 13px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}

.fad-standing-table thead .fad-standing-band th {
	height: 38px;
	padding: 0;
	border: 0;
	background: #ffc71e;
}

.fad-standing-table thead tr:last-child th {
	background: #101010;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
}

.fad-standing-table .fad-standing-team-head {
	text-align: left;
}

.fad-standing-team-cell {
	display: grid;
	grid-template-columns: 30px 30px minmax(0, 1fr);
	align-items: center;
	gap: 8px;
	text-align: left;
}

.fad-standing-team-cell img,
.fad-standing-team-placeholder {
	width: 28px;
	height: 28px;
	flex: 0 0 auto;
}

.fad-standing-position {
	color: #fff;
	text-align: center;
}

.fad-standing-team-cell strong {
	min-width: 0;
	overflow: hidden;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fad-standing-table tbody tr {
	background: #292929;
}

.fad-standing-table tbody tr:nth-child(even) {
	background: #252525;
}

.fad-standing-table tbody tr:hover {
	background: #303030;
}

.fad-standing-form {
	min-width: 112px;
}

.fad-form-dot,
.fad-standing-form-empty {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	margin: 0 2px;
	border-radius: 50%;
	background: #777;
	color: #111;
	font-size: 11px;
	font-weight: 900;
}

.fad-form-w {
	background: #37c875;
}

.fad-form-d {
	background: #d8d8d8;
}

.fad-form-l {
	background: #ff5d5d;
}

.fad-form-n {
	background: #ffc71e;
}

.fad-standing-form-empty {
	background: transparent;
	color: #cfcfcf;
}

.fad-standing-legend {
	display: grid;
	gap: 6px;
	padding: 14px 0 0;
	color: #fff;
	font-size: 12px;
}

.fad-standing-legend span {
	display: flex;
	align-items: center;
	gap: 8px;
}

.fad-standing-legend i {
	width: 14px;
	height: 14px;
	border-radius: 3px;
}

.fad-legend-degrade {
	background: #d8d1d1;
}

.fad-legend-champions {
	background: #ff6464;
}

.fad-legend-europa {
	background: #35c8ff;
}

.fad-live-schedule {
	--fad-ls-bg: #050806;
	--fad-ls-panel: #0c100e;
	--fad-ls-card: #090d0b;
	--fad-ls-border: rgba(255, 255, 255, 0.17);
	--fad-ls-muted: #b5bcb7;
	--fad-ls-green: #19e37a;
	--fad-ls-green-deep: #05b94f;
	--fad-ls-yellow: #ffc71e;
	--fad-ls-red: #d3424a;
	max-width: 1180px;
	margin: 0 auto 30px;
	padding: 24px 20px 30px;
	background: var(--fad-ls-bg);
	color: #f8fbf8;
	overflow: hidden;
}

.fad-ls-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.fad-ls-heading span {
	display: block;
	margin-bottom: 10px;
	color: var(--fad-ls-green);
	font-size: 13px;
	font-weight: 950;
	letter-spacing: 0.28em;
	line-height: 1;
	text-transform: uppercase;
}

.fad-ls-heading h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 950;
	line-height: 1.04;
	text-wrap: balance;
}

.fad-ls-heading a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 7px;
	color: #e7eae8;
	font-size: 15px;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
}

.fad-ls-heading a b {
	color: var(--fad-ls-green);
	font-size: 22px;
	line-height: 1;
}

.fad-ls-filters {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 24px;
	padding: 16px;
	border: 1px solid var(--fad-ls-border);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.015);
}

.fad-ls-filters button {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-height: 46px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 7px;
	background: #202530;
	color: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 950;
	letter-spacing: 0.04em;
	line-height: 1;
	text-transform: uppercase;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
	cursor: pointer;
}

.fad-ls-filters button.is-active {
	border-color: var(--fad-ls-green);
	background: var(--fad-ls-green);
	color: #071109;
	box-shadow: 0 12px 28px rgba(25, 227, 122, 0.14);
}

.fad-ls-filters i {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 17px;
	height: 17px;
	flex: 0 0 auto;
	font-style: normal;
}

.fad-ls-filters i.is-ball::before {
	content: "⚽";
	font-size: 17px;
	line-height: 1;
}

.fad-ls-filters i.is-dot {
	border: 2px solid currentColor;
	border-radius: 50%;
}

.fad-ls-filters i.is-dot::after {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	content: "";
}

.fad-ls-filters i.is-slash::before {
	width: 13px;
	height: 4px;
	border-radius: 99px;
	background: currentColor;
	transform: skewX(-18deg);
	content: "";
}

.fad-ls-filters em {
	font-style: normal;
}

.fad-ls-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 20px;
}

.fad-ls-card {
	position: relative;
	display: grid;
	grid-template-rows: auto auto minmax(142px, 1fr) auto;
	min-height: 260px;
	overflow: hidden;
	border: 1px solid var(--fad-ls-border);
	border-radius: 8px;
	background:
		linear-gradient(rgba(9, 13, 11, 0.92), rgba(9, 13, 11, 0.92)),
		var(--fad-ls-card);
}

.fad-ls-card::before {
	position: absolute;
	inset: 50px 18% auto;
	height: 88px;
	color: rgba(25, 227, 122, 0.075);
	font-size: 88px;
	font-weight: 950;
	line-height: 1;
	text-align: center;
	content: "TLV";
	pointer-events: none;
}

.fad-ls-card.is-live {
	border-color: rgba(25, 227, 122, 0.66);
	box-shadow: inset 0 0 0 1px rgba(25, 227, 122, 0.1);
}

.fad-ls-card-head {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	min-height: 48px;
	padding: 18px 18px 0;
}

.fad-ls-card-head strong {
	min-width: 0;
	color: #f7f7f7;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.28;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fad-ls-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 11px;
	border: 1px solid rgba(255, 199, 30, 0.58);
	border-radius: 6px;
	color: var(--fad-ls-yellow);
	font-size: 12px;
	font-weight: 950;
	line-height: 1;
	white-space: nowrap;
}

.fad-ls-card.is-live .fad-ls-status {
	border-color: var(--fad-ls-green);
	background: var(--fad-ls-green-deep);
	color: #fff;
	box-shadow: 0 0 0 0 rgba(25, 227, 122, 0.22);
	animation: fad-live-soft-glow 1.8s ease-in-out infinite;
}

.fad-ls-card.is-finished .fad-ls-status {
	border-color: rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.08);
	color: #ddd;
}

@keyframes fad-live-soft-glow {
	0% {
		box-shadow: 0 0 0 0 rgba(25, 227, 122, 0.2);
	}

	50% {
		box-shadow: 0 0 0 7px rgba(25, 227, 122, 0.06);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(25, 227, 122, 0);
	}
}

.fad-ls-time {
	position: relative;
	z-index: 1;
	display: block;
	padding: 10px 18px 0;
	color: var(--fad-ls-muted);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.2;
}

.fad-ls-match {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	padding: 18px 18px 20px;
}

.fad-ls-team {
	display: grid;
	justify-items: center;
	gap: 12px;
	min-width: 0;
	text-align: center;
}

.fad-ls-team img,
.fad-ls-logo-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	border-radius: 50%;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 26px;
	font-weight: 950;
}

.fad-ls-logo-fallback {
	border: 1px solid rgba(255, 255, 255, 0.16);
}

.fad-ls-team b {
	display: block;
	max-width: 160px;
	min-width: 0;
	color: #fff;
	font-size: 14px;
	font-weight: 950;
	line-height: 1.24;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fad-ls-scorebox {
	display: grid;
	justify-items: center;
	gap: 12px;
	min-width: 108px;
}

.fad-ls-score {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 92px;
	min-height: 50px;
	padding: 0 12px;
	border-radius: 8px;
	background: #1d1f1f;
	color: #fff;
	font-size: 30px;
	font-weight: 950;
	line-height: 1;
	white-space: nowrap;
}

.fad-ls-score em {
	font-style: normal;
}

.fad-ls-scorebox a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 15px;
	border-radius: 6px;
	background: var(--fad-ls-green-deep);
	color: #061007;
	font-size: 12px;
	font-weight: 950;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.fad-ls-anchors {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 52px;
	padding: 10px 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.075);
	color: #fff;
}

.fad-ls-anchors span {
	color: var(--fad-ls-yellow);
	font-weight: 950;
}

.fad-ls-anchors em,
.fad-ls-anchors strong {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
	color: #fff;
	font-style: normal;
	font-weight: 850;
}

.fad-ls-anchors img {
	width: 24px;
	height: 24px;
	flex: 0 0 auto;
	border-radius: 50%;
	object-fit: cover;
	background: #222;
}

.fad-ls-empty {
	margin-top: 22px;
	padding: 18px;
	border: 1px solid var(--fad-ls-border);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--fad-ls-muted);
	font-weight: 800;
	text-align: center;
}

.fad-featured-home {
	--fad-fh-bg: #07100c;
	--fad-fh-card: rgba(255, 255, 255, 0.025);
	--fad-fh-border: rgba(255, 255, 255, 0.14);
	--fad-fh-green: #22e682;
	--fad-fh-lime: #c5ff32;
	--fad-fh-muted: #98a39d;
	max-width: 1080px;
	margin: 0 auto 28px;
	padding: 0 16px 26px;
	background: var(--fad-fh-bg);
	color: #fff;
	overflow: hidden;
}

.fad-fh-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.8fr) minmax(270px, 0.82fr);
	gap: 18px;
}

.fad-fh-card,
.fad-fh-next {
	overflow: hidden;
	border: 1px solid var(--fad-fh-border);
	border-radius: 8px;
	background: var(--fad-fh-card);
}

.fad-fh-card {
	padding: 24px;
}

.fad-fh-next {
	padding: 24px 22px;
}

.fad-fh-heading {
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.fad-fh-heading span {
	display: block;
	margin-bottom: 9px;
	color: var(--fad-fh-green);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.22em;
	line-height: 1;
	text-transform: uppercase;
}

.fad-fh-heading h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 950;
	line-height: 1.06;
	text-wrap: balance;
}

.fad-fh-body {
	display: grid;
	grid-template-columns: minmax(120px, 1fr) minmax(136px, 0.8fr) minmax(120px, 1fr);
	align-items: center;
	gap: 16px;
	min-height: 220px;
	padding: 30px 0 24px;
	text-align: center;
}

.fad-fh-team {
	display: grid;
	justify-items: center;
	gap: 10px;
	min-width: 0;
}

.fad-fh-team img,
.fad-fh-team i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 28px;
	font-style: normal;
	font-weight: 950;
	object-fit: contain;
}

.fad-fh-team strong {
	max-width: 100%;
	color: #fff;
	font-size: 17px;
	font-weight: 950;
	line-height: 1.18;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fad-fh-team small,
.fad-fh-center small {
	color: var(--fad-fh-muted);
	font-size: 12px;
	font-weight: 750;
	line-height: 1.2;
}

.fad-fh-center {
	display: grid;
	justify-items: center;
	gap: 7px;
}

.fad-fh-center b {
	color: var(--fad-fh-lime);
	font-size: clamp(30px, 3.4vw, 42px);
	font-weight: 950;
	line-height: 0.95;
}

.fad-fh-center span {
	color: #a7b1ab;
	font-size: 14px;
	font-weight: 950;
}

.fad-fh-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--fad-fh-muted);
	font-size: 12px;
	font-weight: 750;
}

.fad-fh-footer a {
	color: var(--fad-fh-green);
	font-weight: 950;
	text-decoration: none;
	white-space: nowrap;
}

.fad-fh-next-item {
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr) 20px;
	align-items: center;
	gap: 14px;
	padding: 18px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	text-decoration: none;
}

.fad-fh-next-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.fad-fh-next-item b {
	color: var(--fad-fh-lime);
	font-size: 16px;
	font-weight: 950;
	line-height: 1.45;
	white-space: pre-line;
}

.fad-fh-next-item strong,
.fad-fh-next-item small {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fad-fh-next-item strong {
	color: #fff;
	font-size: 14px;
	font-weight: 950;
}

.fad-fh-next-item small {
	margin-top: 6px;
	color: var(--fad-fh-muted);
	font-size: 12px;
	font-weight: 750;
}

.fad-fh-next-item em {
	color: var(--fad-fh-green);
	font-size: 18px;
	font-style: normal;
	font-weight: 950;
}

.fad-news-home {
	--fad-news-bg: #050806;
	--fad-news-card: #0b1410;
	--fad-news-border: rgba(255, 255, 255, 0.14);
	--fad-news-green: #22e682;
	--fad-news-lime: #cfff35;
	--fad-news-muted: #9aa49e;
	max-width: 1080px;
	margin: 0 auto 34px;
	padding: 0 16px 34px;
	background: var(--fad-news-bg);
	color: #fff;
	overflow: hidden;
}

.fad-news-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 26px;
}

.fad-news-heading span {
	display: block;
	margin-bottom: 9px;
	color: var(--fad-news-green);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.24em;
	line-height: 1;
	text-transform: uppercase;
}

.fad-news-heading h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(28px, 3.8vw, 42px);
	font-weight: 950;
	line-height: 1.04;
	text-wrap: balance;
}

.fad-news-heading a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	color: #e8ece9;
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
}

.fad-news-heading a b {
	color: var(--fad-news-green);
	font-size: 21px;
	line-height: 1;
}

.fad-news-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.fad-news-card {
	overflow: hidden;
	border: 1px solid var(--fad-news-border);
	border-radius: 8px;
	background: var(--fad-news-card);
}

.fad-news-card a {
	display: grid;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.fad-news-card.is-featured {
	grid-column: 1 / -1;
}

.fad-news-card.is-featured a {
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 1fr);
	min-height: 280px;
}

.fad-news-media {
	position: relative;
	min-height: 180px;
	background-position: center;
	background-size: cover;
}

.fad-news-media.is-pattern {
	background-color: #123b27;
	background-image:
		linear-gradient(35deg, rgba(255, 255, 255, 0.08) 12%, transparent 12%, transparent 88%, rgba(255, 255, 255, 0.08) 88%),
		linear-gradient(-35deg, rgba(255, 255, 255, 0.08) 12%, transparent 12%, transparent 88%, rgba(255, 255, 255, 0.08) 88%);
	background-position: 0 0, 0 0;
	background-size: 86px 62px;
}

.fad-news-card.is-blue .fad-news-media.is-pattern {
	background-color: #202a58;
}

.fad-news-media.has-image::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28));
	content: "";
}

.fad-news-media span {
	position: absolute;
	left: 16px;
	bottom: 16px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 13px;
	border-radius: 5px;
	background: var(--fad-news-lime);
	color: #071109;
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.04em;
	line-height: 1;
	text-transform: uppercase;
}

.fad-news-body {
	display: grid;
	align-content: center;
	gap: 14px;
	padding: 28px;
}

.fad-news-card:not(.is-featured) .fad-news-body {
	align-content: start;
	min-height: 190px;
	padding: 24px 22px;
}

.fad-news-body small {
	color: var(--fad-news-green);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.fad-news-body h3 {
	margin: 0;
	color: #fff;
	font-size: clamp(19px, 2.2vw, 28px);
	font-weight: 950;
	line-height: 1.18;
}

.fad-news-card:not(.is-featured) .fad-news-body h3 {
	font-size: clamp(18px, 2vw, 23px);
}

.fad-news-body p {
	margin: 0;
	color: var(--fad-news-muted);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.6;
}

.fad-news-body time {
	color: var(--fad-news-muted);
	font-size: 12px;
	font-weight: 750;
}

.fad-fixtures-board {
	margin: 0 auto 24px;
	padding: 0 18px 28px;
	background: #252525;
	color: #fff;
	font-size: 14px;
}

.fad-fixtures-title {
	margin: 0;
	padding: 0 0 36px;
	color: #ffc71e;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
}

.fad-fixtures-tabs {
	display: grid;
	grid-template-columns: repeat(7, minmax(92px, 1fr));
	align-items: stretch;
	background: #151515;
	overflow-x: auto;
}

.fad-fixtures-date {
	display: grid;
	gap: 3px;
	min-height: 76px;
	padding: 15px 12px 12px;
	border-bottom: 3px solid transparent;
	color: #a9a9a9;
	text-align: center;
	text-decoration: none;
}

.fad-fixtures-date:hover,
.fad-fixtures-date:focus,
.fad-fixtures-date.is-active {
	border-color: #ffc71e;
	color: #fff;
}

.fad-fixtures-date span {
	font-size: 13px;
	font-weight: 800;
}

.fad-fixtures-date strong {
	font-size: 14px;
	font-weight: 900;
}

.fad-fixtures-league-bar {
	position: relative;
	z-index: 4;
	display: flex;
	align-items: center;
	min-height: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: #151515;
}

.fad-fixtures-selector {
	width: min(340px, 100%);
}

.fad-fixtures-current {
	min-height: 48px;
	border: 0;
	border-radius: 0;
	background: #151515;
	color: #fff;
}

.fad-fixtures-menu {
	top: 100%;
	z-index: 5;
}

.fad-fixtures-menu-icon {
	position: relative;
	display: inline-block;
	width: 22px;
	height: 14px;
}

.fad-fixtures-menu-icon::before,
.fad-fixtures-menu-icon::after,
.fad-fixtures-menu-icon {
	border-top: 2px solid #ffc71e;
}

.fad-fixtures-menu-icon::before,
.fad-fixtures-menu-icon::after {
	position: absolute;
	left: 0;
	width: 22px;
	content: "";
}

.fad-fixtures-menu-icon::before {
	top: 4px;
}

.fad-fixtures-menu-icon::after {
	top: 10px;
}

.fad-fixtures-table-wrap {
	width: 100%;
	overflow-x: auto;
	border-right: 4px solid #ffc71e;
	background: #252525;
}

.fad-fixtures-table {
	width: 100%;
	min-width: 1060px;
	border-collapse: collapse;
	color: #fff;
}

.fad-fixtures-table th,
.fad-fixtures-table td {
	padding: 10px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	text-align: center;
	vertical-align: middle;
}

.fad-fixtures-table thead th {
	background: #151515;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
}

.fad-fixtures-table thead th:first-child {
	text-align: left;
}

.fad-fixtures-group-row td {
	padding: 0;
	background: #202020;
}

.fad-fixtures-group {
	display: grid;
	grid-template-columns: 18px 24px minmax(0, max-content) auto 1fr auto;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 8px 12px;
	text-align: left;
}

.fad-fixtures-group img {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	object-fit: contain;
	background: #333;
}

.fad-fixtures-chevron {
	width: 9px;
	height: 9px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}

.fad-fixtures-group strong {
	min-width: 0;
	overflow: hidden;
	font-size: 13px;
	font-weight: 900;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fad-fixtures-group em {
	color: #cfcfcf;
	font-style: normal;
	font-weight: 800;
}

.fad-fixtures-group a {
	justify-self: end;
	color: #ffc71e;
	font-size: 12px;
	font-weight: 900;
	text-decoration: none;
}

.fad-fixtures-match-row {
	background: #292929;
}

.fad-fixtures-match-row:nth-child(even) {
	background: #262626;
}

.fad-fixtures-match-cell {
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	text-align: left;
}

.fad-fixtures-time {
	color: #fff;
	font-size: 13px;
	white-space: nowrap;
}

.fad-fixtures-teams {
	display: grid;
	gap: 7px;
	min-width: 0;
}

.fad-fixtures-teams div {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.fad-fixtures-teams img {
	width: 24px;
	height: 24px;
	flex: 0 0 auto;
	border-radius: 50%;
	object-fit: contain;
	background: #f4f4f4;
}

.fad-fixtures-teams strong {
	min-width: 0;
	overflow: hidden;
	font-size: 13px;
	font-weight: 900;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fad-fixtures-anchors {
	grid-column: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
	min-width: 0;
	margin: 7px 0 0;
	color: #bfbfbf;
	font-size: 11px;
	line-height: 1.25;
}

.fad-fixtures-anchors span {
	color: #ffc71e;
	font-weight: 900;
}

.fad-fixtures-anchors em {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	max-width: 150px;
	overflow: hidden;
	font-style: normal;
	font-weight: 800;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fad-fixtures-anchors img {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	border-radius: 50%;
	object-fit: cover;
	background: #333;
}

.fad-fixtures-score strong {
	color: #ffc71e;
	font-size: 13px;
}

.fad-fixture-odds-stack {
	display: grid;
	gap: 4px;
	justify-items: center;
	min-width: 58px;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

.fad-fixture-odds-stack .is-line {
	color: #777;
	font-weight: 700;
}

.fad-fixture-odd-empty {
	color: #bfbfbf;
}

.fad-fixtures-empty {
	padding: 22px !important;
	color: #d7d7d7;
	text-align: center !important;
}

.fad-results-board {
	margin: 0 auto 24px;
	padding: 0 18px 30px;
	background: #252525;
	color: #fff;
	font-size: 14px;
}

.fad-results-title {
	margin: 0;
	padding: 0 0 34px;
	color: #ffc71e;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
}

.fad-results-toolbar {
	position: relative;
	z-index: 5;
	margin-bottom: 18px;
}

.fad-results-selector {
	width: min(340px, 100%);
}

.fad-results-current {
	min-height: 42px;
	border-radius: 4px;
	background: #252525;
	color: #ffc71e;
}

.fad-results-menu {
	z-index: 6;
}

.fad-results-list {
	display: grid;
	gap: 20px;
}

.fad-results-group {
	overflow: hidden;
	border-radius: 6px;
	background: #2b2b2b;
}

.fad-results-group header {
	padding: 12px 18px;
	background: #151515;
	color: #fff;
	font-size: 14px;
}

.fad-results-rows {
	display: grid;
	padding: 12px 16px;
}

.fad-results-row {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr) 112px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	min-height: 52px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fad-results-row:last-child {
	border-bottom: 0;
}

.fad-results-time {
	display: grid;
	justify-items: center;
	color: #ffc71e;
	line-height: 1.15;
}

.fad-results-time span,
.fad-results-time strong {
	font-size: 14px;
	font-weight: 900;
}

.fad-results-team {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.fad-results-home {
	justify-content: flex-end;
	text-align: right;
}

.fad-results-away {
	justify-content: flex-start;
	text-align: left;
}

.fad-results-team img {
	width: 30px;
	height: 30px;
	flex: 0 0 auto;
	border-radius: 50%;
	object-fit: contain;
	background: #f4f4f4;
}

.fad-results-team strong {
	min-width: 0;
	overflow: hidden;
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fad-results-score {
	display: grid;
	justify-items: center;
	line-height: 1.15;
	text-align: center;
}

.fad-results-score strong {
	color: #fff;
	font-size: 20px;
	font-weight: 900;
	white-space: nowrap;
}

.fad-results-score span {
	color: #bcbcbc;
	font-size: 13px;
}

@media (max-width: 980px) {
	.fad-live-schedule {
		padding: 28px 16px 34px;
	}

	.fad-ls-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.fad-ls-heading h2 {
		font-size: clamp(30px, 7vw, 44px);
	}

	.fad-ls-filters {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		padding: 14px;
	}

	.fad-ls-filters button {
		min-height: 50px;
		padding: 0 16px;
		font-size: 13px;
	}

	.fad-ls-grid {
		grid-template-columns: 1fr;
	}

	.fad-fh-grid {
		grid-template-columns: 1fr;
	}

	.fad-fh-card,
	.fad-fh-next {
		padding: 24px 20px;
	}

	.fad-news-card.is-featured a {
		grid-template-columns: 1fr;
	}

	.fad-news-media {
		min-height: 220px;
	}
}

@media (max-width: 680px) {
	.fad-match-main,
	.fad-detail-grid,
	.fad-lineup-grid {
		grid-template-columns: 1fr;
	}

	.fad-stat-board {
		padding: 10px;
	}

	.fad-stat-board-head {
		font-size: 13px;
	}

	.fad-stats-values {
		grid-template-columns: 56px minmax(0, 1fr) 56px;
		font-size: 13px;
	}

	.fad-player-list li {
		gap: 6px;
		padding: 7px;
	}

	.fad-player-list li img {
		width: 32px;
		height: 32px;
	}

	.fad-live-schedule {
		padding: 24px 12px 30px;
	}

	.fad-ls-heading {
		margin-bottom: 24px;
	}

	.fad-ls-heading span {
		font-size: 11px;
		letter-spacing: 0.22em;
	}

	.fad-ls-heading h2 {
		font-size: 30px;
	}

	.fad-ls-heading a {
		font-size: 15px;
	}

	.fad-ls-filters {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-bottom: 22px;
	}

	.fad-ls-filters button {
		justify-content: center;
		gap: 8px;
		width: 100%;
		padding: 0 10px;
		font-size: 12px;
		letter-spacing: 0.03em;
	}

	.fad-ls-card {
		min-height: 300px;
	}

	.fad-ls-card-head {
		padding: 18px 14px 0;
	}

	.fad-ls-card-head strong {
		font-size: 15px;
	}

	.fad-ls-status {
		min-height: 30px;
		padding: 0 9px;
		font-size: 11px;
	}

	.fad-ls-time {
		padding: 12px 14px 0;
		font-size: 14px;
	}

	.fad-ls-match {
		gap: 9px;
		padding: 18px 12px 22px;
	}

	.fad-ls-team img,
	.fad-ls-logo-fallback {
		width: 62px;
		height: 62px;
		font-size: 24px;
	}

	.fad-ls-team b {
		max-width: 108px;
		font-size: 13px;
	}

	.fad-ls-scorebox {
		min-width: 94px;
		gap: 9px;
	}

	.fad-ls-score {
		min-width: 86px;
		min-height: 50px;
		padding: 0 10px;
		font-size: 28px;
	}

	.fad-ls-scorebox a {
		min-height: 34px;
		padding: 0 12px;
		font-size: 11px;
	}

	.fad-ls-anchors {
		justify-content: center;
		min-height: 56px;
		padding: 10px 12px;
		font-size: 12px;
	}

	.fad-featured-home {
		padding: 0 12px 28px;
	}

	.fad-fh-heading {
		padding-bottom: 20px;
	}

	.fad-fh-heading span {
		font-size: 11px;
		letter-spacing: 0.22em;
	}

	.fad-fh-heading h2 {
		font-size: 28px;
	}

	.fad-fh-body {
		grid-template-columns: 1fr;
		gap: 22px;
		min-height: 0;
		padding: 30px 0 24px;
	}

	.fad-fh-center {
		order: -1;
	}

	.fad-fh-center b {
		font-size: 42px;
	}

	.fad-fh-team img,
	.fad-fh-team i {
		width: 66px;
		height: 66px;
		font-size: 26px;
	}

	.fad-fh-team strong {
		font-size: 18px;
		white-space: normal;
	}

	.fad-fh-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.fad-fh-next-item {
		grid-template-columns: 58px minmax(0, 1fr) 18px;
		gap: 12px;
		padding: 18px 0;
	}

	.fad-fh-next-item b {
		font-size: 15px;
	}

	.fad-news-home {
		padding: 0 12px 28px;
	}

	.fad-news-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
		margin-bottom: 20px;
	}

	.fad-news-heading span {
		font-size: 10px;
		letter-spacing: 0.2em;
	}

	.fad-news-heading h2 {
		font-size: 30px;
	}

	.fad-news-heading a {
		margin-bottom: 0;
	}

	.fad-news-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.fad-news-media {
		min-height: 190px;
	}

	.fad-news-body,
	.fad-news-card:not(.is-featured) .fad-news-body {
		min-height: 0;
		padding: 22px 18px;
	}

	.fad-news-body h3,
	.fad-news-card:not(.is-featured) .fad-news-body h3 {
		font-size: 21px;
	}

	.fad-team,
	.fad-team-away {
		justify-content: center;
		text-align: center;
	}

	.fad-score,
	.fad-score-large {
		justify-self: center;
	}

	.fad-card-meta {
		justify-content: center;
		text-align: center;
	}

	.fad-timeline-item {
		grid-template-columns: 42px minmax(0, 1fr);
	}

	.fad-timeline-item em {
		grid-column: 2;
	}

	.fad-stats-values {
		grid-template-columns: 48px minmax(0, 1fr) 48px;
		font-size: 13px;
	}

	.fad-match-center {
		padding: 12px;
	}

	.fad-mc-scoreboard,
	.fad-mc-grid {
		grid-template-columns: 1fr;
	}

	.fad-mc-meta {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.fad-mc-team,
	.fad-mc-team-away {
		justify-content: center;
		text-align: center;
	}

	.fad-mc-team-away {
		flex-direction: row;
	}

	.fad-mc-score {
		justify-content: center;
	}

	.fad-mc-live-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.fad-mc-live-head small {
		max-width: 100%;
	}

	.fad-mc-live-head h2 {
		font-size: 17px;
	}

	.fad-mc-live-actions {
		justify-content: stretch;
	}

	.fad-mc-live-actions a {
		width: 100%;
	}

	.fad-mc-tracker iframe {
		min-height: 380px;
	}

	.fad-mc-tabs {
		overflow-x: auto;
		flex-wrap: nowrap;
	}

	.fad-mc-tabs button {
		flex: 0 0 auto;
	}

	.fad-mc-stat-cloud,
	.fad-mc-form-grid,
	.fad-lineup-pitch:not(.fad-lineup-pitch-coordinate) {
		grid-template-columns: 1fr;
	}

	.fad-lineup-pitch-coordinate {
		min-height: 360px;
	}

	.fad-pitch-player-positioned {
		width: 78px;
	}

	.fad-pitch-player-positioned span {
		width: 36px;
		height: 36px;
		border-width: 2px;
	}

	.fad-pitch-player-positioned small,
	.fad-pitch-player-positioned strong {
		font-size: 10px;
	}

	.fad-mc-stat-cloud {
		padding: 24px 18px;
	}

	.fad-result-row,
	.fad-mc-form-row {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 12px 10px;
	}

	.fad-result-time,
	.fad-mc-form-row > span {
		justify-self: center;
		font-size: 13px;
	}

	.fad-result-match {
		grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
		justify-content: stretch;
		gap: 8px;
		width: 100%;
	}

	.fad-result-team,
	.fad-mc-form-row strong {
		font-size: 14px;
	}

	.fad-result-team img {
		width: 24px;
		height: 24px;
	}

	.fad-result-score,
	.fad-mc-form-row b {
		min-width: 74px;
		font-size: 16px;
	}

	.fad-standing-board {
		padding: 0 12px 22px;
	}

	.fad-standing-title {
		padding-bottom: 28px;
		font-size: 23px;
	}

	.fad-standing-toolbar {
		margin-bottom: 10px;
	}

	.fad-standing-selector {
		width: 100%;
	}

	.fad-standing-menu {
		position: static;
		margin-top: 2px;
	}

	.fad-standing-table {
		min-width: 760px;
	}

	.fad-standing-table th,
	.fad-standing-table td {
		padding: 11px 9px;
	}

	.fad-fixtures-board {
		padding: 0 12px 22px;
	}

	.fad-fixtures-title {
		padding-bottom: 26px;
		font-size: 23px;
	}

	.fad-fixtures-tabs {
		grid-template-columns: repeat(7, minmax(84px, 1fr));
	}

	.fad-fixtures-date {
		min-height: 68px;
		padding: 12px 10px 10px;
	}

	.fad-fixtures-league-bar {
		display: block;
	}

	.fad-fixtures-selector {
		width: 100%;
	}

	.fad-fixtures-menu {
		position: static;
	}

	.fad-fixtures-table {
		min-width: 920px;
	}

	.fad-fixtures-match-cell {
		grid-template-columns: 58px minmax(0, 1fr);
	}

	.fad-results-board {
		padding: 0 12px 22px;
	}

	.fad-results-title {
		padding-bottom: 24px;
		font-size: 23px;
	}

	.fad-results-selector {
		width: 100%;
	}

	.fad-results-menu {
		position: static;
		margin-top: 2px;
	}

	.fad-results-list {
		overflow-x: auto;
	}

	.fad-results-group {
		min-width: 760px;
	}

	.fad-results-row {
		grid-template-columns: 82px minmax(0, 1fr) 86px minmax(0, 1fr);
		gap: 10px;
	}
}
