body { 
	background-color: #f8f9fa; 
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	display: flex; 
	justify-content: center; 
	padding-top: 10%;
}
.container {
	width: 95%;
	max-width: 1100px;
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
h2 { text-align: center; color: #444; font-weight: 600; margin-bottom: 20px; }

h1 { text-align: center; color: #444; font-weight: 100; margin-bottom: 20px; font-size: small; }

.live-stats-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin-bottom: 30px;
	padding: 20px;
	background: #fdfdfd;
	border-radius: 10px;
	border: 1px solid #f0f0f0;
}
.stat-card { text-align: center; min-width: 130px; }
.stat-card .label {
	display: block;
	font-size: 10px;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 5px;
}
.stat-card .value {
	display: block;
	font-size: 16px;
	font-weight: bold;
	color: #2c3e50;
}
.divider { width: 1px; background: #eee; height: 35px; align-self: center; }