@media only screen and (max-width: 600px) {
	.home .intromobilehome {
		font-size: 70%;
		font-weight: normal;
	}
}

/* Match Schedule Page */
.match-schedule-page {
	padding-bottom: 60px;
}

.match-box {
	padding: 0 15px;
}

.match-card {
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	transition: box-shadow 0.2s ease;
}

.match-card:hover {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.match-card.is-live {
	border-color: #dc3545;
	border-width: 2px;
}

.match-card .match-info {
	display: flex;
	flex-direction: column;
}

.match-card .league-name {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.match-card .match-time {
	font-size: 13px;
	color: #777;
}

.teams-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.team {
	display: flex;
	align-items: center;
	gap: 10px;
}

.team-logo {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 50%;
}

.team-name {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	max-width: 120px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vs-badge {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #f8c21c;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vs-badge span {
	font-size: 14px;
	font-weight: 700;
	color: #333;
}

.match-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
	flex-wrap: wrap;
}

.btn-live {
	display: flex;
	align-items: center;
	gap: 6px;
	background: #dc3545;
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
}

.btn-live:hover {
	background: #c82333;
	color: #fff;
}

.live-dot {
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
	animation: pulse 1s infinite;
}

@keyframes pulse {
	0% { opacity: 1; }
	50% { opacity: 0.5; }
	100% { opacity: 1; }
}

.blv-avatars {
	display: flex;
	gap: -8px;
}

.blv-avatars .blv-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #fff;
	margin-left: -8px;
}

.blv-avatars .blv-avatar:first-child {
	margin-left: 0;
}

.btn-schedule {
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
}

.btn-schedule.btn-warning {
	background: #ffc71c;
	border-color: #ffc71c;
	color: #333;
}

.btn-schedule.btn-warning:hover {
	background: #f8b800;
	border-color: #f8b800;
}

.btn-scheduled {
	background: #e9ecef;
	border-color: #e9ecef;
	color: #666;
}

.no-match-icon {
	width: 80px;
	height: 80px;
	opacity: 0.5;
}

/* Match Header - New Layout */
.match-header {
	background: #fff;
	padding: 20px;
	border-radius: 12px;
	margin-bottom: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.match-header .schedule-info h4 {
	color: #333;
	font-weight: 700;
}

.match-header .date-display {
	color: #666;
	font-size: 14px;
}

.match-header .filter-controls {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}

.match-header .filter-controls input[type="date"] {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 8px 12px;
	font-size: 14px;
}

.match-header .filter-controls input[type="date"]:focus {
	outline: none;
	border-color: #ffc71c;
	box-shadow: 0 0 0 2px rgba(255, 199, 28, 0.2);
}

.match-header .filter-controls .btn-warning {
	background: #ffc71c;
	border-color: #ffc71c;
	color: #333;
}

.match-header .filter-controls .btn-warning:hover {
	background: #f8b800;
	border-color: #f8b800;
}

/* Match Results */
.match-results {
	min-height: 200px;
}

.match-results .loading-state {
	min-height: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.teams-container {
		flex-direction: column;
		gap: 10px;
	}

	.team {
		gap: 8px;
	}

	.team-logo {
		width: 36px;
		height: 36px;
	}

	.team-name {
		font-size: 14px;
		max-width: 100px;
	}

	.vs-badge {
		width: 40px;
		height: 40px;
	}

	.vs-badge span {
		font-size: 12px;
	}

	.match-actions {
		justify-content: center;
		margin-top: 15px;
	}

	.match-card .card-body .row {
		text-align: center;
	}

	.match-header .filter-controls {
		justify-content: flex-start;
		margin-top: 15px;
	}

	.match-header .col-lg-6:first-child {
		text-align: center;
		margin-bottom: 10px;
	}
}

@media (max-width: 480px) {
	.team-logo {
		width: 32px;
		height: 32px;
	}
}