.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: 1280px;
	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-video-link-overlay {
	position: absolute;
	z-index: 1;
	right: 0;
	left: 0;
	display: block;
	height: 20%;
}

.fad-mc-video-link-overlay--top {
	top: 0;
}

.fad-mc-video-link-overlay--bottom {
	bottom: 10%;
}

.fad-mc-video-link-overlay:focus-visible {
	outline: 2px solid #ffd84d;
	outline-offset: -2px;
}

@media (max-width: 900px) {
	.fad-mc-video-link-overlay--top {
		top: 20%;
	}

	.fad-mc-video-link-overlay--bottom {
		bottom: 20%;
	}
}

.fad-mc-live-status {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 24px;
	background: rgba(5, 5, 5, 0.82);
	color: #eef4ef;
	font-size: 14px;
	font-weight: 800;
	text-align: center;
	pointer-events: none;
	transition: opacity 180ms ease, visibility 180ms ease;
}

.fad-mc-live-status i {
	width: 34px;
	height: 34px;
	border: 3px solid rgba(31, 218, 122, 0.24);
	border-top-color: #1fda7a;
	border-radius: 50%;
	animation: fad-live-spin 780ms linear infinite;
}

.fad-mc-live-status[data-state="fallback"] i {
	border-top-color: #f4c430;
}

.fad-mc-live-status[data-state="failed"] i {
	display: none;
}

.fad-mc-live-status[data-state="ready"] {
	opacity: 0;
	visibility: hidden;
}

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

@media (prefers-reduced-motion: reduce) {
	.fad-mc-live-status i {
		animation-duration: 1800ms;
	}
}

.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-team-cell .fad-entity-link {
	display: block;
	min-width: 0;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
}

.fad-standing-team-cell .fad-entity-link strong {
	display: block;
}

.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: 1280px;
	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-live-schedule [data-fad-live-card][hidden],
.fad-live-schedule [data-fad-live-empty][hidden] {
	display: none !important;
}

.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-featured-home--full .fad-fh-grid {
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
}

.fad-home-dashboard .fad-featured-home--full {
	max-width: 1400px;
}

.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;
	}
}

/* TLV mobile match center refinements 2026-07-05 */
@media (max-width: 680px) {
.fad-wrap.fad-match-center,
.fad-match-center {
box-sizing: border-box;
width: 100%;
max-width: 100%;
padding: 10px;
border-radius: 8px;
overflow: hidden;
}

.fad-mc-hero {
margin-bottom: 14px;
padding: 12px;
border-radius: 7px;
}

.fad-mc-meta {
grid-template-columns: 1fr;
justify-items: center;
gap: 6px;
font-size: 13px;
line-height: 1.35;
text-align: center;
}

.fad-mc-scoreboard {
grid-template-columns: 1fr;
justify-items: center;
gap: 12px;
margin-top: 12px;
}

.fad-mc-team,
.fad-mc-team-away {
width: 100%;
max-width: 300px;
display: grid;
grid-template-columns: 58px minmax(0, 1fr);
align-items: center;
justify-content: start;
gap: 10px;
text-align: left;
font-size: 17px;
line-height: 1.25;
}

.fad-mc-team img,
.fad-mc-team i {
box-sizing: border-box;
width: 58px;
height: 58px;
padding: 7px;
border-radius: 50%;
background: #3e3e3e;
}

.fad-mc-team i {
display: grid;
place-items: center;
color: #fff;
font-style: normal;
font-weight: 850;
}

.fad-mc-team strong {
min-width: 0;
max-width: 100%;
overflow: visible;
font-size: 17px;
line-height: 1.25;
overflow-wrap: anywhere;
white-space: normal;
}

.fad-mc-score {
grid-template-columns: 54px auto 54px;
align-items: center;
gap: 7px;
max-width: 100%;
}

.fad-mc-score span {
min-width: 54px;
height: 54px;
border-radius: 7px;
font-size: 28px;
line-height: 1;
}

.fad-mc-score b {
font-size: 22px;
line-height: 1;
}

.fad-mc-score em {
max-width: 100%;
padding: 7px 12px;
font-size: 12px;
line-height: 1.15;
white-space: normal;
}

.fad-match-center--one-page .fad-mc-panel > h2,
.fad-mc-panel h2 {
font-size: 20px;
line-height: 1.2;
}

.fad-match-center--one-page .fad-mc-main > .fad-mc-panel[data-fad-panel="odds"] {
overflow: visible;
}

.fad-mc-panel > .fad-wrap.fad-odds {
box-sizing: border-box;
width: 100%;
max-width: 100%;
padding: 10px;
overflow: hidden;
}

.fad-odds .fad-table-scroll,
.fad-match-center .fad-odds .fad-table-scroll {
max-width: 100%;
overflow-x: auto !important;
overflow-y: visible;
-webkit-overflow-scrolling: touch;
scrollbar-width: thin;
}

.fad-odds-table {
width: 760px !important;
min-width: 760px !important;
table-layout: auto !important;
border-collapse: collapse;
}

.fad-odds-table .fad-odds-label-col {
width: 126px !important;
}

.fad-odds-table .fad-odds-market-col {
width: 53px !important;
}

.fad-odds-table th,
.fad-odds-table td {
padding: 8px 6px;
font-size: 12px;
line-height: 1.2;
white-space: nowrap;
}

.fad-odds-table thead tr:first-child th {
font-size: 11px;
}

.fad-odds-table thead tr:nth-child(2) th {
font-size: 10px;
}

.fad-odds-table thead th:first-child,
.fad-odds-table tbody th {
position: sticky;
left: 0;
z-index: 3;
width: 126px !important;
min-width: 126px !important;
max-width: 126px !important;
background: #111 !important;
}

.fad-odds-table tbody th {
font-size: 10px;
line-height: 1.25;
text-align: left;
}

.fad-odds-table tbody th span {
white-space: normal;
overflow-wrap: normal;
}
}

@media (max-width: 390px) {
.fad-mc-team,
.fad-mc-team-away {
max-width: 280px;
grid-template-columns: 52px minmax(0, 1fr);
font-size: 16px;
}

.fad-mc-team img,
.fad-mc-team i {
width: 52px;
height: 52px;
}

.fad-mc-team strong {
font-size: 16px;
}

.fad-mc-score {
grid-template-columns: 50px auto 50px;
gap: 6px;
}

.fad-mc-score span {
min-width: 50px;
height: 50px;
font-size: 26px;
}
}
/* End TLV mobile match center refinements */

/* TLV mobile odds panel width fix 2026-07-05 */
@media (max-width: 680px) {
  .fad-match-center--one-page .fad-mc-main,
  .fad-match-center--one-page .fad-mc-main > .fad-mc-panel[data-fad-panel],
  .fad-match-center--one-page .fad-mc-main > .fad-mc-panel[data-fad-panel="odds"],
  .fad-mc-main,
  .fad-mc-panel {
    min-width: 0;
    max-width: 100%;
  }

  .fad-match-center--one-page .fad-mc-main > .fad-mc-panel[data-fad-panel="odds"] {
    width: 100%;
    overflow: hidden;
  }

  .fad-mc-panel > .fad-wrap.fad-odds,
  .fad-odds .fad-table-scroll,
  .fad-match-center .fad-odds .fad-table-scroll {
    width: 100%;
    min-width: 0;
  }
}
/* End TLV mobile odds panel width fix */

