.stats-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s ease;
}
.stats-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 800px) {
	.stats-row {
		display: none;
	}
}

.league-card {
	background: white;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.league-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.league-card-header {
	position: relative;
	padding: 1.25rem 1.25rem 1rem;
	border-bottom: 1px solid #eef0f3;
}

.league-title {
	color: #1a202c;
	font-weight: 700;
	margin-bottom: 0.35rem;
}

.league-reg-status {
	font-size: 0.8rem;
}
.league-reg-status.reg-status-upcoming {
	color: #0969da;
}
.league-reg-status.reg-status-open {
	color: #1a7f37;
}
.league-reg-status.reg-status-closed {
	color: #718096;
}

.league-card-body {
	padding: 1.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.league-stats-row {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.league-stat-box {
	background: #f4f6f9;
	border-radius: 8px;
	padding: 0.6rem 0.9rem;
	flex: 1;
	text-align: center;
}
.league-stat-box-wide {
	margin-bottom: 0.9rem;
}

.league-stat-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a202c;
	line-height: 1.2;
}

.league-stat-label {
	font-size: 0.7rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #718096;
}

.league-description {
	font-size: 0.85rem;
	color: #718096;
	flex: 1;
}

.league-view-btn {
	background-color: #0d6efd;
	color: #fff;
	font-weight: 600;
	border-radius: 8px;
	padding: 0.55rem 1rem;
	margin-top: auto;
}
.league-view-btn:hover {
	background-color: #0b5ed7;
	color: #fff;
}