/* /themes/eldenro/css/elden-server-info.css */

.elden-server-info {
	color: #d8c7a3;
}

.elden-server-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 38px 42px;
	margin-bottom: 28px;
	border: 1px solid rgba(199, 154, 73, .35);
	border-radius: 12px;
	background:
		linear-gradient(90deg, rgba(8,7,5,.98), rgba(19,14,9,.86)),
		radial-gradient(circle at right, rgba(199,154,73,.22), transparent 42%);
	box-shadow:
		inset 0 0 70px rgba(0,0,0,.7),
		0 24px 65px rgba(0,0,0,.38);
	overflow: hidden;
}

.elden-server-kicker {
	display: block;
	margin-bottom: 8px;
	color: #c79a49;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.elden-server-hero h2 {
	margin: 0;
	color: #f1d28a;
	font-size: 34px;
	font-weight: 700;
	text-shadow: 0 0 18px rgba(199,154,73,.25);
}

.elden-server-hero p {
	max-width: 680px;
	margin: 10px 0 0;
	color: #b9aa8d;
	font-size: 14px;
	line-height: 1.6;
}

.elden-server-seal {
	width: 96px;
	height: 96px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(199,154,73,.32);
	border-radius: 50%;
	color: #e4bd68;
	font-size: 42px;
	background: radial-gradient(circle, rgba(199,154,73,.18), rgba(0,0,0,.35));
	box-shadow: inset 0 0 30px rgba(0,0,0,.65), 0 0 36px rgba(199,154,73,.16);
}

.elden-info-section {
	margin-bottom: 30px;
}

.elden-section-heading {
	margin-bottom: 16px;
}

.elden-section-heading h3 {
	margin: 0;
	color: #f0d28d;
	font-size: 22px;
	font-weight: 700;
}

.elden-section-heading p {
	margin: 6px 0 0;
	color: #9f927d;
	font-size: 13px;
}

.elden-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.elden-stat-card,
.elden-class-card {
	position: relative;
	padding: 20px;
	border: 1px solid rgba(199,154,73,.25);
	border-radius: 10px;
	background:
		linear-gradient(180deg, rgba(24,18,12,.92), rgba(10,8,6,.94));
	box-shadow:
		inset 0 0 35px rgba(0,0,0,.48),
		0 14px 34px rgba(0,0,0,.24);
	overflow: hidden;
}

.elden-stat-card:before,
.elden-class-card:before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(199,154,73,.14), transparent 38%);
	pointer-events: none;
}

.elden-stat-card span,
.elden-class-card span {
	position: relative;
	display: block;
	color: #a89a82;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.elden-stat-card strong,
.elden-class-card strong {
	position: relative;
	display: block;
	margin-top: 10px;
	color: #f1d28a;
	font-size: 30px;
	line-height: 1;
}

.elden-stat-wide {
	grid-column: span 4;
}

.elden-stat-wide strong {
	font-size: 34px;
}

.elden-classes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 12px;
}

.elden-class-card {
	padding: 16px 18px;
}

.elden-class-card strong {
	font-size: 24px;
}

.elden-class-card:hover,
.elden-stat-card:hover {
	border-color: rgba(199,154,73,.45);
	transform: translateY(-1px);
	transition: .2s ease;
}

@media (max-width: 900px) {
	.elden-stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.elden-stat-wide {
		grid-column: span 2;
	}
}

@media (max-width: 600px) {
	.elden-server-hero {
		padding: 28px 24px;
	}

	.elden-server-seal {
		display: none;
	}

	.elden-stats-grid {
		grid-template-columns: 1fr;
	}

	.elden-stat-wide {
		grid-column: span 1;
	}
}