/* TLV mobile lineup and hero polish 2026-07-05 */
@media (max-width: 680px) {
  .fad-mc-hero {
    padding: 12px 10px 16px;
  }

  .fad-mc-meta {
    gap: 5px;
    font-size: 12px;
  }

  .fad-mc-scoreboard {
    width: 100%;
    max-width: 300px;
    gap: 10px;
    margin-right: auto;
    margin-left: auto;
  }

  .fad-mc-team,
  .fad-mc-team-away {
    max-width: 270px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
  }

  .fad-mc-team img,
  .fad-mc-team i {
    width: 52px;
    height: 52px;
    padding: 6px;
  }

  .fad-mc-team strong {
    font-size: 16px;
    line-height: 1.25;
  }

  .fad-mc-score {
    grid-template-columns: 50px auto 50px;
    gap: 7px;
  }

  .fad-mc-score span {
    min-width: 50px;
    height: 50px;
    font-size: 27px;
  }

  .fad-mc-score em {
    margin-top: 1px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .fad-match-center--one-page .fad-mc-main > .fad-mc-panel[data-fad-panel="lineup"],
  .fad-lineup,
  .fad-lineup * {
    min-width: 0;
  }

  .fad-mc-panel > .fad-wrap.fad-lineup {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    overflow: hidden;
  }

  .fad-lineup-pitch-coordinate {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: min(370px, 112vw);
    min-height: 330px;
    aspect-ratio: auto;
    margin: 0 0 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .fad-lineup-pitch-coordinate .fad-pitch-line {
    inset: 12px;
    border-width: 2px;
  }

  .fad-pitch-player-positioned {
    width: 54px;
    gap: 2px;
  }

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

  .fad-pitch-player-positioned small {
    font-size: 9px;
    line-height: 1;
  }

  .fad-pitch-player-positioned strong {
    display: block;
    min-height: 22px;
    max-height: 22px;
    overflow: hidden;
    font-size: 9px;
    line-height: 1.12;
    font-weight: 850;
    overflow-wrap: anywhere;
  }

  .fad-lineup-formation {
    bottom: 12px;
    font-size: 14px;
  }

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

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

  .fad-lineup-rosters {
    gap: 12px;
  }
}

@media (max-width: 390px) {
  .fad-mc-scoreboard {
    max-width: 286px;
  }

  .fad-mc-team,
  .fad-mc-team-away {
    max-width: 260px;
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .fad-mc-team img,
  .fad-mc-team i {
    width: 50px;
    height: 50px;
  }

  .fad-lineup-pitch-coordinate {
    height: min(360px, 116vw);
    min-height: 318px;
  }

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

  .fad-pitch-player-positioned span {
    width: 32px;
    height: 32px;
  }

  .fad-pitch-player-positioned strong {
    font-size: 8.5px;
  }
}
/* End TLV mobile lineup and hero polish */

/* TLV mobile lineup compact player labels 2026-07-05 */
@media (max-width: 680px) {
  .fad-lineup-pitch-coordinate {
    padding: 0;
  }

  .fad-pitch-player-positioned {
    width: 42px;
    min-height: 48px;
  }

  .fad-pitch-player-positioned span {
    width: 32px;
    height: 32px;
  }

  .fad-pitch-player-positioned small {
    display: block;
    margin-top: 2px;
    color: #fff;
    font-size: 9px;
    font-weight: 950;
    text-align: center;
  }

  .fad-pitch-player-positioned strong {
    display: none;
  }
}

@media (max-width: 390px) {
  .fad-pitch-player-positioned {
    width: 40px;
  }

  .fad-pitch-player-positioned span {
    width: 30px;
    height: 30px;
  }
}
/* End TLV mobile lineup compact player labels */

/* Team and competition entity pages 1.5.0 */
.fad-entity-page {
  --fad-entity-bg: #050907;
  --fad-entity-panel: #0e1612;
  --fad-entity-panel-strong: #111c17;
  --fad-entity-line: #27342e;
  --fad-entity-line-strong: #3b4b43;
  --fad-entity-text: #f4f7f5;
  --fad-entity-muted: #9ca8a2;
  --fad-entity-green: #20df78;
  --fad-entity-lime: #c3fa32;
  --fad-entity-yellow: #ffca2f;
  min-height: 70vh;
  padding: 38px 0 72px;
  color: var(--fad-entity-text);
  background: var(--fad-entity-bg);
}

.fad-entity-page *,
.fad-entity-page *::before,
.fad-entity-page *::after {
  box-sizing: border-box;
}

.fad-entity-container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.fad-entity-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  color: #748179;
  font-size: 13px;
  line-height: 1.4;
}

.fad-entity-breadcrumb a {
  color: #b9c3be;
  text-decoration: none;
}

.fad-entity-breadcrumb a:hover,
.fad-entity-breadcrumb a:focus-visible {
  color: var(--fad-entity-green);
}

.fad-entity-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 190px;
  padding: 34px 0 38px;
  border-top: 1px solid var(--fad-entity-line);
  border-bottom: 1px solid var(--fad-entity-line);
}

.fad-entity-identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 24px;
}

.fad-entity-logo {
  display: grid;
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--fad-entity-line-strong);
  border-radius: 50%;
  background: #090d0b;
}

.fad-entity-logo img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.fad-entity-logo > span {
  color: var(--fad-entity-lime);
  font-size: 30px;
  font-weight: 900;
}

