.sports.sports--hot-matches {
	--hot-radius: var(--bd-hot-radius, 10px);
	--hot-radius-lg: 14px;
	--hot-bg: var(--bd-hot-bg, #fff);
	--hot-surface: var(--bd-surface, #fff);
	--hot-soft: var(--bd-hot-soft, var(--bd-primary-soft, #eff6ff));
	--hot-soft-2: var(--bd-hot-soft-2, var(--bd-soft, #f8fafc));
	--hot-border: var(--bd-hot-border, var(--bd-primary-border, #bfdbfe));
	--hot-text: var(--bd-hot-text, var(--bd-text, #0f172a));
	--hot-muted: var(--bd-hot-muted, var(--bd-muted, #64748b));
	--hot-primary: var(--bd-hot-primary, var(--bd-primary, #2563eb));
	--hot-primary-dark: var(--bd-hot-primary-dark, var(--bd-primary-dark, #1d4ed8));
	--hot-danger: var(--bd-hot-danger, var(--bd-danger, #ef4444));
	--hot-danger-soft: var(--bd-danger-soft, #fee2e2);
	--hot-danger-border: var(--bd-danger-border, #fca5a5);
	color: var(--hot-text);
}

.sports.sports--hot-matches :is(.sports__hot-head, .sports__hot-title-wrap, .sports__hot-icon, .sports__hot-count, .sports__loading, .sports__empty, .sports__hot-league, .sports__hot-team, .sports__hot-center, .sports__hot-score, .sports__popup-overlay, .sports__popup-head, .sports__popup-close, .sports__scoreboard-team, .sports__scoreboard-center, .sports__scoreboard-score, .sports__info-item, .sports__popup-link) {
	display: flex;
	align-items: center;
	min-width: 0;
}

.sports.sports--hot-matches :is(.sports__hot-league span, .sports__hot-names span, .sports__scoreboard-league, .sports__scoreboard-team span, .sports__info-value, .sports__popup-title) {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sports.sports--hot-matches .sports__hot-card {
	overflow: hidden;
	border: 1px solid var(--hot-border);
	border-radius: var(--hot-radius);
	background: linear-gradient(180deg, var(--hot-surface), var(--hot-soft));
	box-shadow: 0 8px 24px rgba(37, 99, 235, .1);
}

.sports.sports--hot-matches .sports__hot-head {
	justify-content: space-between;
	gap: 8px;
	background: linear-gradient(135deg, var(--hot-primary), var(--hot-primary-dark));
	color: var(--hot-surface);
	padding: 10px 12px;
}

.sports.sports--hot-matches .sports__hot-title-wrap {
	gap: 8px;
}

.sports.sports--hot-matches .sports__hot-icon {
	justify-content: center;
	width: 26px;
	height: 26px;
	flex: 0 0 26px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .18);
	animation: bd-hot-pulse 1.6s infinite;
}

.sports.sports--hot-matches .sports__hot-title {
	margin: 0;
	overflow: hidden;
	font-size: 13px;
	font-weight: 950;
	line-height: 1.2;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.sports.sports--hot-matches .sports__hot-count {
	justify-content: center;
	min-width: 26px;
	height: 22px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .18);
	padding: 0 8px;
	font-size: 11px;
	font-weight: 950;
	line-height: 1;
}

.sports.sports--hot-matches :is(.sports__loading, .sports__empty) {
	justify-content: center;
	flex-direction: column;
	gap: 9px;
	min-height: 150px;
	color: var(--hot-muted);
	padding: 22px;
	font-weight: 800;
	text-align: center;
}

.sports.sports--hot-matches .sports__spinner {
	border: 3px solid var(--hot-border);
	border-top-color: var(--hot-primary);
	animation: bd-hot-spin .8s linear infinite;
}

.sports.sports--hot-matches .sports__loading-text {
	margin: 0;
	color: var(--hot-primary);
	font-size: 13px;
	font-weight: 850;
}

.sports.sports--hot-matches .sports__mini-button {
	border: 1px solid var(--hot-primary);
	border-radius: 9px;
	background: var(--hot-primary);
	color: var(--hot-surface);
}

.sports.sports--hot-matches .sports__hot-list {
	display: grid;
	gap: 8px;
	padding: 8px;
}

.sports.sports--hot-matches .sports__hot-match {
	display: block;
	width: 100%;
	overflow: hidden;
	border: 1px solid rgba(37, 99, 235, .18);
	border-radius: 12px;
	background: linear-gradient(145deg, var(--hot-surface), var(--hot-soft));
	color: inherit;
	padding: 8px;
	text-align: inherit;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.sports.sports--hot-matches .sports__hot-match:hover {
	transform: translateY(-2px);
	border-color: var(--hot-primary);
	box-shadow: 0 8px 18px rgba(37, 99, 235, .18);
}

.sports.sports--hot-matches .sports__hot-match.is-live {
	border-color: var(--hot-danger-border);
	background: linear-gradient(145deg, var(--hot-surface), var(--hot-danger-soft));
}

.sports.sports--hot-matches .sports__hot-league {
	gap: 6px;
	min-height: 24px;
	border: 1px solid rgba(37, 99, 235, .1);
	border-radius: 8px;
	background: rgba(37, 99, 235, .06);
	padding: 3px 7px;
}

.sports.sports--hot-matches .sports__hot-league-logo {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	object-fit: contain;
}

.sports.sports--hot-matches .sports__hot-league span {
	flex: 1 1 auto;
	color: var(--hot-primary-dark);
	font-size: 10px;
	font-weight: 900;
}

.sports.sports--hot-matches .sports__hot-league small {
	flex: 0 0 auto;
	color: var(--hot-danger);
	font-size: 10px;
	font-weight: 950;
	white-space: nowrap;
}

.sports.sports--hot-matches .sports__hot-main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
	align-items: center;
	gap: 8px;
	padding: 8px 0;
}

.sports.sports--hot-matches :is(.sports__hot-team, .sports__hot-score) {
	justify-content: center;
}

.sports.sports--hot-matches .sports__hot-team-logo {
	width: 46px;
	height: 46px;
	border: 2px solid var(--hot-primary);
	border-radius: 999px;
	background: var(--hot-surface);
	object-fit: contain;
	padding: 4px;
}

.sports.sports--hot-matches .sports__hot-center {
	justify-content: center;
	flex-direction: column;
	gap: 3px;
}

.sports.sports--hot-matches .sports__hot-score {
	justify-content: center;
	min-width: 64px;
	min-height: 30px;
	border-radius: 9px;
	background: var(--hot-primary);
	color: var(--hot-surface);
	padding: 0 8px;
	font-size: 16px;
	font-weight: 950;
	line-height: 1;
}

.sports.sports--hot-matches .sports__hot-score span {
	min-width: 14px;
	text-align: center;
}

.sports.sports--hot-matches .sports__hot-center small {
	color: var(--hot-muted);
	font-size: 10px;
	font-weight: 850;
	white-space: nowrap;
}

.sports.sports--hot-matches .sports__hot-names {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 4px;
}

.sports.sports--hot-matches .sports__hot-names span {
	border-radius: 7px;
	background: var(--hot-primary);
	color: var(--hot-surface);
	padding: 5px 6px;
	font-size: 10px;
	font-weight: 900;
	text-align: center;
}

.sports.sports--hot-matches .sports__popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 23, 42, .58);
	padding: 12px;
	overflow: hidden;
}

.sports.sports--hot-matches .sports__popup-overlay[hidden] {
	display: none !important;
}

.sports.sports--hot-matches .sports__popup {
	display: flex;
	flex-direction: column;
	width: min(440px, 100%);
	max-height: 90vh;
	overflow: hidden;
	border-radius: 16px;
	background: var(--hot-surface);
	box-shadow: 0 24px 70px rgba(15, 23, 42, .36);
}

.sports.sports--hot-matches .sports__popup-head {
	justify-content: space-between;
	gap: 10px;
	min-height: 42px;
	border-bottom: 1px solid var(--hot-border);
	padding: 8px 10px;
}

.sports.sports--hot-matches .sports__popup-title {
	color: var(--hot-text);
	font-size: 14px;
	font-weight: 950;
}

.sports.sports--hot-matches .sports__popup-close {
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 0;
	border-radius: 9px;
	background: var(--hot-soft-2);
	color: var(--hot-text);
	padding: 0;
	font-size: 14px;
	font-weight: 950;
}

.sports.sports--hot-matches .sports__popup-body {
	overflow: auto;
	max-height: calc(90vh - 42px);
	padding: 10px;
}

.sports.sports--hot-matches .sports__hot-popup-content {
	display: grid;
	gap: 10px;
}

.sports.sports--hot-matches .sports__scoreboard {
	overflow: hidden;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--hot-primary-dark), var(--hot-text));
	color: var(--hot-surface);
	padding: 10px;
}

.sports.sports--hot-matches .sports__scoreboard-league {
	margin-bottom: 8px;
	color: rgba(255, 255, 255, .8);
	font-size: 11px;
	font-weight: 900;
	text-align: center;
}

.sports.sports--hot-matches .sports__scoreboard-main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 110px minmax(0, 1fr);
	align-items: center;
	gap: 8px;
}

.sports.sports--hot-matches .sports__scoreboard-team {
	justify-content: center;
	flex-direction: column;
	gap: 6px;
	text-align: center;
}

.sports.sports--hot-matches .sports__scoreboard-logo {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--hot-surface);
	object-fit: contain;
	padding: 5px;
}

.sports.sports--hot-matches .sports__scoreboard-team span {
	width: 100%;
	color: var(--hot-surface);
	font-size: 11px;
	font-weight: 900;
}

.sports.sports--hot-matches .sports__scoreboard-center {
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}

.sports.sports--hot-matches .sports__scoreboard-status {
	border-radius: 999px;
	background: var(--hot-danger);
	color: var(--hot-surface);
	padding: 3px 8px;
	font-size: 10px;
	font-weight: 950;
	line-height: 1;
	white-space: nowrap;
}

.sports.sports--hot-matches .sports__scoreboard-score {
	justify-content: center;
	gap: 5px;
	color: var(--hot-surface);
	font-size: 24px;
	font-weight: 950;
	line-height: 1;
}

.sports.sports--hot-matches .sports__scoreboard-time {
	color: rgba(255, 255, 255, .72);
	font-size: 10px;
	font-weight: 800;
	text-align: center;
}

.sports.sports--hot-matches .sports__info-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 7px;
}

.sports.sports--hot-matches .sports__info-item {
	justify-content: space-between;
	gap: 8px;
	min-height: 34px;
	border-radius: 9px;
	background: var(--hot-soft-2);
	padding: 7px 8px;
}

.sports.sports--hot-matches .sports__info-label {
	flex: 0 0 auto;
	color: var(--hot-muted);
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.sports.sports--hot-matches .sports__info-value {
	flex: 1 1 auto;
	color: var(--hot-text);
	font-size: 11px;
	font-weight: 950;
	line-height: 1;
	text-align: right;
}

.sports.sports--hot-matches .sports__popup-link {
	justify-self: center;
	justify-content: center;
	width: min(280px, 100%);
	min-height: 36px;
	border-radius: 10px;
	background: var(--hot-primary);
	color: var(--hot-surface);
	padding: 0 12px;
	font-size: 12px;
	font-weight: 950;
	text-decoration: none;
}

.sports.sports--hot-matches .sports__popup-link:hover {
	background: var(--hot-primary-dark);
	color: var(--hot-surface);
	text-decoration: none;
}

@keyframes bd-hot-spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes bd-hot-pulse {
	0%, 100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.08);
	}
}

@media (max-width: 480px) {
	.sports.sports--hot-matches .sports__hot-main {
		grid-template-columns: minmax(0, 1fr) 68px minmax(0, 1fr);
	}

	.sports.sports--hot-matches .sports__hot-team-logo {
		width: 40px;
		height: 40px;
	}

	.sports.sports--hot-matches .sports__popup-overlay {
		align-items: flex-start;
		padding: 10px;
		overflow-y: auto;
	}

	.sports.sports--hot-matches .sports__scoreboard-main {
		grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
	}

	.sports.sports--hot-matches .sports__scoreboard-logo {
		width: 44px;
		height: 44px;
	}

	.sports.sports--hot-matches .sports__scoreboard-score {
		font-size: 21px;
	}

	.sports.sports--hot-matches .sports__info-grid {
		grid-template-columns: 1fr;
	}

	.sports.sports--hot-matches .sports__popup-link {
		width: 100%;
	}
}