/* ============================================================
   Minecraft page - additive styles only.
   Loaded alongside the main style.css, not replacing it.
   Matches the same dark chrome as the forum/community.
   ============================================================ */

.mc-section {
	margin-bottom: 30px;
}
.mc-section h2 {
	color: #e8eff4;
	font-size: 20px;
	font-style: italic;
	margin: 0 0 14px;
	padding-bottom: 8px;
	border-bottom: 1px solid #14344d;
}

/* ---- Download links ---- */
.mc-download-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mc-download-list li {
	background: #0b1a2c;
	border: 1px solid #14344d;
	border-radius: 4px;
	padding: 12px 16px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}
.mc-download-list .mc-label {
	color: #e8eff4;
	font-weight: bold;
	font-size: 14px;
}
.mc-download-list a.mc-link {
	color: #3a9fe0;
	font-size: 13px;
	text-decoration: none;
}
.mc-download-list a.mc-link:hover {
	color: #44b2f1;
	text-decoration: underline;
}

/* ---- Server cards ---- */
.mc-server-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 14px;
}
.mc-server-card {
	background: #0b1a2c;
	border: 1px solid #14344d;
	border-radius: 6px;
	padding: 18px;
}
.mc-server-name {
	color: #e8eff4;
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 4px;
}
.mc-server-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 2px 8px;
	border-radius: 2px;
	margin-bottom: 10px;
}
.mc-badge-java {
	background: #14344d;
	color: #7ab8e8;
	border: 1px solid #2a4159;
}
.mc-badge-bedrock {
	background: #1a2a1a;
	color: #7DDE7D;
	border: 1px solid #2a4a2a;
}
.mc-server-ip-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}
.mc-server-ip {
	flex: 1;
	background: #060c19;
	border: 1px solid #2a4159;
	border-radius: 3px;
	padding: 8px 10px;
	color: #e8eff4;
	font-family: "Courier New", monospace;
	font-size: 13px;
	overflow-x: auto;
	white-space: nowrap;
}
.mc-copy-btn {
	background: #14344d;
	border: 1px solid #2a4159;
	color: #e8eff4;
	padding: 8px 12px;
	font-size: 11px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 3px;
	cursor: pointer;
	flex-shrink: 0;
}
.mc-copy-btn:hover {
	background: #1a4160;
	border-color: #44b2f1;
}
.mc-copy-btn.mc-copied {
	background: #1a3a1a;
	border-color: #2a5a2a;
	color: #7DDE7D;
}
.mc-server-desc {
	color: #a9bdc9;
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
}

/* ---- Rules ---- */
.mc-rules-list {
	background: #0b1a2c;
	border: 1px solid #14344d;
	border-radius: 6px;
	padding: 20px 20px 20px 40px;
	margin: 0;
	color: #a9bdc9;
	font-size: 14px;
	line-height: 1.9;
}
.mc-rules-list li { padding-left: 6px; }
.mc-rules-list li strong { color: #e8eff4; }