/* Match card */
.xscores-match-card{
	border: none;
	border-radius: 12px;
	overflow: hidden;
}

/* Header */
.xscores-match-header{
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-bottom: 2px solid #5c9801;
}
.xscores-match-league{
	font-weight: 700;
	font-size: 0.9rem;
	color: #1a1a1a;
}
.xscores-match-date{
	font-size: 0.82rem;
	color: #6c757d;
	font-weight: 500;
}

/* Live badge */
.xscores-match-live-badge{
	padding-top: 1rem;
}
.xscores-match-live-badge .badge{
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	padding: 0.4em 1em;
	animation: xscores-pulse 2s infinite;
}

/* Scoreboard */
.xscores-match-scoreboard{
	padding: 0.5rem 1rem;
	background: linear-gradient(180deg, #f8faf4 0%, #ffffff 100%);
	border-bottom: 1px solid #e9ecef;
}

/* Teams */
.xscores-match-team{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem;
	border-radius: 10px;
	cursor: pointer;
	transition: background-color 0.15s ease;
}
.xscores-match-team:hover{
	background-color: rgba(92, 152, 1, 0.05);
}
.xscores-match-team .xs-logo{
	width: 48px;
	height: 48px;
	object-fit: contain;
}
.xscores-match-team-name{
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	overflow-wrap: break-word;
	white-space: break-spaces;
	color: #1a1a1a;
}

/* Score */
.xscores-match-score{
	display: inline-block;
	font-size: 2.2rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: 0.04em;
	line-height: 1.2;
	padding: 0.35rem 1rem;
	background: #1a1a1a;
	border-radius: 8px;
	white-space: nowrap;
}

/* Subscribe buttons */
.xscores-match-subscribe{
	margin-top: 0.5rem;
}
.xscores-match-subscribe .btn{
	font-size: 0.82rem;
	font-weight: 600;
	border-radius: 20px;
	padding: 0.4em 1.2em;
	letter-spacing: 0.02em;
	transition: all 0.2s ease;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.xscores-match-subscribe .btn-primary{
	background: linear-gradient(135deg, #e8890a 0%, #d47a08 100%);
	border-color: #d47a08;
}
.xscores-match-subscribe .btn-primary:hover{
	background: linear-gradient(135deg, #d47a08 0%, #bf6d06 100%);
	border-color: #bf6d06;
	box-shadow: 0 3px 10px rgba(212,122,8,0.3);
	transform: translateY(-1px);
}
.xscores-match-subscribe .btn-outline-success{
	border-color: #5c9801;
	color: #5c9801;
	background: rgba(92,152,1,0.06);
}
.xscores-match-subscribe .btn-outline-success:hover{
	background: rgba(92,152,1,0.12);
	border-color: #4a7d01;
	color: #4a7d01;
}

/* Expand button */
.xscores-match-expand{
	padding: 0 0 1rem 0;
}
.xscores-match-expand .btn{
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	padding: 0.5em 1.5em;
	transition: all 0.2s ease;
}
.xscores-match-expand .btn:hover{
	background-color: #5c9801;
	border-color: #5c9801;
	color: #fff !important;
}

/* Details section */
.xscores-match-details{
	border-top: 1px solid #e9ecef;
}
.xscores-match-status{
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	padding: 1rem 1rem 0.5rem;
	color: #333;
}
.xscores-match-partial{
	text-align: center;
	margin-bottom: 0.5rem;
}
.xscores-match-tabs{
	margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 576px){
	.xscores-match-team .xs-logo{
		width: 36px;
		height: 36px;
	}
	.xscores-match-team-name{
		font-size: 0.82rem;
	}
	.xscores-match-score{
		font-size: 1.8rem;
		padding: 0.3rem 0.8rem;
	}
	.xscores-match-date{
		font-size: 0.75rem;
	}
	.xscores-match-league{
		font-size: 0.82rem;
	}
}