/* Homepage styles */

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #121417;
	color: #e2e8f0;
	font-family: system-ui, -apple-system, sans-serif;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.home-view {
	flex: 1;
	min-height: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.match-sidebar {
	background: #16181d;
}

.match-list-scrollable {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	padding: 0.5rem 0.25rem 0.25rem 0.25rem;
}

.match-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}

.match-card {
	cursor: pointer;
	margin-top: 0.35rem;
	transition: transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.match-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.3) !important;
}

.match-card.selected {
	border-color: #3b82f6 !important;
	background-color: #1e222b !important;
	box-shadow: 0 0 0 1px #3b82f6;
}

.text-team-red { color: #ff5252; }
.text-team-blue { color: #448aff; }

.text-muted {
	color: #938a82 !important;
}

.match-viewport {
	background: #121417;
}

.match-iframe-container {
	background: #000;
	border-radius: 6px;
	overflow: hidden;
}

.iframe-loader, .iframe-blank-prompt {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(18, 20, 23, 0.92);
	z-index: 10;
}

.iframe-blank-prompt {
	z-index: 11;
}

#match-iframe {
	border: 0 !important;
}