.fad-entity-identity p,
.fad-entity-directory-head p {
  margin: 0 0 8px;
  color: var(--fad-entity-green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.fad-entity-identity h1 {
  max-width: 760px;
  margin: 0;
  color: var(--fad-entity-text);
  font-size: 48px;
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.fad-entity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.fad-entity-chips a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid #2d4438;
  border-radius: 4px;
  color: #c8d1cc;
  background: #0c1511;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
}

.fad-entity-chips a:hover,
.fad-entity-chips a:focus-visible {
  color: var(--fad-entity-green);
  border-color: var(--fad-entity-green);
}

.fad-entity-hero-stats {
  display: grid;
  flex: 0 0 330px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid var(--fad-entity-line);
}

.fad-entity-hero-stats div {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  padding: 14px 0 14px 30px;
}

.fad-entity-hero-stats strong {
  color: var(--fad-entity-lime);
  font-size: 32px;
  line-height: 1;
}

.fad-entity-hero-stats span {
  margin-top: 8px;
  color: var(--fad-entity-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.fad-entity-section {
  padding: 54px 0 0;
}

.fad-entity-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.fad-entity-section-head span {
  display: block;
  margin-bottom: 7px;
  color: var(--fad-entity-green);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.fad-entity-section-head h2 {
  margin: 0;
  color: var(--fad-entity-text);
  font-size: 30px;
  font-weight: 820;
  line-height: 1.15;
  letter-spacing: 0;
}

.fad-entity-section-head > a,
.fad-entity-section-head > strong {
  flex: 0 0 auto;
  color: #b7c2bc;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.fad-entity-section-head > a:hover,
.fad-entity-section-head > a:focus-visible {
  color: var(--fad-entity-green);
}

.fad-entity-match-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fad-entity-match-row {
  position: relative;
  min-width: 0;
  padding: 18px 20px 16px;
  overflow: hidden;
  border: 1px solid var(--fad-entity-line);
  border-radius: 6px;
  background: var(--fad-entity-panel);
}

.fad-entity-match-row.is-live {
  border-color: #148647;
}

.fad-entity-match-meta {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--fad-entity-muted);
  font-size: 11px;
  line-height: 1.3;
}

.fad-entity-match-meta a,
.fad-entity-match-meta span {
  min-width: 0;
  overflow: hidden;
  color: #bdc7c1;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
}

.fad-entity-match-meta a:hover {
  color: var(--fad-entity-green);
}

.fad-entity-match-meta time {
  flex: 0 0 auto;
}

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

.fad-entity-match-team {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
}

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

.fad-entity-match-team-copy {
  min-width: 0;
}

.fad-entity-match-team-copy a,
.fad-entity-match-team-copy strong {
  display: block;
  overflow: hidden;
  color: var(--fad-entity-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
}

.fad-entity-match-team-copy a:hover,
.fad-entity-match-team-copy a:focus-visible {
  color: var(--fad-entity-green);
}

.fad-entity-match-badge {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #36453e;
  border-radius: 50%;
  background: #080c0a;
  text-decoration: none;
}

.fad-entity-match-badge img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.fad-entity-match-badge span {
  color: var(--fad-entity-lime);
  font-size: 11px;
  font-weight: 900;
}

.fad-entity-match-score {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fad-entity-match-score strong {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.fad-entity-match-score span {
  display: block;
  max-width: 90px;
  margin-top: 7px;
  overflow: hidden;
  color: var(--fad-entity-yellow);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.fad-entity-match-score span.is-live {
  color: var(--fad-entity-green);
}

.fad-entity-match-open {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid #223029;
  color: #aebbb4;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.fad-entity-match-open:hover,
.fad-entity-match-open:focus-visible {
  color: var(--fad-entity-green);
}

.fad-entity-empty {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px dashed #314138;
  border-radius: 6px;
  color: var(--fad-entity-muted);
  background: #0a100d;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.fad-entity-formation {
  padding: 8px 11px;
  border: 1px solid #34453c;
  border-radius: 4px;
  color: var(--fad-entity-lime) !important;
  background: #0e1713;
  font-size: 12px !important;
}

.fad-entity-squad-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.fad-entity-player {
  display: flex;
  min-width: 0;
  min-height: 70px;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid var(--fad-entity-line);
  border-radius: 5px;
  background: var(--fad-entity-panel);
}

.fad-entity-player > img,
.fad-entity-player > span {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  object-fit: cover;
  color: #08120d;
  background: var(--fad-entity-lime);
  font-size: 13px;
  font-weight: 900;
}

.fad-entity-player > div {
  min-width: 0;
}

.fad-entity-player strong,
.fad-entity-player small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fad-entity-player strong {
  color: var(--fad-entity-text);
  font-size: 13px;
  line-height: 1.3;
}

.fad-entity-player small {
  margin-top: 4px;
  color: var(--fad-entity-muted);
  font-size: 11px;
  line-height: 1.25;
}

.fad-entity-standing-wrap {
  overflow-x: auto;
  border: 1px solid var(--fad-entity-line);
  border-radius: 6px;
  background: var(--fad-entity-panel);
  scrollbar-color: #526158 #111813;
}

.fad-entity-standing {
  width: 100%;
  min-width: 720px;
  margin: 0;
  border-collapse: collapse;
  color: var(--fad-entity-text);
}

.fad-entity-standing th,
.fad-entity-standing td {
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid #253129;
  color: #dce3df;
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
}

.fad-entity-standing th {
  color: #859189;
  background: #0a100d;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.fad-entity-standing th:nth-child(2),
.fad-entity-standing td:nth-child(2) {
  text-align: left;
}

.fad-entity-standing tbody tr:last-child td {
  border-bottom: 0;
}

.fad-entity-standing-team {
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 11px;
}

.fad-entity-standing-team img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.fad-entity-standing-team a,
.fad-entity-standing-team strong {
  color: var(--fad-entity-text);
  font-weight: 800;
  text-decoration: none;
}

.fad-entity-standing-team a:hover {
  color: var(--fad-entity-green);
}

.fad-entity-form {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.fad-entity-form span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 3px;
  color: #07110c;
  background: #5a655f;
  font-size: 9px;
  font-weight: 900;
}

.fad-entity-form span.is-w {
  background: var(--fad-entity-green);
}

.fad-entity-form span.is-d {
  background: var(--fad-entity-yellow);
}

.fad-entity-form span.is-l {
  color: #fff;
  background: #e64f5f;
}

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

.fad-entity-news-grid article {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--fad-entity-line);
  border-radius: 6px;
  background: var(--fad-entity-panel);
}

.fad-entity-news-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #13271d;
  text-decoration: none;
}

.fad-entity-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.fad-entity-news-image:hover img {
  transform: scale(1.025);
}

.fad-entity-news-image > span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #84a492;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.fad-entity-news-grid article > div {
  padding: 17px 18px 20px;
}

.fad-entity-news-grid time {
  color: var(--fad-entity-green);
  font-size: 10px;
  font-weight: 800;
}

.fad-entity-news-grid h3 {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

.fad-entity-news-grid h3 a {
  color: var(--fad-entity-text);
  text-decoration: none;
}

.fad-entity-news-grid h3 a:hover {
  color: var(--fad-entity-green);
}

.fad-entity-copy {
  max-width: 980px;
  margin: 58px auto 0;
  padding: 30px 32px;
  border-left: 3px solid var(--fad-entity-green);
  border-radius: 4px;
  color: #d4dcd8;
  background: #101512;
  font-size: 16px;
  line-height: 1.75;
}

.fad-entity-copy h2,
.fad-entity-copy h3,
.fad-entity-copy h4 {
  margin-top: 1.45em;
  margin-bottom: 0.55em;
  color: var(--fad-entity-lime);
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0;
}

.fad-entity-copy h2:first-child,
.fad-entity-copy h3:first-child {
  margin-top: 0;
}

.fad-entity-copy p:last-child {
  margin-bottom: 0;
}

.fad-entity-copy a {
  color: var(--fad-entity-green);
}

.fad-entity-directory {
  padding-top: 56px;
}

.fad-entity-directory-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.fad-entity-directory-head h1 {
  margin: 0;
  color: var(--fad-entity-text);
  font-size: 44px;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: 0;
}

.fad-entity-directory-head > span {
  display: block;
  margin-top: 13px;
  color: var(--fad-entity-muted);
  font-size: 16px;
  line-height: 1.6;
}

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

.fad-entity-directory-grid article {
  display: flex;
  min-width: 0;
  min-height: 105px;
  align-items: center;
  gap: 15px;
  padding: 17px;
  border: 1px solid var(--fad-entity-line);
  border-radius: 6px;
  background: var(--fad-entity-panel);
}

.fad-entity-directory-logo {
  display: grid;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #36453e;
  border-radius: 50%;
  background: #080c0a;
  text-decoration: none;
}

.fad-entity-directory-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.fad-entity-directory-logo span {
  color: var(--fad-entity-lime);
  font-size: 15px;
  font-weight: 900;
}

.fad-entity-directory-grid article > div {
  min-width: 0;
}

.fad-entity-directory-grid h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 820;
  line-height: 1.3;
  letter-spacing: 0;
}

.fad-entity-directory-grid h2 a {
  display: block;
  overflow: hidden;
  color: var(--fad-entity-text);
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
}

.fad-entity-directory-grid article > div > a {
  display: inline-block;
  margin-top: 8px;
  color: var(--fad-entity-green);
  font-size: 10px;
  font-weight: 850;
  text-decoration: none;
}

.fad-entity-pagination {
  margin-top: 30px;
}

.fad-entity-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.fad-entity-pagination .page-numbers {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--fad-entity-line);
  border-radius: 4px;
  color: var(--fad-entity-text);
  background: var(--fad-entity-panel);
  text-decoration: none;
}

.fad-entity-pagination .page-numbers.current,
.fad-entity-pagination .page-numbers:hover {
  color: #07110c;
  border-color: var(--fad-entity-green);
  background: var(--fad-entity-green);
}

.fad-entity-link {
  color: inherit;
  text-decoration: none;
}

.fad-entity-link:hover,
.fad-entity-link:focus-visible {
  color: #20df78;
}

.fad-ls-team .fad-entity-link,
.fad-team .fad-entity-link {
  display: block;
  min-width: 0;
  max-width: 100%;
}

.fad-ls-card-head .fad-entity-link,
.fad-fixtures-group .fad-entity-link {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .fad-entity-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .fad-entity-hero-stats {
    width: 100%;
    flex-basis: auto;
    border-top: 1px solid var(--fad-entity-line);
    border-left: 0;
  }

  .fad-entity-hero-stats div {
    padding-left: 0;
  }

  .fad-entity-match-list {
    grid-template-columns: 1fr;
  }

  .fad-entity-squad-grid,
  .fad-entity-directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .fad-entity-page {
    padding: 24px 0 52px;
  }

  .fad-entity-container {
    width: min(100% - 24px, 1240px);
  }

  .fad-entity-hero {
    min-height: 0;
    gap: 24px;
    padding: 24px 0 28px;
  }

  .fad-entity-identity {
    align-items: flex-start;
    gap: 16px;
  }

  .fad-entity-logo {
    flex-basis: 78px;
    width: 78px;
    height: 78px;
  }

  .fad-entity-logo img {
    width: 58px;
    height: 58px;
  }

  .fad-entity-logo > span {
    font-size: 22px;
  }

  .fad-entity-identity h1 {
    font-size: 32px;
    line-height: 1.12;
  }

  .fad-entity-hero-stats strong {
    font-size: 25px;
  }

  .fad-entity-section {
    padding-top: 42px;
  }

  .fad-entity-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .fad-entity-section-head h2 {
    font-size: 24px;
  }

  .fad-entity-match-row {
    padding: 15px 14px 14px;
  }

  .fad-entity-match-main {
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
    gap: 7px;
  }

  .fad-entity-match-team {
    min-width: 0;
    flex-direction: column;
    gap: 7px;
    text-align: center;
  }

  .fad-entity-match-team-away {
    flex-direction: column-reverse;
  }

  .fad-entity-match-team-copy a,
  .fad-entity-match-team-copy strong {
    max-width: 115px;
    font-size: 12px;
  }

  .fad-entity-match-badge {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .fad-entity-match-score strong {
    font-size: 21px;
  }

  .fad-entity-squad-grid,
  .fad-entity-news-grid,
  .fad-entity-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fad-entity-copy {
    margin-top: 44px;
    padding: 22px 20px;
    font-size: 15px;
  }

  .fad-entity-directory {
    padding-top: 32px;
  }

  .fad-entity-directory-head h1 {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .fad-entity-identity h1 {
    font-size: 27px;
  }

  .fad-entity-chips a:nth-child(n+4) {
    display: none;
  }

  .fad-entity-match-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .fad-entity-squad-grid,
  .fad-entity-news-grid,
  .fad-entity-directory-grid {
    grid-template-columns: 1fr;
  }

  .fad-entity-player {
    min-height: 64px;
  }

  .fad-entity-news-grid h3 {
    font-size: 16px;
  }

  .fad-entity-directory-grid article {
    min-height: 92px;
  }
}
/* End team and competition entity pages */

/* TieulamTV2 live-first homepage, 2026-08-03. */
.fad-home-dashboard {
  gap: 30px;
  max-width: none;
  padding-top: 34px;
  background: #050806;
}

.fad-home-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 20px 4px;
}

.fad-home-intro > div {
  min-width: 0;
}

.fad-home-intro > div > span {
  display: block;
  margin-bottom: 12px;
  color: #22e682;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1;
}

.fad-home-intro h1 {
  max-width: 840px;
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  text-wrap: balance;
}

.fad-home-intro p {
  max-width: 760px;
  margin-top: 16px;
  color: #aeb7b1;
  font-size: 16px;
  line-height: 1.6;
}

.fad-home-intro nav {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.fad-home-intro nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: #f5f7f5;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.fad-home-intro nav a:hover,
.fad-home-intro nav a:focus-visible {
  border-color: #22e682;
  color: #22e682;
}

.fad-home-dashboard .fad-featured-home,
.fad-home-dashboard .fad-news-home {
  width: 100%;
  max-width: 1280px;
  padding-right: 20px;
  padding-left: 20px;
}

.fad-fh-heading-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 9px;
}

.fad-fh-heading-meta > span {
  margin-bottom: 0;
}

.fad-fh-heading-meta > strong {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(197, 255, 50, 0.5);
  border-radius: 5px;
  color: #c5ff32;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.fad-fh-card.is-live .fad-fh-heading-meta > strong {
  border-color: #22e682;
  background: #0a9b4d;
  color: #fff;
}

.fad-fh-card .fad-fh-body {
  background: #081a11;
}

.fad-fh-live-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(34, 230, 130, 0.25);
  border-radius: 6px;
  background: #020503;
}

.fad-fh-live-screen video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #020503;
  object-fit: contain;
}

.fad-fh-live-screen > span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 4px;
  background: rgba(3, 8, 5, 0.82);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.fad-fh-unmute {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 16px;
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 5px;
	background: rgba(3, 8, 5, 0.9);
	color: #fff;
	font: inherit;
	font-size: 13px;
	font-weight: 900;
	cursor: pointer;
}

.fad-fh-unmute[hidden] {
	display: none;
}

.fad-fh-unmute:hover,
.fad-fh-unmute:focus-visible {
	border-color: #22e682;
	background: #0b6438;
	outline: none;
}

.fad-fh-body.fad-fh-body--compact {
  min-height: 156px;
  padding: 20px 0 16px;
}

.fad-fh-body--compact .fad-fh-center b {
  font-size: clamp(23px, 2.5vw, 32px);
}

.fad-fh-team a {
  max-width: 100%;
  color: inherit;
  text-decoration: none;
}

.fad-fh-team a:hover strong,
.fad-fh-team a:focus-visible strong {
  color: #22e682;
}

.fad-fh-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 60px;
  padding: 0;
  margin-top: 4px;
  border-radius: 14px;
  background: #54b65c;
  color: #f9fbf8;
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.fad-fh-play span {
  color: inherit;
  font-size: 20px;
  font-weight: inherit;
  line-height: 1;
  white-space: nowrap;
}

.fad-fh-play:hover,
.fad-fh-play:focus-visible {
  background: #c5ff32;
  color: #050806;
}

.fad-home-dashboard .fad-live-schedule {
  width: 100%;
  max-width: 1280px;
  padding: 10px 20px 24px;
}

.fad-home-dashboard .fad-ls-heading h2 {
  font-size: clamp(30px, 3.8vw, 42px);
}

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

.fad-home-dashboard .fad-ls-card {
  grid-template-rows: auto auto minmax(112px, 1fr) auto;
  min-height: 226px;
}

.fad-home-dashboard .fad-ls-card::before {
  inset: 52px 0 auto;
  height: 54px;
  font-size: 54px;
}

.fad-home-dashboard .fad-ls-card-head {
  gap: 8px;
  min-height: 40px;
  padding: 13px 12px 0;
}

.fad-home-dashboard .fad-ls-card-head strong {
  font-size: 12px;
}

.fad-home-dashboard .fad-ls-status {
  min-height: 25px;
  padding: 0 7px;
  font-size: 9px;
}

.fad-home-dashboard .fad-ls-card.is-live .fad-ls-status {
  animation: none;
}

.fad-home-dashboard .fad-ls-time {
  padding: 7px 12px 0;
  font-size: 12px;
}

.fad-home-dashboard .fad-ls-match {
  gap: 7px;
  padding: 13px 10px 15px;
}

.fad-home-dashboard .fad-ls-team {
  gap: 7px;
}

.fad-home-dashboard .fad-ls-team img,
.fad-home-dashboard .fad-ls-logo-fallback {
  width: 46px;
  height: 46px;
  font-size: 19px;
}

.fad-home-dashboard .fad-ls-team b {
  max-width: 82px;
  font-size: 11px;
}

.fad-home-dashboard .fad-ls-scorebox {
  gap: 8px;
  min-width: 66px;
}

.fad-home-dashboard .fad-ls-score {
  gap: 5px;
  min-width: 62px;
  min-height: 38px;
  padding: 0 8px;
  font-size: 20px;
}

.fad-home-dashboard .fad-ls-scorebox a {
  min-height: 30px;
  padding: 0 9px;
  font-size: 10px;
}

.fad-home-dashboard .fad-ls-anchors {
  min-height: 40px;
  padding: 7px 10px;
  font-size: 11px;
}

.fad-news-media {
  overflow: hidden;
}

.fad-news-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fad-home-dashboard .fad-news-home {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

@media (max-width: 1050px) {
  .fad-home-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .fad-home-intro nav {
    justify-content: flex-start;
  }

  .fad-home-dashboard .fad-ls-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .fad-home-dashboard {
    gap: 22px;
    padding-top: 20px;
  }

  .fad-home-intro {
    gap: 20px;
    padding: 14px 16px 0;
  }

  .fad-home-intro h1 {
    font-size: 34px;
  }

  .fad-home-intro p {
    font-size: 15px;
  }

  .fad-home-intro nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .fad-home-intro nav a {
    justify-content: center;
    min-height: 40px;
    padding: 0 8px;
    font-size: 11px;
    text-align: center;
  }

  .fad-home-dashboard .fad-featured-home,
  .fad-home-dashboard .fad-live-schedule,
  .fad-home-dashboard .fad-news-home {
    padding-right: 16px;
    padding-left: 16px;
  }

  .fad-home-dashboard .fad-ls-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .fad-fh-live-screen {
    margin-top: 16px;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-body {
    position: relative;
    grid-template-columns: minmax(0, 1fr) 140px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    min-height: 272px;
    padding: 81px 12px 36px;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-team {
    gap: 14px;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-team img,
  .fad-home-dashboard .fad-featured-home .fad-fh-team i {
    width: 90px;
    height: 90px;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-team strong {
    font-size: 18px;
    white-space: nowrap;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-team small,
  .fad-home-dashboard .fad-featured-home .fad-fh-center small {
    display: none;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-center {
    position: static;
    order: 0;
    gap: 17px;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-center b {
    position: absolute;
    top: 22px;
    color: #a7aaa8;
    font-size: 24px;
    line-height: 1;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-center b:first-of-type {
    left: 12px;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-center b:nth-of-type(2) {
    left: 88px;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-center > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 124px;
    height: 76px;
    border-radius: 16px;
    background: #202223;
    color: #fff;
    font-size: 38px;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-play {
    margin-top: 0;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-footer {
    display: none;
  }

  .fad-home-dashboard .fad-ls-team b {
    max-width: 110px;
  }
}

@media (max-width: 420px) {
  .fad-home-dashboard .fad-featured-home .fad-fh-body {
    grid-template-columns: minmax(0, 1fr) 104px minmax(0, 1fr);
    gap: 6px;
    min-height: 225px;
    padding: 66px 2px 24px;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-team {
    gap: 8px;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-team img,
  .fad-home-dashboard .fad-featured-home .fad-fh-team i {
    width: 64px;
    height: 64px;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-team strong {
    font-size: 14px;
    line-height: 1.15;
    white-space: normal;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-center {
    gap: 10px;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-center b {
    top: 16px;
    font-size: 18px;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-center b:first-of-type {
    left: 2px;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-center b:nth-of-type(2) {
    left: 66px;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-center > span {
    width: 90px;
    height: 56px;
    border-radius: 12px;
    font-size: 28px;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-play {
    width: 104px;
    height: 44px;
    border-radius: 10px;
  }

  .fad-home-dashboard .fad-featured-home .fad-fh-play span {
    font-size: 14px;
  }

  .fad-home-intro h1 {
    font-size: 30px;
  }

  .fad-home-dashboard .fad-ls-filters button {
    gap: 6px;
    padding: 0 8px;
    font-size: 11px;
  }
}
/* End TieulamTV2 live-first homepage. */

/* TieulamTV2 live player, BLV selector and chat 2026-08-09. */
.fad-wrap.fad-match-center,
.fad-home-dashboard {
	width: min(100%, 1360px);
	max-width: 1360px;
	margin-right: auto;
	margin-left: auto;
}

/* Let the match center use its full 1360px canvas inside Flatsome. */
body.tlv-sports-site.page-id-77 #content > .row.row-main {
	width: min(100%, 1360px);
	max-width: 1360px;
}

body.page-id-77 .row.row-main > .large-12.col {
	padding-right: 0;
	padding-left: 0;
}

body.page-id-77 .fad-wrap.fad-match-center {
	padding-right: 0;
	padding-left: 0;
}

.fad-match-center--one-page .fad-mc-live-panel[data-fad-live-chat] {
	overflow: visible;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.fad-mc-live-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	align-items: stretch;
	gap: 12px;
}

.fad-mc-live-column {
	min-width: 0;
	min-height: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-self: start;
	gap: 0;
}

.fad-mc-live-layout .fad-mc-live-screen {
	width: 100%;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.fad-mc-blv-picker {
	display: grid;
	grid-template-columns: max-content minmax(0, 1fr);
	align-items: center;
	gap: 8px;
	min-width: 0;
	height: 51px;
	min-height: 51px;
	max-height: 51px;
	padding: 7px 8px 5px;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 0;
	background: #181a19;
}

.fad-mc-blv-picker > strong {
	height: 32px;
	display: inline-flex;
	align-items: center;
	align-self: center;
	color: #f4c430;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.fad-mc-blv-list {
	min-width: 0;
	height: 32px;
	display: flex;
	align-items: center;
	align-self: center;
	gap: 8px;
	overflow-x: auto;
	padding: 0;
	scrollbar-width: none;
}

.fad-mc-blv-list::-webkit-scrollbar {
	display: none;
}

.fad-mc-blv-button {
	appearance: none;
	min-width: 122px;
	height: 32px;
	min-height: 32px;
	margin: 0;
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	grid-template-rows: 1fr;
	align-items: center;
	column-gap: 6px;
	padding: 2px 6px 2px 3px;
	border: 1px solid #3a413d;
	border-radius: 7px;
	background: #222523;
	color: #f5f7f5;
	line-height: 1;
	text-align: left;
	cursor: pointer;
	transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.fad-mc-blv-button:hover,
.fad-mc-blv-button:focus-visible,
.fad-mc-blv-button.is-active {
	border-color: #1fda7a;
	background: #103525;
	color: #fff;
	outline: 0;
}

.fad-mc-blv-button img,
.fad-mc-blv-button > span {
	grid-row: 1 / -1;
	width: 24px;
	height: 24px;
	display: grid;
	place-items: center;
	object-fit: cover;
	border-radius: 50%;
	background: #303632;
	color: #1fda7a;
	font-size: 8px;
	font-weight: 900;
}

.fad-mc-blv-button b {
	align-self: center;
	min-width: 0;
	overflow: hidden;
	font-size: 10px;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fad-mc-chat {
	min-width: 0;
	height: var(--fad-mc-chat-height, 560px);
	min-height: 0;
	max-height: var(--fad-mc-chat-height, 560px);
	display: flex;
	flex-direction: column;
	align-self: stretch;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: #1a1a1a;
	box-shadow: none;
}

.fad-mc-chat-cta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 10px;
	border-bottom: 2px solid #28519b;
	background: #102144;
}

.fad-mc-chat-cta a {
	min-width: 0;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 0 10px;
	border-radius: 22px;
	font-size: 13px;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: filter 160ms ease, transform 160ms ease;
}

.fad-mc-chat-cta a:hover,
.fad-mc-chat-cta a:focus-visible {
	filter: brightness(1.1);
	transform: translateY(-1px);
	outline: 0;
}

.fad-mc-chat-zalo {
	border: 2px solid #5d8df3;
	background: #173467;
	color: #8eb2ff;
}

.fad-mc-chat-bet {
	border: 2px solid #ffad72;
	background: #e98a4c;
	color: #fff;
}

.fad-mc-chat-head {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) max-content;
	gap: 4px 10px;
	padding: 9px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: #111;
}

.fad-mc-chat-head > div {
	min-width: 0;
}

.fad-mc-chat-head strong,
.fad-mc-chat-head span {
	display: block;
}

.fad-mc-chat-head strong {
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.fad-mc-chat-head > div span {
	overflow: hidden;
	color: #aeb7b0;
	font-size: 10px;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fad-mc-chat-head p {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 0;
	color: #aeb7b0;
	font-size: 11px;
	font-weight: 700;
}

.fad-mc-chat-head p i {
	width: 8px;
	height: 8px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: #f4c430;
}

.fad-mc-chat-head p i[data-state="online"] {
	background: #1fda7a;
	box-shadow: 0 0 0 4px rgba(31, 218, 122, 0.12);
}

.fad-mc-chat-head p i[data-state="error"] {
	background: #ff5b67;
}

.fad-mc-chat-head em {
	grid-column: 1 / -1;
	color: #7f8a82;
	font-size: 10px;
	font-style: normal;
}

.fad-mc-chat-messages {
	min-height: 0;
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 8px;
	scrollbar-color: #4d554f #171a18;
	scrollbar-width: thin;
	overscroll-behavior: contain;
}

.fad-mc-chat-notice {
	display: grid;
	min-height: 110px;
	place-items: center;
	margin: 0;
	padding: 20px;
	color: #879089;
	font-size: 12px;
	line-height: 1.45;
	text-align: center;
}

.fad-mc-chat-message {
	position: relative;
	display: flex;
	align-items: start;
	gap: 6px;
	margin: 0;
	padding: 4px 2px;
	border-radius: 4px;
	color: #fff;
	font-size: 13px;
	line-height: 1.4;
}

.fad-mc-chat-message-head {
	min-width: 0;
	display: flex;
	align-items: flex-start;
	gap: 6px;
	flex: 0 1 auto;
}

.fad-mc-chat-message-head > span:first-child {
	min-width: 42px;
	height: 27px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 6px;
	border-radius: 6px;
	background: #b4931e;
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
}

.fad-mc-chat-message-head strong {
	min-width: 0;
	margin: 0;
	color: #64a7ff;
	font-size: 13px;
	font-weight: 850;
	line-height: 27px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 125px;
}

.fad-mc-chat-message-body {
	min-width: 0;
	padding-top: 4px;
	color: #e7eae8;
	font-size: 13px;
	line-height: 1.45;
	overflow-wrap: anywhere;
	white-space: pre-line;
}

.fad-mc-chat-message.is-assistant {
	display: block;
	margin: 6px 0;
	padding: 0;
	overflow: hidden;
	border: 2px solid rgba(80, 196, 116, 0.7);
	border-radius: 8px;
	background: rgba(63, 185, 80, 0.08);
}

.fad-mc-chat-message.is-assistant .fad-mc-chat-message-head {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 8px;
	background: linear-gradient(100deg, #55b76d 0%, #69c6dd 100%);
}

.fad-mc-chat-message.is-assistant .fad-mc-chat-message-head > span:first-child {
	min-width: auto;
	height: auto;
	padding: 4px 9px;
	border-radius: 4px;
	background: #287d34;
	font-size: 11px;
}

.fad-mc-chat-message.is-assistant .fad-mc-chat-message-head strong {
	max-width: none;
	color: #fff;
	font-size: 14px;
	line-height: 1.2;
}

.fad-mc-chat-message.is-assistant .fad-mc-chat-message-head strong a {
	color: inherit;
	text-decoration: none;
	pointer-events: auto;
	cursor: pointer;
}

.fad-mc-chat-message.is-assistant .fad-mc-chat-message-head strong a:hover,
.fad-mc-chat-message.is-assistant .fad-mc-chat-message-head strong a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.fad-mc-chat-message.is-assistant .fad-mc-chat-message-body {
	padding: 10px;
	background: #f0ffeb;
	color: #101510;
	font-size: 13px;
	font-weight: 750;
	line-height: 1.5;
	white-space: normal;
}

.fad-mc-chat-message.is-assistant .fad-mc-chat-message-body a {
	position: relative;
	z-index: 1;
	color: #e98645;
	font-weight: 900;
	text-decoration: underline;
	text-underline-offset: 2px;
	overflow-wrap: anywhere;
	pointer-events: auto;
	cursor: pointer;
}

.fad-mc-chat-message.is-assistant .fad-mc-chat-message-body a:hover,
.fad-mc-chat-message.is-assistant .fad-mc-chat-message-body a:focus-visible {
	color: #f4a261;
}

.fad-mc-chat-message-head > span.is-level-1,
.fad-mc-chat-level.is-level-1 {
	background: linear-gradient(135deg, #c09a08, #a88500);
}

.fad-mc-chat-message-head > span.is-level-2,
.fad-mc-chat-level.is-level-2 {
	background: linear-gradient(135deg, #d85e00, #bf5200);
}

.fad-mc-chat-message-head > span.is-level-3,
.fad-mc-chat-level.is-level-3 {
	background: linear-gradient(135deg, #23c008, #1ea306);
}

.fad-mc-chat-message-head > span.is-level-4,
.fad-mc-chat-level.is-level-4 {
	background: linear-gradient(135deg, #08aec0, #0797a8);
}

.fad-mc-chat-message-head > span.is-level-5,
.fad-mc-chat-level.is-level-5 {
	background: linear-gradient(135deg, #7c3aed, #6d28d9);
	box-shadow: 0 1px 4px rgba(124, 58, 237, 0.4);
}

.fad-mc-chat-message-body img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 180px;
	margin-top: 6px;
	border-radius: 6px;
	object-fit: contain;
}

.fad-mc-chat-form {
	flex: 0 0 auto;
	height: auto;
	min-height: 0;
	margin: auto 0 0;
	padding: 8px 10px 10px;
	box-sizing: border-box;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	background: #111;
}

.fad-mc-chat-account {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 8px;
}

.fad-mc-chat-account-main {
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 7px;
}

.fad-mc-chat-avatar {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	border-radius: 50%;
	background: #50a768;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
}

.fad-mc-chat-level {
	padding: 4px 7px;
	border-radius: 5px;
	background: #b4931e;
	color: #fff;
	font-size: 10px;
	font-weight: 900;
}

.fad-mc-chat-account-main b {
	min-width: 0;
	overflow: hidden;
	color: #fff;
	font-size: 12px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fad-mc-chat-account-main i {
	color: #8e9690;
	font-size: 11px;
	font-style: normal;
}

.fad-mc-chat-account-actions {
	display: flex;
	align-items: center;
	gap: 5px;
	flex: 0 0 auto;
}

.fad-mc-chat-register,
.fad-mc-chat-account-icon {
	appearance: none;
	margin: 0;
	border: 0;
	font: inherit;
	cursor: pointer;
}

.fad-mc-chat-register {
	min-height: 30px;
	padding: 0 10px;
	border-radius: 6px;
	background: #f97316;
	color: #fff;
	font-size: 11px;
	font-weight: 850;
	line-height: 30px;
}

.fad-mc-chat-register:hover,
.fad-mc-chat-register:focus-visible {
	background: #ff8a2b;
	outline: 0;
}

.fad-mc-chat-account-icon {
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	padding: 0;
	border-radius: 50%;
	background: transparent;
	color: #cbd2cd;
	font-size: 18px;
	line-height: 1;
}

.fad-mc-chat-account-icon:hover,
.fad-mc-chat-account-icon:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	outline: 0;
}

.fad-mc-chat-form > label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.fad-mc-chat-input-row {
	display: grid;
	grid-template-columns: max-content minmax(0, 1fr) max-content;
	align-items: center;
	gap: 8px;
	min-height: 40px;
}

.fad-mc-chat-form input {
	width: 100%;
	min-width: 0;
	height: 40px;
	min-height: 40px;
	max-height: 40px;
	margin: 0;
	padding: 0 12px;
	box-sizing: border-box;
	border: 1px solid #414742;
	border-radius: 5px;
	background: #2a2a2a;
	color: #fff;
	font-size: 13px;
	outline: 0;
}

.fad-mc-chat-form input:focus {
	border-color: #1fda7a;
}

.fad-mc-chat-form button[type="submit"] {
	min-width: 62px;
	height: 40px;
	min-height: 40px;
	max-height: 40px;
	margin: 0;
	padding: 0 14px;
	box-sizing: border-box;
	border: 0;
	border-radius: 5px;
	background: #4b6d50;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	cursor: pointer;
}

.fad-mc-chat-form button[type="submit"]:hover,
.fad-mc-chat-form button[type="submit"]:focus-visible {
	background: #1fda7a;
	color: #07150d;
	outline: 0;
}

.fad-mc-chat-emoji {
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
	max-width: 40px;
	max-height: 40px;
	display: grid;
	place-items: center;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border: 0;
	background: transparent;
	color: #f4c430;
	font-size: 22px;
	cursor: pointer;
}

.fad-mc-chat-emoji:hover,
.fad-mc-chat-emoji:focus-visible {
	color: #1fda7a;
	outline: 0;
}

.fad-mc-chat-form input:disabled,
.fad-mc-chat-form button:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.fad-mc-chat-form > small {
	display: none;
	min-height: 0;
	margin: 5px 0 0 48px;
	color: #8f9991;
	font-size: 10px;
	line-height: 1.3;
}

.fad-mc-chat-form > small:not(:empty) {
	display: block;
}

.fad-mc-chat-form > small.is-error {
	color: #ff7a84;
}

html.fad-mc-auth-open {
	overflow: hidden;
}

.fad-mc-auth-modal[hidden],
.fad-mc-auth-form [hidden] {
	display: none !important;
}

.fad-mc-auth-modal {
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	display: grid;
	place-items: center;
	padding: 16px;
}

.fad-mc-auth-backdrop {
	position: absolute;
	inset: 0;
	margin: 0;
	padding: 0;
	border: 0;
	background: rgba(0, 0, 0, 0.8);
	cursor: pointer;
}

.fad-mc-auth-dialog {
	position: relative;
	z-index: 1;
	width: min(410px, calc(100vw - 32px));
	max-height: calc(100vh - 32px);
	overflow: auto;
	padding: 22px;
	border: 1px solid #364038;
	border-radius: 8px;
	background: #121614;
	color: #fff;
	box-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
}

.fad-mc-auth-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.07);
	color: #d7ddd9;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.fad-mc-auth-close:hover,
.fad-mc-auth-close:focus-visible {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	outline: 0;
}

.fad-mc-auth-dialog h3 {
	margin: 0 42px 16px 0;
	color: #fff;
	font-size: 22px;
	line-height: 1.25;
}

.fad-mc-auth-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	margin-bottom: 16px;
	padding: 4px;
	border-radius: 7px;
	background: #202522;
}

.fad-mc-auth-tabs button {
	height: 38px;
	margin: 0;
	padding: 0 10px;
	border: 0;
	border-radius: 5px;
	background: transparent;
	color: #aeb7b0;
	font-size: 13px;
	font-weight: 850;
	cursor: pointer;
}

.fad-mc-auth-tabs button:hover,
.fad-mc-auth-tabs button:focus-visible,
.fad-mc-auth-tabs button.is-active {
	background: #145b37;
	color: #fff;
	outline: 0;
}

.fad-mc-auth-form {
	display: grid;
	gap: 12px;
	margin: 0;
}

.fad-mc-auth-form label {
	display: grid;
	gap: 5px;
	margin: 0;
	color: #d5dcd7;
	font-size: 12px;
	font-weight: 750;
}

.fad-mc-auth-form input {
	width: 100%;
	height: 44px;
	margin: 0;
	padding: 0 12px;
	box-sizing: border-box;
	border: 1px solid #424c45;
	border-radius: 6px;
	background: #232825;
	color: #fff;
	font-size: 14px;
	outline: 0;
}

.fad-mc-auth-form input:focus {
	border-color: #1fda7a;
	box-shadow: 0 0 0 2px rgba(31, 218, 122, 0.12);
}

.fad-mc-auth-captcha {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
}

.fad-mc-auth-captcha > div {
	min-height: 58px;
	overflow: hidden;
	border: 1px solid #424c45;
	border-radius: 6px;
	background: #fff;
}

.fad-mc-auth-captcha svg {
	display: block;
	width: 100%;
	height: 58px;
}

.fad-mc-auth-captcha button {
	min-width: 82px;
	height: 58px;
	margin: 0;
	padding: 0 10px;
	border: 1px solid #424c45;
	border-radius: 6px;
	background: #232825;
	color: #e0e5e2;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
}

.fad-mc-auth-captcha button:hover,
.fad-mc-auth-captcha button:focus-visible {
	border-color: #1fda7a;
	color: #fff;
	outline: 0;
}

.fad-mc-auth-captcha input {
	grid-column: 1 / -1;
}

.fad-mc-auth-form > p {
	min-height: 18px;
	margin: 0;
	color: #aeb7b0;
	font-size: 12px;
	line-height: 1.45;
}

.fad-mc-auth-form > p.is-error {
	color: #ff7a84;
}

.fad-mc-auth-form > button[type="submit"] {
	height: 44px;
	margin: 0;
	padding: 0 16px;
	border: 0;
	border-radius: 6px;
	background: #1fda7a;
	color: #07150d;
	font-size: 14px;
	font-weight: 900;
	cursor: pointer;
}

.fad-mc-auth-form > button[type="submit"]:hover,
.fad-mc-auth-form > button[type="submit"]:focus-visible {
	background: #35ec8e;
	outline: 0;
}

.fad-mc-auth-form > button[type="submit"]:disabled,
.fad-mc-auth-captcha button:disabled {
	opacity: 0.55;
	cursor: wait;
}

@media (max-width: 980px) {
	.fad-mc-live-layout {
		grid-template-columns: 1fr;
	}

	.fad-mc-chat {
		height: 560px;
		min-height: 560px;
		max-height: 560px;
	}
}

@media (max-width: 680px) {
	.fad-mc-blv-picker {
		grid-template-columns: max-content minmax(0, 1fr);
		gap: 6px;
		padding: 5px 8px;
	}

	.fad-mc-blv-list {
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
		padding-right: 8px;
		box-sizing: border-box;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-x: contain;
		touch-action: pan-x;
		scroll-behavior: smooth;
		scroll-snap-type: x proximity;
		scroll-padding-right: 8px;
	}

	.fad-mc-blv-button {
		flex: 0 0 122px;
		min-width: 122px;
		touch-action: pan-x;
		scroll-snap-align: start;
	}

	.fad-mc-chat {
		height: 520px;
		min-height: 520px;
		max-height: 520px;
	}

	.fad-mc-chat-cta {
		gap: 6px;
		padding: 8px;
	}

	.fad-mc-chat-cta a {
		height: 38px;
		padding: 0 7px;
		font-size: 11px;
	}

	.fad-mc-chat-head {
		padding: 9px 10px;
	}

	.fad-mc-chat-messages {
		padding: 8px;
	}

	.fad-mc-chat-message-head strong {
		max-width: 96px;
	}

	.fad-mc-chat-account {
		gap: 6px;
	}

	.fad-mc-chat-form {
		padding-right: 8px;
		padding-left: 8px;
	}

	.fad-mc-chat-input-row {
		gap: 6px;
	}

	.fad-mc-chat-register {
		padding: 0 8px;
	}

	.fad-mc-auth-modal {
		padding: 10px;
	}

	.fad-mc-auth-dialog {
		width: min(410px, calc(100vw - 20px));
		max-height: calc(100vh - 20px);
		padding: 18px;
	}
}
/* End TieulamTV2 live player, BLV selector and chat. */


/* TieulamTV external chat widget, 2026-09-06. */
.fad-mc-chat--widget .fad-mc-chat-cta,
.fad-mc-chat--widget .fad-mc-chat-head { flex-shrink: 0; }
.fad-mc-chat--widget .tlv-chat-widget {
  position: relative;
  flex: 1 1 0;
  width: 100%;
  min-width: 0;
  min-height: 0;
  isolation: isolate;
}
.fad-mc-chat--widget .tlv-chat-widget iframe {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  border: 0;
}
.tlv-chat-widget-notice { padding: 16px; color: #ddd; font-size: 13px; }
.tlv-chat-widget-status { padding: 16px; color: #ddd; font-size: 13px; }
@media (max-width: 980px) {
  .fad-mc-chat.fad-mc-chat--widget {
    height: 560px;
    max-height: none;
    min-height: 420px;
  }
}
