/* slcard / sllist — lista de servidores públicos (carregado em engine/functions.php head()) */

/* ── List wrapper ───────────────────────────────────────── */
.sllist {
	margin: 0 0 1rem 0;
}
.sllist .slcard {
	margin-bottom: 0.75rem;
}

/* ── Card sheet ─────────────────────────────────────────── */
.sllist .slcard__sheet {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
	border: 1px solid #e0e2e6;
	border-left: 4px solid #d1d5db;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	transition: box-shadow 0.18s ease, border-color 0.18s ease;
}
.sllist .slcard__sheet:hover {
	box-shadow: 0 4px 14px rgba(0,0,0,0.08);
	border-color: #b0b5be;
	border-left-color: #b0b5be;
}

/* Premium — gold accent */
.sllist .slcard--premium .slcard__sheet {
	background: #fff9f0;
	border-color: #f0d4a8;
	border-left-color: #c18d50;
}
.sllist .slcard--premium .slcard__sheet:hover {
	box-shadow: 0 4px 16px rgba(193,141,80,0.18);
	border-color: #e0c090;
	border-left-color: #b07030;
}

/* Sponsored — blue accent */
.sllist .slcard--sponsored .slcard__sheet {
	background: #f0f7ff;
	border-color: #bfdbfe;
	border-left-color: #3b82f6;
}
.sllist .slcard--sponsored .slcard__sheet:hover {
	box-shadow: 0 4px 14px rgba(59,130,246,0.13);
	border-color: #93c5fd;
	border-left-color: #2563eb;
}

/* ── Rail (rank + icon) ─────────────────────────────────── */
.sllist .slcard__rail {
	display: none;
	width: 4.25rem;
	flex: 0 0 4.25rem;
	background: #f7f8fa;
	border-right: 1px solid #e0e2e6;
	align-items: center;
	justify-content: center;
}
.sllist .slcard--premium .slcard__rail {
	background: #fef3e2;
	border-right-color: #f0d4a8;
	color: #4c300c;
}
.sllist .slcard--sponsored .slcard__rail {
	background: #e8f4fc;
	border-right-color: #bfdbfe;
	color: #1e3a5f;
}
.sllist .slcard__rail-stack {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 0.25rem;
	min-height: 100%;
}
.sllist .slcard__rank-num {
	font-size: 1.1rem;
	font-weight: 800;
	color: #374151;
	margin-bottom: 0.65rem;
	line-height: 1;
}
.sllist .slcard--premium .slcard__rank-num {
	color: #7a4e10;
}
.sllist .slcard--sponsored .slcard__rank-num {
	color: #1d4ed8;
}
.sllist .slcard__icon {
	display: block;
	width: 36px;
	max-width: 36px;
	height: auto;
	border-radius: 3px;
	object-fit: contain;
}

