/* /themes/eldenro/css/elden-woe.css */

.elden-woe-page {
	color: #d8c7a3;
}

.elden-woe-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 40px 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(26,14,10,.90)),
		radial-gradient(circle at right, rgba(180,45,28,.24), transparent 42%);
	box-shadow:
		inset 0 0 70px rgba(0,0,0,.72),
		0 24px 65px rgba(0,0,0,.38);
	overflow: hidden;
}

.elden-woe-kicker {
	display: block;
	margin-bottom: 8px;
	color: #c79a49;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.elden-woe-hero h2 {
	margin: 0;
	color: #f1d28a;
	font-size: 36px;
	font-weight: 700;
	text-shadow: 0 0 18px rgba(199,154,73,.25);
}

.elden-woe-hero p {
	max-width: 720px;
	margin: 10px 0 0;
	color: #b9aa8d;
	font-size: 14px;
	line-height: 1.6;
}

.elden-woe-emblem {
	width: 96px;
	height: 96px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(199,154,73,.35);
	background:
		radial-gradient(circle, rgba(199,154,73,.18), rgba(0,0,0,.42));
	color: #f1d28a;
	font-size: 40px;
	box-shadow:
		inset 0 0 28px rgba(0,0,0,.7),
		0 0 34px rgba(199,154,73,.16);
}

.elden-server-time {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid rgba(199,154,73,.24);
	background: rgba(0,0,0,.34);
	color: #bba884;
	font-size: 13px;
}

.elden-server-time strong {
	color: #f0d28d;
}

.elden-woe-section {
	margin-bottom: 34px;
}

.elden-woe-heading {
	margin-bottom: 16px;
}

.elden-woe-heading h3 {
	margin: 0;
	color: #f0d28d;
	font-size: 24px;
	font-weight: 700;
}

.elden-woe-heading p {
	margin: 6px 0 0;
	color: #988a74;
	font-size: 13px;
}

.elden-woe-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 18px;
}

.elden-woe-card {
	position: relative;
	padding: 22px;
	border: 1px solid rgba(199,154,73,.24);
	border-radius: 12px;
	background:
		linear-gradient(180deg, rgba(22,16,11,.94), rgba(10,8,6,.96));
	box-shadow:
		inset 0 0 38px rgba(0,0,0,.54),
		0 16px 38px rgba(0,0,0,.28);
	overflow: hidden;
	transition:
		transform .2s ease,
		border-color .2s ease;
}

.elden-woe-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-woe-card:hover {
	transform: translateY(-2px);
	border-color: rgba(199,154,73,.45);
}

.elden-woe-card-top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}

.elden-woe-status {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ff7862;
	box-shadow: 0 0 14px rgba(255,120,98,.7);
}

.elden-woe-label {
	color: #d8c7a3;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.elden-woe-time-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.elden-woe-time {
	flex: 1;
	padding: 16px;
	border-radius: 10px;
	border: 1px solid rgba(199,154,73,.18);
	background: rgba(0,0,0,.28);
	text-align: center;
}

.woe-time-label {
	display: block;
	margin-bottom: 8px;
	color: #97866c;
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.elden-woe-time strong {
	display: block;
	color: #f0d28d;
	font-size: 18px;
	font-weight: 700;
}

.elden-woe-time small {
	display: block;
	margin-top: 6px;
	color: #c9b898;
	font-size: 13px;
}

.elden-woe-separator {
	color: #c79a49;
	font-size: 24px;
	font-weight: 700;
}

.elden-woe-empty {
	padding: 50px 30px;
	text-align: center;
	border: 1px solid rgba(199,154,73,.24);
	border-radius: 12px;
	background:
		linear-gradient(180deg, rgba(18,14,10,.94), rgba(8,7,6,.96));
	box-shadow:
		inset 0 0 40px rgba(0,0,0,.65),
		0 20px 48px rgba(0,0,0,.32);
}

.elden-woe-empty-icon {
	margin-bottom: 16px;
	color: #c79a49;
	font-size: 44px;
	opacity: .8;
}

.elden-woe-empty h3 {
	margin: 0;
	color: #f0d28d;
	font-size: 24px;
}

.elden-woe-empty p {
	margin-top: 10px;
	color: #a89983;
	font-size: 14px;
}

@media (max-width: 700px) {

	.elden-woe-hero {
		padding: 30px 24px;
	}

	.elden-woe-emblem {
		display: none;
	}

	.elden-woe-grid {
		grid-template-columns: 1fr;
	}

	.elden-woe-time-block {
		flex-direction: column;
	}

	.elden-woe-separator {
		transform: rotate(90deg);
	}
}