.content-section {
	background: #2a2a2a;
	border-radius: 10px;
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.section-header {
	text-align: center;
	margin-bottom: 2rem;
}

.section-header h1 {
	color: #cc5200;
	margin-bottom: 0.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid rgba(204, 82, 0, 0.3);
	font-size: 1.8rem;
}

.section-header p {
	color: #cccccc;
	margin: 0;
	font-size: 1rem;
}

.rankings-table {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.rankings-table table {
	width: 100%;
	border-collapse: collapse;
}

.rankings-table th {
	background: rgba(204, 82, 0, 0.9);
	color: white;
	padding: 1rem;
	text-align: left;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.rankings-table td {
	padding: 0.75rem 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: #cccccc;
}

.rankings-table tbody tr:hover {
	background: rgba(255, 255, 255, 0.05);
}

.rank-column {
	width: 60px;
	text-align: center;
	font-weight: bold;
	color: #cc5200;
}

.player-name {
	font-weight: 600;
	color: #ffffff;
	font-size: 0.95rem;
}

.rank-name {
	font-weight: bold;
	font-size: 1.05em;
}

.rank-gold {
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.rank-silver {
	background: linear-gradient(45deg, #c0c0c0, #e8e8e8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.rank-bronze {
	background: linear-gradient(45deg, #cd7f32, #d4af37);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.error-message {
	background: rgba(231, 76, 60, 0.1);
	color: #e74c3c;
	padding: 1.5rem;
	border-radius: 8px;
	border-left: 4px solid #e74c3c;
	margin: 1rem 0;
}

.error-message i {
	color: #e74c3c;
	margin-right: 10px;
}