/* ── Lead (banner + tags) ───────────────────────────────── */
.sllist .slcard__lead {
	flex: 1 1 auto;
	max-width: 100%;
	width: 100%;
	padding: 0.85rem 0.75rem 0.65rem;
	box-sizing: border-box;
}
.sllist .slcard__lead--nobanner {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.sllist .slcard__frame {
	position: relative;
	max-width: 468px;
	margin: 0 auto;
	min-height: 60px;
	border-radius: 5px;
	overflow: hidden;
}
.sllist .slcard__frame-link {
	display: block;
	position: relative;
	z-index: 0;
}
.sllist .slcard__frame-link img,
.sllist .slcard__frame-link video {
	width: 100%;
	max-width: 468px;
	height: auto;
	max-height: 90px;
	min-height: 60px;
	object-fit: cover;
	border-radius: 5px;
	display: block;
	margin: 0 auto;
	pointer-events: none;
	border: 1px solid rgba(0,0,0,0.06);
	box-sizing: border-box;
}
.sllist .slcard__frame-link.slcard__frame-link--placeholder {
	display: block;
	text-decoration: none;
	color: inherit;
}
.sllist .slcard__banner-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 468px;
	min-height: 64px;
	max-height: 90px;
	margin: 0 auto;
	background: linear-gradient(135deg, #545c6b 0%, #6b7280 100%);
	color: #f3f4f6;
	font-size: 12px;
	font-weight: 700;
	border-radius: 5px;
	border: 1px solid rgba(0,0,0,0.12);
	box-sizing: border-box;
	pointer-events: none;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}
.sllist .slcard--premium .slcard__banner-placeholder {
	background: linear-gradient(135deg, #a07030 0%, #c09050 100%);
	border-color: rgba(0,0,0,0.1);
	color: #fff3dc;
}
.sllist .slcard__frame-veil {
	position: absolute;
	inset: 0;
	border-radius: 5px;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, transparent 45%);
}

/* Players-online badge overlaid on banner */
.sllist .slcard__live {
	position: absolute;
	top: 6px;
	right: 6px;
	z-index: 2;
	background: rgba(55,168,52,0.93);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 999px;
	white-space: nowrap;
	line-height: 1.35;
	box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}

/* Gamemodes/type tags */
.sllist .slcard__tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 4px;
	margin-top: 8px;
	padding: 0;
}
.sllist .slcard__tag {
	background: #f0f1f3;
	color: #484e5b;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 5px;
	line-height: 1.3;
}
.sllist .slcard--premium .slcard__tag:not(.slcard__tag--premium) {
	background: #fde8c5;
	color: #7a4a10;
}
.sllist .slcard__tag--premium {
	background: linear-gradient(135deg, #c18d50, #cba36d);
	color: #fff;
	border: none;
}

/* ── Core (name + status + platforms) ──────────────────── */
.sllist .slcard__core {
	flex: 1 1 200px;
	min-width: 0;
	max-width: 100%;
	padding: 0.65rem 0.85rem 0.85rem;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	justify-content: center;
	box-sizing: border-box;
}
.sllist .slcard__meta {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	width: 100%;
	padding: 0;
}
.sllist .slcard__name--lead {
	font-size: 1.07rem;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
	color: #1e2634;
	max-width: 100%;
}
.sllist .slcard__title-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	flex-wrap: wrap;
	max-width: 100%;
	min-width: 0;
}
.sllist .slcard__list-badge-icons {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	flex-shrink: 0;
}
.server-detail-layout .slcard__list-badge-icons,
.sdp-wrap .slcard__list-badge-icons {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	flex-shrink: 0;
	vertical-align: middle;
	margin-left: 0.35rem;
}
.sllist .slcard__list-badge-img {
	display: block;
	height: 22px;
	width: auto;
	max-height: 22px;
	object-fit: contain;
}
.server-detail-layout .slcard__list-badge-img,
.sdp-wrap .slcard__list-badge-img {
	display: block;
	height: 22px;
	width: auto;
	max-height: 22px;
	object-fit: contain;
	vertical-align: middle;
}
.sllist .slcard__name-link {
	color: #1e2634;
	text-decoration: none;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-width: 0;
	flex: 0 1 auto;
	max-width: 100%;
}
.sllist .slcard__name-link:hover {
	color: #4183c4;
}
.sllist .slcard--premium .slcard__name-link {
	color: #4a2e08;
}
.sllist .slcard--premium .slcard__name-link:hover {
	color: #834a14;
}

/* Status row (Online pill + players) */
.sllist .slcard__status {
	margin: 0.05rem 0;
}
.sllist .slcard__status-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	font-size: 13px;
	font-weight: 600;
}
.sllist .slcard__pill {
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 999px;
	display: inline-block;
	line-height: 1.35;
}
.sllist .slcard__pill--on {
	background: #22c55e;
	color: #fff;
}
.sllist .slcard__pill--off {
	background: #ef4444;
	color: #fff;
}
.sllist .slcard__playing {
	color: #6b7280;
	font-size: 12px;
	font-weight: 600;
}
.sllist .slcard--premium .slcard__playing {
	color: #6b4c1a;
}

/* Platform/edition badges */
.sllist .slcard__platforms {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 0.25rem;
	justify-content: center;
}
.sllist .slcard__platform {
	font-size: 11px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 5px;
	background: #3d4557;
	color: #dde1ea;
	line-height: 1.3;
}
.sllist .slcard__platform--java {
	background: #3d4557;
	color: #dde1ea;
}
.sllist .slcard__platform--cross {
	background: #2d5080;
	color: #e0eeff;
}
.sllist .slcard__platform--cracked {
	background: #e2e5ea;
	color: #374151;
}
.sllist .slcard__platform--version {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	max-width: 100%;
	box-sizing: border-box;
	padding: 4px 10px;
	border-radius: 999px;
	background: #f0f1f5;
	color: #1e3a8a;
	border: 1px solid #dde2ec;
	font-weight: 600;
	line-height: 1.25;
	text-decoration: none;
	cursor: default;
	-webkit-font-smoothing: antialiased;
}
.sllist .slcard__platform--version .icon {
	margin: 0 !important;
	opacity: 1;
	font-size: 0.9em;
	color: #2563eb;
	flex-shrink: 0;
}
.sllist .slcard__platform--whitelist {
	background: #1e4040;
	color: #cdeaea;
}

