.mini-mc-ca0d094a {
	background-color: #111827;
	border-radius: 12px;
	padding: 15px;
	color: #fff;
	font-family: system-ui, sans-serif;
	width: 300px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.mini-mc-status {
	background-color: #e53e3e;
	color: white;
	font-size: 10px;
	font-weight: bold;
	padding: 3px 8px;
	border-radius: 4px;
	display: inline-block;
	margin-bottom: 15px;
}
.mini-mc-teams {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}
.mini-mc-team {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	width: 60px;
}
.mini-mc-team img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}
.mini-mc-team span {
	font-size: 14px;
	font-weight: bold;
}
.mini-mc-score {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.mini-mc-score-numbers {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 2px;
}
.mini-mc-time {
	font-size: 12px;
	color: #e53e3e;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 5px;
}
.blink {
	width: 6px;
	height: 6px;
	background-color: #e53e3e;
	border-radius: 50%;
	animation: blink 1s infinite;
}
@keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
.mini-mc-btn {
	display: block;
	background-color: #e53e3e;
	color: white;
	text-decoration: none;
	padding: 10px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	transition: background 0.2s;
}
.mini-mc-btn:hover {
	background-color: #c53030;
}

.bn-ca0d094a {
	display: flex;
	background-color: #1f2937;
	color: white;
	font-family: system-ui, sans-serif;
	height: 40px;
	align-items: center;
	overflow: hidden;
}
.bn-label {
	background-color: #e53e3e;
	padding: 0 20px;
	font-weight: bold;
	font-size: 12px;
	height: 100%;
	display: flex;
	align-items: center;
	z-index: 2;
	position: relative;
}
.bn-ticker {
	flex-grow: 1;
	overflow: hidden;
	white-space: nowrap;
}
.bn-track {
	display: inline-block;
	animation: ticker 20s linear infinite;
	padding-left: 100%;
}
.bn-track span {
	font-size: 13px;
	display: inline-block;
	vertical-align: middle;
}
.bn-sep {
	margin: 0 20px;
	color: #6b7280;
}
@keyframes ticker {
	0% { transform: translate3d(0, 0, 0); }
	100% { transform: translate3d(-100%, 0, 0); }
}