/* /themes/eldenro/css/elden-server-status.css */

.elden-status-page {
	color: #d8c7a3;
}

.elden-status-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(15,19,12,.88)),
		radial-gradient(circle at right, rgba(81,170,95,.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-status-kicker {
	display: block;
	margin-bottom: 8px;
	color: #c79a49;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.elden-status-hero h2 {
	margin: 0;
	color: #f1d28a;
	font-size: 34px;
	font-weight: 700;
	text-shadow: 0 0 18px rgba(199,154,73,.25);
}

.elden-status-hero p {
	max-width: 680px;
	margin: 10px 0 0;
	color: #b9aa8d;
	font-size: 14px;
	line-height: 1.6;
}

.elden-status-orb {
	width: 88px;
	height: 88px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(92, 210, 113, .32);
	border-radius: 50%;
	color: #7dff95;
	font-size: 28px;
	background: radial-gradient(circle, rgba(73, 255, 103, .25), rgba(0,0,0,.42));
	box-shadow:
		inset 0 0 30px rgba(0,0,0,.65),
		0 0 36px rgba(72, 255, 96, .18);
}

.elden-status-section {
	margin-bottom: 30px;
}

.elden-status-heading {
	margin-bottom: 16px;
}

.elden-status-heading h3 {
	margin: 0;
	color: #f0d28d;
	font-size: 22px;
	font-weight: 700;
}

.elden-status-heading p {
	margin: 6px 0 0;
	color: #9f927d;
	font-size: 13px;
}

.elden-status-table-wrap {
	border: 1px solid rgba(199,154,73,.28);
	border-radius: 10px;
	overflow: hidden;
	background: rgba(8,7,6,.88);
	box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.elden-status-table {
	width: 100%;
	border-collapse: collapse;
}

.elden-status-table th {
	padding: 15px 14px;
	color: #f0d28d;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: linear-gradient(180deg, rgba(64,39,18,.95), rgba(26,18,12,.95));
	border-bottom: 1px solid rgba(199,154,73,.3);
	text-align: center;
}

.elden-status-table th:first-child,
.elden-status-table td:first-child {
	text-align: left;
}

.elden-status-table td {
	padding: 16px 14px;
	border-bottom: 1px solid rgba(255,255,255,.06);
	color: #d8c7a3;
	text-align: center;
}

.elden-status-table tbody tr:last-child td {
	border-bottom: none;
}

.elden-status-table tbody tr {
	transition: background .2s ease;
}

.elden-status-table tbody tr:hover {
	background: rgba(199,154,73,.08);
}

.elden-server-name {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #f1d28a;
}

.elden-server-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	display: inline-block;
}

.elden-server-dot.is-online {
	background: #6cff86;
	box-shadow: 0 0 14px rgba(108,255,134,.65);
}

.elden-server-dot.is-offline {
	background: #ff5c4f;
	box-shadow: 0 0 14px rgba(255,92,79,.55);
}

.elden-service-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 78px;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
}

.elden-service-pill.online {
	color: #a9ffb7;
	background: rgba(35, 122, 48, .24);
	border: 1px solid rgba(108,255,134,.28);
}

.elden-service-pill.offline {
	color: #ffb3aa;
	background: rgba(122, 34, 28, .28);
	border: 1px solid rgba(255,92,79,.28);
}

.elden-online-count {
	display: inline-block;
	min-width: 54px;
	padding: 6px 12px;
	border-radius: 999px;
	color: #f1d28a;
	background: rgba(199,154,73,.13);
	border: 1px solid rgba(199,154,73,.28);
	font-weight: 800;
}

.elden-peak-count {
	color: #d8c7a3;
	font-weight: 700;
}

.realm-warning {
	background: linear-gradient(90deg, rgba(120,32,24,.16), transparent);
}

@media (max-width: 760px) {
	.elden-status-hero {
		padding: 28px 24px;
	}

	.elden-status-orb {
		display: none;
	}

	.elden-status-table-wrap {
		overflow-x: auto;
	}

	.elden-status-table {
		min-width: 720px;
	}
}