/* Premium platform overrides */
.sllist .slcard--premium .slcard__platform--java {
	background: #5a3608;
	color: #fde8c0;
}
.sllist .slcard--premium .slcard__platform--cross {
	background: #4a3008;
	color: #fce8c0;
}
.sllist .slcard--premium .slcard__platform--cracked {
	background: #e8d5b0;
	color: #4a2c08;
}
.sllist .slcard--premium .slcard__platform--version {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	max-width: 100%;
	box-sizing: border-box;
	padding: 4px 10px;
	border-radius: 999px;
	background: #fef3e2;
	color: #7a4e10;
	border: 1px solid #f0d4a0;
	font-weight: 600;
	line-height: 1.25;
	text-decoration: none;
	cursor: default;
	-webkit-font-smoothing: antialiased;
}
.sllist .slcard--premium .slcard__platform--version .icon {
	color: #c18d50;
}
.sllist .slcard--premium .slcard__platform--whitelist {
	background: #1c3535;
	color: #c8e8e8;
}

/* Detail chips */
.sllist .slcard__details {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 5px;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.sllist .slcard__detail {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: #f0f1f5;
	color: #3f3f46;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 5px;
	max-width: 100%;
	box-sizing: border-box;
}
.sllist .slcard__detail .icon {
	margin: 0 !important;
	opacity: 0.55;
}
.sllist .slcard--premium .slcard__detail {
	background: #fde8c5;
	color: #5c3a10;
}

/* Description blurb */
.sllist .slcard__blurb {
	margin: 0;
	font-size: 0.8rem;
	line-height: 1.45;
	color: #6b7280;
	max-width: 100%;
	text-align: center;
}
.sllist .slcard--premium .slcard__blurb {
	color: #6a4820;
}

/* ── Side panel (IP + Copy button) ─────────────────────── */
.sllist .slcard__side {
	flex: 0 0 14rem;
	width: 100%;
	max-width: 14rem;
	min-height: 0;
	display: flex;
	align-self: stretch;
	box-sizing: border-box;
	border-left: 1px solid #e0e2e6;
}
.sllist .slcard--premium .slcard__side {
	border-left-color: #f0d4a8;
}
.sllist .slcard--sponsored .slcard__side {
	border-left-color: #bfdbfe;
}
.sllist .slcard__side-inner {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 1rem 1rem 1rem;
	box-sizing: border-box;
	justify-content: center;
	gap: 0;
}

/* Legacy .copy-action reset inside list cards */
.sllist .slcard__side .copy-action {
	float: none !important;
	width: auto !important;
	max-width: none !important;
	position: relative !important;
	height: auto !important;
	line-height: normal !important;
}

/* IP hostname box */
.sllist .slcard__host.copy-action {
	display: flex !important;
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
	justify-content: center;
	align-items: center;
	min-height: 38px;
	padding: 6px 10px;
	font-size: 0.8rem;
	font-weight: 700;
	text-align: center;
	color: #374151 !important;
	background: #f3f5f8 !important;
	border-radius: 7px 7px 0 0;
	cursor: pointer;
	transition: background 0.15s ease;
	word-break: break-word;
	line-height: 1.3;
	box-sizing: border-box;
	border: 1px solid #e0e2e6 !important;
	border-bottom: none !important;
}
.sllist .slcard__host.copy-action:hover {
	color: #1e2634 !important;
	background: #e8ebf0 !important;
}
.sllist .slcard--premium .slcard__host.copy-action {
	background: #fde8c5 !important;
	color: #5a3610 !important;
	border-color: #f0d0a0 !important;
}
.sllist .slcard--premium .slcard__host.copy-action:hover {
	background: #fcd8a8 !important;
	color: #4a2808 !important;
}
.sllist .slcard--sponsored .slcard__host.copy-action {
	background: #dbeafe !important;
	color: #1e3a5f !important;
	border-color: #bfdbfe !important;
}
.sllist .slcard--sponsored .slcard__host.copy-action:hover {
	background: #c5d9fa !important;
	color: #172554 !important;
}

.sllist .slcard__paste.copy-action {
	background: transparent !important;
	color: inherit !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	width: 100% !important;
	height: auto !important;
	line-height: normal !important;
	position: relative !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	flex: 0 0 auto;
	min-height: 0;
	overflow: visible;
}
.sllist .slcard__paste .copy-text,
.sllist .slcard__paste .copy-success {
	position: static !important;
	left: auto !important;
	top: auto !important;
	float: none !important;
	max-width: 100% !important;
	outline: none !important;
	border: none !important;
}
.sllist .slcard__paste .copy-success {
	width: 0;
	min-height: 0;
	padding: 0;
	margin: 0;
	overflow: hidden;
	flex: 0 0 auto;
	box-sizing: border-box !important;
	align-self: stretch;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: #fff !important;
}

/* COPY IP button */
.sllist .slcard__paste .copy-text {
	width: 100% !important;
	box-sizing: border-box !important;
	border-radius: 0 0 7px 7px !important;
	margin: 0 !important;
	padding: 0 10px !important;
	height: 40px !important;
	min-height: 40px !important;
	font-weight: 800 !important;
	font-size: 0.88rem !important;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	background: #4cae27 !important;
	color: #fff !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 6px;
	transition: filter 0.15s ease, background 0.15s ease;
	line-height: 1.2 !important;
	box-shadow: none !important;
}
.sllist .slcard__paste .copy-text:hover {
	filter: brightness(1.06);
}
.sllist .slcard__paste .copy-text .icon {
	font-size: 0.9em !important;
	margin: 0 !important;
	opacity: 0.95 !important;
}

/* Premium copy button — gold */
.sllist .slcard--premium .slcard__paste .copy-text {
	background: linear-gradient(135deg, #c18d50 0%, #d4a864 100%) !important;
	border: none !important;
}
.sllist .slcard--premium .slcard__paste .copy-text:hover {
	filter: brightness(1.07);
}

/* Sponsored copy button — blue */
.sllist .slcard--sponsored .slcard__paste .copy-text {
	background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%) !important;
	border: none !important;
}
.sllist .slcard--sponsored .slcard__paste .copy-text:hover {
	filter: brightness(1.07);
}

/* ── Sponsored overrides (wins over premium when both classes present) ── */
/* These must come AFTER premium rules so sponsored always takes precedence */
.sllist .slcard--sponsored .slcard__banner-placeholder {
	background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
	border-color: rgba(0,0,0,0.1);
	color: #dbeafe;
}
.sllist .slcard--sponsored .slcard__tag {
	background: #dbeafe;
	color: #1e3a5f;
}
.sllist .slcard--sponsored .slcard__tag--premium {
	background: linear-gradient(135deg, #3b82f6, #60a5fa);
	color: #fff;
	border: none;
}
.sllist .slcard--sponsored .slcard__name-link {
	color: #1e3a5f;
}
.sllist .slcard--sponsored .slcard__name-link:hover {
	color: #2563eb;
}
.sllist .slcard--sponsored .slcard__playing {
	color: #1e40af;
}
.sllist .slcard--sponsored .slcard__platform--java {
	background: #1e3a5f;
	color: #dbeafe;
}
.sllist .slcard--sponsored .slcard__platform--cross {
	background: #1e4080;
	color: #dbeafe;
}
.sllist .slcard--sponsored .slcard__platform--cracked {
	background: #bfdbfe;
	color: #1e3a5f;
}
.sllist .slcard--sponsored .slcard__platform--whitelist {
	background: #1e3a5f;
	color: #bfdbfe;
}
.sllist .slcard--sponsored .slcard__platform--version {
	background: #dbeafe;
	color: #1e3a5f;
	border-color: #93c5fd;
}
.sllist .slcard--sponsored .slcard__platform--version .icon {
	color: #2563eb;
}
.sllist .slcard--sponsored .slcard__detail {
	background: #dbeafe;
	color: #1e3a5f;
}
.sllist .slcard--sponsored .slcard__blurb {
	color: #1e40af;
}

/* ── Desktop layout (≥1024px) ───────────────────────────── */
@media only screen and (min-width: 1024px) {
	.sllist .slcard__sheet {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}
	.sllist .slcard__rail {
		display: flex;
		border-radius: 0;
		align-self: stretch;
	}
	.sllist .slcard__lead {
		flex: 0 0 440px;
		max-width: 440px;
		width: auto;
		padding: 0.85rem;
	}
	.sllist .slcard__lead--nobanner {
		flex: 0 1 340px;
		max-width: 100%;
		min-width: 0;
	}
	.sllist .slcard__lead .slcard__frame {
		margin: 0;
	}
	.sllist .slcard__core {
		flex: 1 1 180px;
		max-width: 100%;
		padding-left: 1rem;
		padding-right: 0.5rem;
	}
	.sllist .slcard__name--lead {
		text-align: left;
		font-size: 1.05rem;
	}
	.sllist .slcard__title-row {
		justify-content: flex-start;
	}
	.sllist .slcard__name-link {
		white-space: nowrap;
		max-width: 14rem;
	}
	.sllist .slcard__status-inner {
		justify-content: flex-start;
	}
	.sllist .slcard__platforms {
		justify-content: flex-start;
	}
	.sllist .slcard__tags {
		justify-content: flex-start;
	}
	.sllist .slcard__details {
		justify-content: flex-start;
	}
	.sllist .slcard__blurb {
		text-align: left;
	}
	.sllist .slcard__side {
		margin-left: auto;
		align-self: stretch;
		flex: 0 0 14rem;
		flex-shrink: 0;
		min-width: 12rem;
	}
	.sllist .slcard__side-inner {
		padding: 1.1rem 1rem;
	}
}

/* ── Tablet layout (768px–1023px) ───────────────────────── */
@media only screen and (max-width: 1023px) {
	.sllist .slcard__rail {
		display: flex;
		width: 100%;
		flex: 0 0 auto;
		border-right: 0;
		border-bottom: 1px solid #e0e2e6;
		min-height: 0;
		padding: 0.35rem 0.65rem;
		border-radius: 0;
	}
	.sllist .slcard--premium .slcard__rail {
		border-bottom-color: #f0d4a8;
	}
	.sllist .slcard--sponsored .slcard__rail {
		border-bottom-color: #bfdbfe;
	}
	.sllist .slcard__rail-stack {
		flex-direction: row;
		gap: 0.75rem;
		min-height: 0 !important;
	}
	.sllist .slcard__lead {
		padding-top: 0.75rem;
		padding-bottom: 0.5rem;
	}
	.sllist .slcard__side {
		flex: 0 0 auto !important;
		max-width: 100%;
		width: 100%;
		border-left: none;
		border-top: 1px solid #e0e2e6;
	}
	.sllist .slcard--premium .slcard__side {
		border-top-color: #f0d4a8;
	}
	.sllist .slcard--sponsored .slcard__side {
		border-top-color: #bfdbfe;
	}
	.sllist .slcard__paste.copy-action {
		flex: 0 0 auto !important;
	}
	.sllist .slcard__side-inner {
		padding: 0.75rem 0.85rem;
	}
}

/* ── Mobile layout (≤767px) ─────────────────────────────── */
@media only screen and (max-width: 767px) {
	.sllist {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}
	.sllist .slcard,
	.sllist .slcard__sheet {
		max-width: 100%;
		min-width: 0;
		box-sizing: border-box;
	}
}

/*
 * Ficha do servidor (#server / .sdp-wrap): pills de plataforma ficam fora de .sllist — sem estas
 * regras os <span class="slcard__platform"> colam-se (ex.: "CrossplayCracked").
 */
#server .server-sidebar-badges.server-sidebar-flags,
#server .server-sidebar-flags,
.sdp-edition-badges {
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	column-gap: 0;
	row-gap: 6px;
	margin: 0;
}
#server .server-sidebar-flags .slcard__platform,
.sdp-edition-badges .slcard__platform {
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 5px;
	background: #3d4557;
	color: #dde1ea;
}
#server .server-sidebar-flags .slcard__platform:not(:last-child),
.sdp-edition-badges .slcard__platform:not(:last-child) {
	margin-inline-end: 6px;
}
#server .server-sidebar-flags .slcard__platform--cross,
.sdp-edition-badges .slcard__platform--cross {
	background: #2d5080;
	color: #e0eeff;
}
#server .server-sidebar-flags .slcard__platform--cracked,
.sdp-edition-badges .slcard__platform--cracked {
	background: #e2e5ea;
	color: #374151;
}
#server .server-sidebar-flags .slcard__platform--whitelist,
.sdp-edition-badges .slcard__platform--whitelist {
	background: #1e4040;
	color: #cdeaea;
}
#server .server-sidebar-flags--premium .slcard__platform--java {
	background: #5a3608;
	color: #fde8c0;
}
#server .server-sidebar-flags--premium .slcard__platform--cross {
	background: #4a3008;
	color: #fce8c0;
}
#server .server-sidebar-flags--premium .slcard__platform--cracked {
	background: #e8d5b0;
	color: #4a2c08;
}
#server .server-sidebar-flags--premium .slcard__platform--whitelist {
	background: #1c3535;
	color: #c8e8e8;
}
