.member-section {
	background: #2a2a2a;
	border-radius: 10px;
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.member-section h2 {
	color: #cc5200;
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid rgba(204, 82, 0, 0.3);
	font-size: 1.5rem;
	text-align: center;
}
.member-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1rem;
}
.member-item {
	background: rgba(255, 255, 255, 0.05);
	padding: 0.75rem;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: 360px;
	margin: 0.25rem auto;
}
.member-flag { flex-shrink: 0; }
.member-info {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.member-steam { flex-shrink: 0; margin-left: 0.0625rem; }
.steam-link {
	color: #87ceeb;
	text-decoration: none;
	font-size: 1.25rem;
	padding: 0.3rem 0.6rem;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}
.steam-link:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #87ceeb;
}
.member-name {
	font-weight: normal;
	color: #f0f0f0;
	flex: 1;
}
.member-badges { display: flex; gap: 0.5rem; }
.badge {
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: bold;
}
.badge-admin { background: rgba(231, 76, 60, 0.8); color: white; }
.badge-fg { background: rgba(52, 152, 219, 0.8); color: white; }
