/* Gas Station Radio — match day widget */

.gsr-match {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 14px 22px;
	background: rgba(15, 26, 50, 0.78);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 14px;
	color: #f7f8fa;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 0.95rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
	min-width: 280px;
}

.gsr-match__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #94a8bf;
	padding: 3px 10px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 999px;
}

.gsr-match__badge--live {
	background: rgba(239, 68, 68, 0.15);
	border-color: rgba(239, 68, 68, 0.5);
	color: #fca5a5;
}

.gsr-match__dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: #ef4444;
	box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
	animation: gsr-match-pulse 1.6s ease-out infinite;
}

@keyframes gsr-match-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
	70%  { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
	100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.gsr-match__teams {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	font-size: 1.05rem;
	margin-top: 2px;
}

.gsr-match__team {
	max-width: 130px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gsr-match__vs {
	color: #94a8bf;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.gsr-match__score {
	color: #fbbf24;
	font-size: 1.4rem;
	font-weight: 900;
	letter-spacing: 1px;
	min-width: 60px;
	text-align: center;
}

.gsr-match__countdown {
	color: #fbbf24;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.4px;
}

.gsr-match__venue {
	color: #94a8bf;
	font-size: 0.78rem;
	letter-spacing: 0.3px;
}

@media (max-width: 540px) {
	.gsr-match { min-width: 0; padding: 12px 16px; font-size: 0.88rem; }
	.gsr-match__teams { font-size: 0.95rem; gap: 8px; }
	.gsr-match__team  { max-width: 90px; }
	.gsr-match__score { font-size: 1.2rem; min-width: 48px; }
}
