/* ==========================================================================
   Guias WOTLK — Blizzard AAA UI Layer
   ========================================================================== */

:root {
	--gw-gold: #9a7b3c;
	--gw-gold-soft: #b8954a;
	--gw-gold-highlight: #c4a35a;
	--gw-frost: #6eb8c9;
	--gw-frost-bright: #8ec9d8;
	--gw-frost-dim: rgba(110, 184, 201, 0.28);
	--gw-panel: linear-gradient(165deg, rgba(12, 22, 42, 0.94) 0%, rgba(8, 14, 30, 0.97) 100%);
	--gw-panel-border: rgba(154, 123, 60, 0.38);
	--gw-panel-inner: rgba(110, 184, 201, 0.12);
	--gw-font-epic: "Cinzel", "Marcellus SC", Georgia, "Times New Roman", serif;
	--gw-font-ui: "Rajdhani", "Inter", system-ui, sans-serif;
	--gw-font-label: "Rajdhani", "Inter", system-ui, sans-serif;
	--gw-btn-bg: rgba(8, 16, 34, 0.62);
	--gw-btn-bg-hover: rgba(14, 26, 48, 0.78);
	--gw-btn-border: rgba(110, 184, 201, 0.32);
	--gw-btn-border-hover: rgba(142, 201, 216, 0.55);
	--gw-btn-text: rgba(228, 240, 245, 0.94);
	--gw-btn-glow: rgba(110, 184, 201, 0.14);
	--gw-btn-radius: 5px;
}

body.landing-blizzard {
	font-family: var(--gw-font-ui);
	background: var(--gw-bg-dark);
}

/* Header — glass launcher
   ========================================================================== */

.landing-blizzard .site-header {
	background: linear-gradient(180deg, rgba(6, 14, 32, 0.88) 0%, rgba(6, 14, 32, 0.35) 70%, transparent 100%);
	backdrop-filter: blur(12px) saturate(1.1);
	border-bottom: none;
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(201, 162, 39, 0.12);
}

.landing-blizzard .site-logo,
.landing-blizzard .custom-logo-link {
	font-family: var(--gw-font-epic);
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #d4e8ed;
	text-shadow:
		0 2px 4px rgba(0, 0, 0, 0.85),
		0 0 20px rgba(110, 184, 201, 0.15);
}

.landing-blizzard .nav-menu a {
	position: relative;
	font-family: var(--gw-font-ui);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	padding: 0.35rem 0;
}

.landing-blizzard .nav-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gw-gold-soft), transparent);
	transform: scaleX(0);
	transition: transform 0.25s ease;
}

.landing-blizzard .nav-menu a:hover,
.landing-blizzard .nav-menu .current-menu-item > a {
	color: var(--gw-gold-highlight);
	text-shadow: none;
}

.landing-blizzard .nav-menu a:hover::after,
.landing-blizzard .nav-menu .current-menu-item > a::after {
	transform: scaleX(1);
}

.landing-blizzard .header-cta {
	font-family: var(--gw-font-ui);
	font-weight: 500;
	letter-spacing: 0.06em;
	color: var(--gw-btn-text);
	background: var(--gw-btn-bg);
	backdrop-filter: blur(10px) saturate(1.15);
	border: 1px solid var(--gw-btn-border);
	border-radius: var(--gw-btn-radius);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
	transition:
		color 0.28s ease,
		background 0.28s ease,
		border-color 0.28s ease,
		box-shadow 0.32s ease,
		transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-blizzard .header-cta:hover {
	color: #f4fafc;
	background: var(--gw-btn-bg-hover);
	border-color: var(--gw-btn-border-hover);
	box-shadow:
		0 6px 24px rgba(0, 0, 0, 0.32),
		0 0 20px var(--gw-btn-glow);
	transform: translateY(-1px);
}

/* WoW panels & buttons
   ========================================================================== */

.wow-panel {
	position: relative;
	padding: clamp(1.25rem, 3vw, 2rem);
	background:
		var(--gw-panel),
		repeating-linear-gradient(
			-12deg,
			transparent,
			transparent 3px,
			rgba(255, 255, 255, 0.012) 3px,
			rgba(255, 255, 255, 0.012) 4px
		);
	border: 1px solid var(--gw-panel-border);
	border-top-color: rgba(196, 163, 90, 0.45);
	box-shadow:
		0 16px 48px rgba(0, 0, 0, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.07),
		inset 0 0 0 1px var(--gw-panel-inner);
}

.wow-panel::before {
	content: "";
	position: absolute;
	top: 0;
	left: 10%;
	right: 10%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(196, 163, 90, 0.55), transparent);
	pointer-events: none;
}

.wow-panel--inline {
	display: inline-block;
	max-width: 100%;
}

.wow-panel__corners::before,
.wow-panel__corners::after,
.wow-card__corners::before,
.wow-card__corners::after {
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	border-color: var(--gw-gold-soft);
	border-style: solid;
	opacity: 0.75;
	pointer-events: none;
}

.wow-panel__corners::before,
.wow-card__corners::before {
	top: -1px;
	left: -1px;
	border-width: 2px 0 0 2px;
	border-color: var(--gw-gold-highlight);
}

.wow-panel__corners::after,
.wow-card__corners::after {
	bottom: -1px;
	right: -1px;
	border-width: 0 2px 2px 0;
	border-color: rgba(110, 184, 201, 0.55);
}

.rune-text {
	font-family: var(--gw-font-label);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gw-gold-soft);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.btn-blizzard {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-width: 10rem;
	padding: 0.62rem 1.4rem;
	font-family: var(--gw-font-ui);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gw-btn-text);
	background: var(--gw-btn-bg);
	backdrop-filter: blur(10px) saturate(1.12);
	border: 1px solid var(--gw-btn-border);
	border-radius: var(--gw-btn-radius);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.26);
	transition:
		color 0.28s ease,
		background 0.28s ease,
		border-color 0.28s ease,
		box-shadow 0.32s ease,
		transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-blizzard--primary {
	color: var(--gw-btn-text);
	background: rgba(10, 22, 42, 0.72);
	border-color: rgba(110, 184, 201, 0.38);
	box-shadow:
		0 4px 20px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.btn-blizzard:hover {
	color: #f4fafc;
	background: var(--gw-btn-bg-hover);
	border-color: var(--gw-btn-border-hover);
	box-shadow:
		0 6px 22px rgba(0, 0, 0, 0.34),
		0 0 22px var(--gw-btn-glow);
	transform: translateY(-1px);
}

.btn-blizzard:active {
	transform: translateY(0);
	transition-duration: 0.12s;
}

.btn-blizzard--primary:hover {
	filter: none;
}

.btn-blizzard:focus-visible,
.landing-blizzard .header-cta:focus-visible {
	outline: 2px solid rgba(110, 184, 201, 0.45);
	outline-offset: 2px;
}

.btn-blizzard__shine {
	display: none;
}

/* Hero — cinematic Northrend
   ========================================================================== */

.landing-blizzard .hero__background {
	background-image:
		linear-gradient(
			180deg,
			rgba(6, 14, 32, 0.95) 0%,
			rgba(6, 14, 32, 0.5) 9%,
			rgba(4, 12, 28, 0.2) 20%,
			rgba(6, 18, 40, 0.15) 40%,
			rgba(15, 28, 57, 0.65) 78%,
			var(--gw-guides-bg) 100%
		),
		linear-gradient(rgba(0, 20, 40, 0.3), rgba(0, 20, 40, 0.3)),
		url("../images/fondo.jpg");
	background-position: center top, center top, center top;
}

.landing-blizzard .hero__glow {
	display: block;
	left: 0;
	width: 42%;
	height: 70%;
	background:
		radial-gradient(ellipse at 30% 50%, rgba(110, 184, 201, 0.14) 0%, transparent 65%),
		radial-gradient(ellipse at 15% 80%, rgba(154, 123, 60, 0.06) 0%, transparent 50%);
	filter: blur(36px);
	opacity: 0.85;
}

.landing-blizzard .hero__fog {
	pointer-events: none;
	background:
		radial-gradient(ellipse at 18% 55%, rgba(110, 184, 201, 0.1) 0%, transparent 42%),
		radial-gradient(ellipse at 25% 85%, rgba(120, 160, 200, 0.08) 0%, transparent 50%),
		linear-gradient(180deg, transparent 45%, rgba(15, 28, 57, 0.35) 100%);
	animation: fog-drift 20s ease-in-out infinite alternate;
}

@keyframes fog-drift {
	from {
		opacity: 0.85;
		transform: scale(1);
	}
	to {
		opacity: 1;
		transform: scale(1.03);
	}
}

@media (max-width: 768px) {
	.landing-blizzard .hero__particles {
		display: none;
	}

	.landing-blizzard .hero__fog {
		animation: none;
	}
}

.landing-blizzard .hero__light-rays {
	pointer-events: none;
	background: linear-gradient(
		118deg,
		transparent 0%,
		transparent 40%,
		rgba(0, 242, 255, 0.04) 48%,
		rgba(200, 230, 255, 0.07) 52%,
		transparent 60%,
		transparent 100%
	);
	opacity: 0.7;
	animation: rays-shift 14s ease-in-out infinite alternate;
}

@keyframes rays-shift {
	from {
		transform: translateX(-2%) skewX(-3deg);
	}
	to {
		transform: translateX(2%) skewX(3deg);
	}
}

.landing-blizzard .hero__particles {
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	opacity: 0.85;
}

/* Hero monolith — piedra/hielo integrada al paisaje
   ========================================================================== */

.landing-blizzard .hero__content {
	align-items: stretch;
}

.landing-blizzard .hero__character-wrap {
	align-self: end;
}

.landing-blizzard .hero__copy.hero-monolith {
	position: relative;
	z-index: 3;
	width: min(100%, 30rem);
	max-width: 30rem;
	margin: 0;
	padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 3vw, 2.25rem) clamp(2.25rem, 4vw, 3rem) clamp(2rem, 3.5vw, 2.75rem);
	background: none;
	border: none;
	box-shadow: none;
	align-self: center;
}

.hero-monolith__glow {
	position: absolute;
	inset: -15% -25% -10% -15%;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 65% 60% at 20% 45%, rgba(110, 184, 201, 0.18) 0%, transparent 58%),
		radial-gradient(ellipse 50% 40% at 0% 70%, rgba(154, 123, 60, 0.1) 0%, transparent 50%);
	filter: blur(24px);
}

.hero-monolith__slab {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(
			100deg,
			rgba(6, 12, 26, 0.94) 0%,
			rgba(10, 18, 36, 0.88) 45%,
			rgba(12, 22, 42, 0.55) 72%,
			transparent 100%
		);
	-webkit-mask-image: linear-gradient(95deg, #000 0%, #000 78%, transparent 100%);
	mask-image: linear-gradient(95deg, #000 0%, #000 78%, transparent 100%);
	box-shadow:
		inset 4px 0 0 rgba(196, 163, 90, 0.55),
		inset 8px 0 24px rgba(196, 163, 90, 0.08),
		inset 0 -24px 40px rgba(0, 0, 0, 0.45);
}

.hero-monolith__texture {
	position: absolute;
	inset: 0;
	opacity: 0.45;
	background:
		url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E"),
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 3px,
			rgba(255, 255, 255, 0.012) 3px,
			rgba(255, 255, 255, 0.012) 4px
		);
	mix-blend-mode: overlay;
	-webkit-mask-image: inherit;
	mask-image: inherit;
}

.hero-monolith__runes {
	position: absolute;
	inset: 0;
	opacity: 0.22;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='200' viewBox='0 0 80 200'%3E%3Ctext x='4' y='40' fill='%236eb8c9' fill-opacity='0.15' font-size='12' font-family='serif'%3Eᚠ%3C/text%3E%3Ctext x='4' y='90' fill='%23c4a35a' fill-opacity='0.1' font-size='12' font-family='serif'%3Eᚢ%3C/text%3E%3Ctext x='4' y='140' fill='%236eb8c9' fill-opacity='0.12' font-size='12' font-family='serif'%3Eᚦ%3C/text%3E%3C/svg%3E");
	background-repeat: repeat-y;
	-webkit-mask-image: inherit;
	mask-image: inherit;
}

.hero-monolith__ice-edge {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 5px;
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(142, 201, 216, 0.65) 15%,
		rgba(196, 163, 90, 0.5) 50%,
		rgba(142, 201, 216, 0.55) 85%,
		transparent 100%
	);
	box-shadow: 0 0 16px rgba(110, 184, 201, 0.35);
}

.hero-monolith__spine {
	position: absolute;
	left: 0.65rem;
	top: 12%;
	bottom: 18%;
	width: 2px;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		transparent,
		rgba(196, 163, 90, 0.4) 20%,
		rgba(110, 184, 201, 0.35) 50%,
		rgba(196, 163, 90, 0.35) 80%,
		transparent
	);
	opacity: 0.7;
}

.hero-monolith__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
}

.hero-monolith__sigil {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.75rem;
	margin-bottom: 1.1rem;
	color: var(--gw-gold-highlight);
}

.hero-monolith__sigil-wing {
	flex: 1;
	max-width: 4.5rem;
	height: 1px;
	background: linear-gradient(90deg, rgba(196, 163, 90, 0.7), rgba(110, 184, 201, 0.35));
	box-shadow: 0 0 6px rgba(110, 184, 201, 0.2);
}

.hero-monolith__sigil-wing:last-child {
	background: linear-gradient(270deg, rgba(196, 163, 90, 0.5), transparent);
	max-width: 2.5rem;
	opacity: 0.6;
}

.hero-monolith__sigil-icon {
	width: 1.5rem;
	height: 1.5rem;
	flex-shrink: 0;
	color: var(--gw-frost-bright);
	filter: drop-shadow(0 0 8px rgba(110, 184, 201, 0.5));
}

.hero-monolith__eyebrow {
	margin: 0 0 0.75rem;
	padding-left: 0.1rem;
}

.hero-monolith__divider {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 1.25rem;
}

.hero-monolith__divider-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, rgba(196, 163, 90, 0.5), rgba(110, 184, 201, 0.25), transparent);
}

.hero-monolith__divider-rune {
	font-size: 0.7rem;
	line-height: 1;
	color: rgba(110, 184, 201, 0.45);
	opacity: 0.85;
}

.hero-monolith__ground {
	position: absolute;
	left: 0;
	right: 20%;
	bottom: -1.25rem;
	height: 2.5rem;
	z-index: 0;
	pointer-events: none;
	background: radial-gradient(ellipse 70% 100% at 25% 0%, rgba(0, 0, 0, 0.55) 0%, transparent 70%);
	filter: blur(8px);
}

.landing-blizzard .hero__copy.hero-monolith .hero__title {
	margin: 0 0 0.85rem;
}

.landing-blizzard .btn-blizzard--hero {
	min-width: 11.5rem;
	padding: 0.72rem 1.65rem;
	font-size: 0.82rem;
}

.landing-blizzard .hero__tagline {
	font-family: var(--gw-font-label);
	font-size: clamp(0.72rem, 1.1vw, 0.84rem);
	font-weight: 600;
	letter-spacing: 0.1em;
	color: var(--gw-gold-soft);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.landing-blizzard .hero__title {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	margin: 0 0 1.25rem;
}

.landing-blizzard .hero__title-main {
	font-family: var(--gw-font-epic);
	font-size: clamp(2.75rem, 8vw, 4.75rem);
	font-weight: 800;
	line-height: 0.9;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	background: linear-gradient(180deg, #f0f6f8 0%, #c8dce4 38%, #8eb4c4 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 24px rgba(110, 184, 201, 0.15));
}

.landing-blizzard .hero__title-version {
	font-family: var(--gw-font-epic);
	font-size: clamp(0.95rem, 2vw, 1.35rem);
	font-weight: 600;
	letter-spacing: 0.12em;
	color: var(--gw-frost-bright);
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
}

.landing-blizzard .hero__copy.hero-monolith .hero__description {
	margin: 0 0 1.85rem;
	font-family: var(--gw-font-ui);
	font-size: clamp(1rem, 1.6vw, 1.1rem);
	font-weight: 500;
	line-height: 1.65;
	letter-spacing: 0.02em;
	color: rgba(210, 228, 235, 0.82);
	max-width: 36ch;
}

.landing-blizzard .hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

/* Character — original asset, cinematic integration only */
.landing-blizzard .hero__character-stage {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

.landing-blizzard .hero__character {
	position: relative;
	z-index: 2;
	filter:
		brightness(1.04)
		contrast(1.05)
		drop-shadow(0 24px 50px rgba(0, 0, 0, 0.6));
}

.landing-blizzard .hero__character-ground {
	position: absolute;
	bottom: 0;
	right: 15%;
	width: 55%;
	height: 12%;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, transparent 72%);
	filter: blur(12px);
	z-index: 1;
}

/* Content hub
   ========================================================================== */

.content-hub {
	position: relative;
	padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 4vw, 3rem);
	background: var(--gw-guides-bg);
}

.content-hub::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gw-gold-soft), transparent);
	opacity: 0.5;
}

.content-hub__inner {
	max-width: 1440px;
	margin: 0 auto;
}

.content-hub__header {
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.content-hub__title {
	margin: 0.5rem 0 0.75rem;
	font-family: var(--gw-font-epic);
	font-size: clamp(1.85rem, 4.5vw, 3rem);
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #dce8ec;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.content-hub__subtitle {
	margin: 0;
	font-family: var(--gw-font-ui);
	font-size: 1.05rem;
	font-weight: 500;
	color: rgba(210, 228, 235, 0.78);
}

.content-hub__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
}

/* WoW cards (hub + guides)
   ========================================================================== */

.wow-card {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
	.wow-card {
		opacity: 0;
		transform: translateY(28px);
		transition:
			opacity 0.6s ease,
			transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	}

	.wow-card.is-visible {
		opacity: 1;
		transform: translateY(0);
	}
}

.wow-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.wow-card__frame {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(165deg, rgba(14, 26, 48, 0.96) 0%, rgba(8, 14, 30, 0.98) 100%),
		repeating-linear-gradient(
			-12deg,
			transparent,
			transparent 3px,
			rgba(255, 255, 255, 0.01) 3px,
			rgba(255, 255, 255, 0.01) 4px
		);
	border: 1px solid rgba(154, 123, 60, 0.32);
	border-top-color: rgba(196, 163, 90, 0.4);
	box-shadow:
		0 12px 36px rgba(0, 0, 0, 0.42),
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		inset 0 0 0 1px rgba(110, 184, 201, 0.08);
	transition:
		border-color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.wow-card:hover .wow-card__frame {
	border-color: rgba(196, 163, 90, 0.55);
	box-shadow:
		0 18px 44px rgba(0, 0, 0, 0.5),
		0 0 24px rgba(110, 184, 201, 0.15),
		inset 0 0 0 1px rgba(110, 184, 201, 0.14);
	transform: translateY(-4px);
}

.wow-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.wow-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.wow-card:hover .wow-card__media img {
	transform: scale(1.06);
}

.wow-card__media-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(8, 16, 36, 0.92) 100%);
}

.wow-card__body {
	padding: 1.25rem 1.35rem 1.5rem;
}

.wow-card__index {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
}

.wow-card__title {
	margin: 0 0 0.65rem;
	font-family: var(--gw-font-epic);
	font-size: 1.08rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #d8e8ec;
}

.wow-card__desc {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--gw-text-muted);
}

.wow-card__cta {
	font-family: var(--gw-font-ui);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gw-gold-highlight);
	transition: color 0.2s ease;
}

.wow-card:hover .wow-card__cta {
	color: var(--gw-frost-bright);
}

/* Guides section — Blizzard panels
   ========================================================================== */

.landing-blizzard .guides-featured {
	background: var(--gw-guides-bg);
}

.landing-blizzard .guides-featured::after {
	background:
		radial-gradient(ellipse at 50% 0%, rgba(110, 184, 201, 0.06) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 100%, rgba(154, 123, 60, 0.05) 0%, transparent 40%);
}

.landing-blizzard .guides-featured__eyebrow {
	color: var(--gw-gold-soft);
}

.landing-blizzard .guides-featured__title {
	font-family: var(--gw-font-epic);
	font-size: clamp(1.85rem, 4.5vw, 3rem);
	font-weight: 700;
	color: #dce8ec;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.landing-blizzard .guides-featured__grid {
	gap: clamp(1.25rem, 2.5vw, 2rem);
}

.landing-blizzard .guides-featured__grid .wow-card:nth-child(2).is-visible {
	transition-delay: 0.1s;
}

/* Addons directory
   ========================================================================== */

.addons-directory__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(2rem, 4vw, 3.5rem) clamp(1rem, 4vw, 2rem) 4rem;
}

.addons-directory__header {
	display: block;
	width: 100%;
	margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
	text-align: center;
}

.addons-directory__eyebrow {
	margin: 0 0 0.65rem;
}

.addons-directory__title {
	margin: 0;
	font-family: var(--gw-font-epic);
	font-size: clamp(1.85rem, 4.5vw, 2.75rem);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #dce8ec;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.addons-directory__subtitle {
	margin: 0.75rem 0 0;
	font-family: var(--gw-font-ui);
	font-size: 1.05rem;
	color: rgba(210, 228, 235, 0.78);
}

.addons-directory__empty {
	padding: 2rem;
	text-align: center;
	font-family: var(--gw-font-ui);
	color: rgba(210, 228, 235, 0.75);
}

.addons-search {
	margin: 0;
	padding: 1.15rem 1.35rem 1.1rem;
	border-bottom: 1px solid rgba(110, 184, 201, 0.14);
	background: rgba(0, 0, 0, 0.1);
}

.addons-search__label {
	display: block;
	margin-bottom: 0.55rem;
	font-family: var(--gw-font-label);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gw-gold-soft);
}

.addons-search__field {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem;
}

.addons-search__input {
	flex: 1;
	min-width: min(100%, 14rem);
	padding: 0.62rem 1rem;
	font-family: var(--gw-font-ui);
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: var(--gw-btn-text);
	background: rgba(6, 12, 26, 0.55);
	backdrop-filter: blur(8px);
	border: 1px solid var(--gw-btn-border);
	border-radius: var(--gw-btn-radius);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	transition:
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease;
}

.addons-search__input::placeholder {
	color: rgba(210, 228, 235, 0.42);
}

.addons-search__input:hover {
	border-color: rgba(110, 184, 201, 0.42);
}

.addons-search__input:focus {
	outline: none;
	border-color: var(--gw-btn-border-hover);
	background: rgba(10, 18, 36, 0.72);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.05),
		0 0 18px var(--gw-btn-glow);
}

.addons-search__clear {
	padding: 0.5rem 0.85rem;
	font-family: var(--gw-font-ui);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(210, 228, 235, 0.75);
	background: transparent;
	border: 1px solid rgba(110, 184, 201, 0.22);
	border-radius: var(--gw-btn-radius);
	cursor: pointer;
	transition:
		color 0.2s ease,
		border-color 0.2s ease,
		background 0.2s ease;
}

.addons-search__clear:hover {
	color: #f4fafc;
	border-color: var(--gw-btn-border-hover);
	background: rgba(14, 26, 48, 0.45);
}

.addons-search__status {
	margin: 0.65rem 0 0;
	font-family: var(--gw-font-ui);
	font-size: 0.85rem;
	color: rgba(210, 228, 235, 0.65);
}

.addons-search__status:empty {
	display: none;
}

.interfaces-filters {
	padding: 0.85rem 1.35rem 1rem;
	border-bottom: 1px solid rgba(110, 184, 201, 0.14);
	background: rgba(6, 12, 24, 0.35);
}

.interfaces-filters__select-label {
	display: none;
	margin: 0 0 0.45rem;
	font-family: var(--gw-font-label);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(196, 168, 98, 0.85);
}

.interfaces-filters__select {
	display: none;
	width: 100%;
	margin: 0 0 0.65rem;
	padding: 0.55rem 0.85rem;
	font-family: var(--gw-font-ui);
	font-size: 0.9rem;
	color: #f4fafc;
	background: rgba(8, 16, 32, 0.72);
	border: 1px solid rgba(110, 184, 201, 0.35);
	border-radius: 2px;
}

.interfaces-filters__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.interfaces-filter {
	padding: 0.42rem 0.75rem;
	font-family: var(--gw-font-ui);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(210, 228, 235, 0.78);
	background: rgba(8, 16, 32, 0.55);
	border: 1px solid rgba(110, 184, 201, 0.22);
	border-radius: 2px;
	cursor: pointer;
	transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.interfaces-filter:hover {
	color: #f4fafc;
	border-color: rgba(110, 184, 201, 0.45);
	background: rgba(14, 26, 48, 0.55);
}

.interfaces-filter.is-active {
	color: #f4fafc;
	border-color: var(--gw-btn-border-hover);
	background: rgba(20, 38, 68, 0.65);
	box-shadow: 0 0 12px rgba(110, 184, 201, 0.12);
}

.addons-row__class {
	margin: 0 0 0.25rem;
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(196, 168, 98, 0.85);
}

@media (max-width: 768px) {
	.interfaces-filters__select-label,
	.interfaces-filters__select {
		display: block;
	}

	.interfaces-filters__buttons {
		display: none;
	}
}

.directory-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem 1.25rem;
	padding: 0.85rem 1.35rem 1rem;
	border-bottom: 1px solid rgba(110, 184, 201, 0.14);
	background: rgba(6, 12, 24, 0.35);
}

.directory-filters {
	flex: 1 1 16rem;
	min-width: 0;
}

.directory-filters__select-label,
.directory-sort__label {
	display: none;
	margin: 0 0 0.45rem;
	font-family: var(--gw-font-label);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(196, 168, 98, 0.85);
}

.directory-filters__select,
.directory-sort__select {
	display: none;
	width: 100%;
	min-width: 10rem;
	margin: 0;
	padding: 0.55rem 0.85rem;
	font-family: var(--gw-font-ui);
	font-size: 0.9rem;
	color: #f4fafc;
	background: rgba(8, 16, 32, 0.72);
	border: 1px solid rgba(110, 184, 201, 0.35);
	border-radius: 2px;
}

.directory-filters__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.directory-filter {
	padding: 0.42rem 0.75rem;
	font-family: var(--gw-font-ui);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(210, 228, 235, 0.78);
	background: rgba(8, 16, 32, 0.55);
	border: 1px solid rgba(110, 184, 201, 0.22);
	border-radius: 2px;
	cursor: pointer;
	transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.directory-filter:hover {
	color: #f4fafc;
	border-color: rgba(110, 184, 201, 0.45);
	background: rgba(14, 26, 48, 0.55);
}

.directory-filter.is-active {
	color: #f4fafc;
	border-color: var(--gw-btn-border-hover);
	background: rgba(20, 38, 68, 0.65);
	box-shadow: 0 0 12px rgba(110, 184, 201, 0.12);
}

.directory-sort {
	flex: 0 0 auto;
	min-width: 11rem;
}

@media (max-width: 768px) {
	.directory-toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.directory-filters__select-label,
	.directory-filters__select,
	.directory-sort__label,
	.directory-sort__select {
		display: block;
	}

	.directory-filters__buttons {
		display: none;
	}

	.directory-sort {
		width: 100%;
	}
}

.gw-cookie-banner {
	position: fixed;
	inset: auto 0 0;
	z-index: 10050;
	padding: 0 1rem 1rem;
	pointer-events: none;
}

.gw-cookie-banner__panel {
	max-width: 42rem;
	margin: 0 auto;
	pointer-events: auto;
}

.gw-cookie-banner__content {
	padding: 1.1rem 1.25rem 1.2rem;
}

.gw-cookie-banner__title {
	margin: 0 0 0.45rem;
	font-family: var(--gw-font-label);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(196, 168, 98, 0.95);
}

.gw-cookie-banner__text {
	margin: 0 0 0.65rem;
	font-family: var(--gw-font-ui);
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(220, 235, 242, 0.88);
}

.gw-cookie-banner__link {
	margin: 0 0 0.85rem;
	font-size: 0.85rem;
}

.gw-cookie-banner__link a {
	color: var(--gw-link, #8ecae6);
}

.gw-cookie-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

@media (max-width: 480px) {
	.gw-cookie-banner__actions .btn-blizzard {
		flex: 1 1 100%;
		justify-content: center;
	}
}

.addons-table__no-results {
	margin: 0;
	padding: 2rem 1.25rem;
	text-align: center;
	font-family: var(--gw-font-ui);
	font-size: 0.95rem;
	color: rgba(210, 228, 235, 0.72);
}

.addons-row[hidden] {
	display: none;
}

.addons-table {
	position: relative;
	padding: 0;
	overflow: hidden;
}

.addons-table.wow-panel {
	padding: 0;
}

.addons-table__body {
	display: flex;
	flex-direction: column;
}

.addons-row {
	display: grid;
	grid-template-columns: 130px 1fr 140px;
	gap: 1rem;
	align-items: center;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid rgba(110, 184, 201, 0.1);
	background: linear-gradient(180deg, rgba(14, 26, 48, 0.65) 0%, rgba(10, 18, 34, 0.75) 100%);
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

.addons-row:nth-child(even) {
	background: linear-gradient(180deg, rgba(10, 18, 34, 0.8) 0%, rgba(8, 14, 28, 0.85) 100%);
}

.addons-row:hover {
	background: linear-gradient(180deg, rgba(22, 38, 62, 0.85) 0%, rgba(14, 26, 48, 0.9) 100%);
	box-shadow: inset 0 0 24px rgba(110, 184, 201, 0.06);
}

.addons-row__image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.addons-row__image img {
	width: 120px;
	height: 90px;
	object-fit: cover;
	border: 1px solid rgba(154, 123, 60, 0.4);
	box-shadow:
		0 4px 14px rgba(0, 0, 0, 0.45),
		inset 0 0 0 1px rgba(110, 184, 201, 0.12);
	background: #060d1c;
}

.directory-thumb-frame {
	display: block;
	width: 120px;
	height: 90px;
	overflow: hidden;
	position: relative;
	border: 1px solid rgba(154, 123, 60, 0.4);
	box-shadow:
		0 4px 14px rgba(0, 0, 0, 0.45),
		inset 0 0 0 1px rgba(110, 184, 201, 0.12);
	background: #060d1c;
}

.directory-thumb-frame img {
	position: absolute;
	width: var(--thumb-img-width, 120px);
	height: var(--thumb-img-height, 90px);
	left: var(--thumb-img-left, 0);
	top: var(--thumb-img-top, 0);
	max-width: none;
	border: 0;
	box-shadow: none;
	object-fit: unset;
}

.directory-thumb-frame--default img {
	position: static;
	width: 120px;
	height: 90px;
	max-width: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

.addons-row__name {
	margin: 0 0 0.45rem;
	font-family: var(--gw-font-epic);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.03em;
}

.addons-row__name a {
	color: var(--gw-frost-bright);
	text-decoration: none;
	text-shadow: 0 0 12px rgba(110, 184, 201, 0.25);
	transition: color 0.2s ease;
}

.addons-row__name-btn {
	display: inline;
	padding: 0;
	font: inherit;
	color: var(--gw-frost-bright);
	text-align: inherit;
	text-decoration: none;
	text-shadow: 0 0 12px rgba(110, 184, 201, 0.25);
	background: none;
	border: 0;
	cursor: pointer;
	transition: color 0.2s ease;
}

.addons-row__name a:hover {
	color: var(--gw-gold-highlight);
	text-shadow: none;
}

.addons-row__name-btn:hover {
	color: var(--gw-gold-highlight);
	text-shadow: none;
}

.addons-row__text {
	font-family: var(--gw-font-ui);
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.55;
	color: rgba(210, 228, 235, 0.82);
}

.addons-row__text p {
	margin: 0 0 0.5rem;
}

.addons-row__text p:last-child {
	margin-bottom: 0;
}

.addons-row__download {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.addons-row__dl-btn {
	min-width: auto;
	padding: 0.5rem 0.95rem;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.addons-row__dl-missing {
	color: rgba(210, 228, 235, 0.35);
}

/* Interfaces directory — stacked actions + preview modal
   ========================================================================== */

.interfaces-directory .addons-row {
	grid-template-columns: 130px 1fr 160px;
}

.addons-directory .addons-row__image-btn,
.interfaces-directory .addons-row__image-btn {
	display: block;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	line-height: 0;
}

.addons-directory .addons-row__image-btn img,
.interfaces-directory .addons-row__image-btn img {
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.addons-directory .addons-row__image-btn:hover img,
.addons-directory .addons-row__image-btn:focus-visible img,
.interfaces-directory .addons-row__image-btn:hover img,
.interfaces-directory .addons-row__image-btn:focus-visible img {
	border-color: rgba(196, 163, 90, 0.75);
	box-shadow:
		0 6px 18px rgba(0, 0, 0, 0.5),
		0 0 16px rgba(110, 184, 201, 0.18);
	transform: scale(1.02);
}

.addons-directory .addons-row__image-btn:focus-visible,
.interfaces-directory .addons-row__image-btn:focus-visible {
	outline: 2px solid var(--gw-accent, #6eb8c9);
	outline-offset: 3px;
}

.interfaces-directory .addons-row__actions {
	flex-direction: column;
	align-items: stretch;
	gap: 0.5rem;
}

.interfaces-directory .addons-row__actions .addons-row__dl-btn {
	width: 100%;
	text-align: center;
}

.interface-copy-btn.is-copied {
	border-color: rgba(110, 201, 140, 0.65);
	color: #b8f0c8;
}

body.is-interface-modal-open {
	overflow: hidden;
}

.interface-preview-modal {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: grid;
	place-items: center;
	padding: 1.25rem;
}

.interface-preview-modal[hidden] {
	display: none;
}

.interface-preview-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(4, 8, 18, 0.82);
	backdrop-filter: blur(4px);
}

.interface-preview-modal__panel {
	position: relative;
	display: flex;
	flex-direction: column;
	width: min(960px, 100%);
	max-height: min(90vh, 900px);
	padding: 1.25rem 1.25rem 1.5rem;
	overflow: hidden;
}

.interface-preview-modal__close {
	position: absolute;
	top: 0.65rem;
	right: 0.75rem;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	padding: 0;
	font-size: 1.5rem;
	line-height: 1;
	color: rgba(210, 228, 235, 0.75);
	background: transparent;
	border: 0;
	cursor: pointer;
}

.interface-preview-modal__close:hover {
	color: var(--gw-gold-highlight);
}

.interface-preview-modal__title {
	flex-shrink: 0;
	margin: 0 2rem 1rem 0;
	font-family: var(--gw-font-epic);
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--gw-frost-bright);
}

.interface-preview-modal__image-wrap {
	display: flex;
	flex: 1 1 auto;
	min-height: 0;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.interface-preview-modal__image {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	border: 1px solid rgba(154, 123, 60, 0.45);
	box-shadow:
		0 8px 28px rgba(0, 0, 0, 0.55),
		inset 0 0 0 1px rgba(110, 184, 201, 0.12);
	background: #060d1c;
}

@media (max-width: 768px) {
	.addons-row {
		grid-template-columns: 96px 1fr;
		grid-template-areas:
			"image desc"
			"download download";
		gap: 0.75rem 1rem;
	}

	.addons-row__image {
		grid-area: image;
	}

	.addons-row__image img {
		width: 96px;
		height: 72px;
	}

	.addons-row__desc {
		grid-area: desc;
	}

	.addons-row__download {
		grid-area: download;
		justify-content: flex-start;
		padding-left: calc(96px + 1rem);
	}

	.interfaces-directory .addons-row__actions {
		padding-left: 0;
	}
}

/* Interior pages (posts, static pages)
   ========================================================================== */

.landing-blizzard:not(.is-landing-page) .nav-menu a:hover,
.landing-blizzard:not(.is-landing-page) .nav-menu .current-menu-item > a {
	color: var(--gw-gold-highlight);
}

.landing-blizzard .post-entry.page-panel {
	padding: clamp(1.75rem, 4vw, 2.75rem);
}

.landing-blizzard .post-entry__header {
	margin-bottom: 0;
}

.landing-blizzard .entry-content p {
	margin: 0 0 1.15rem;
}

.landing-blizzard .entry-content ul,
.landing-blizzard .entry-content ol {
	margin: 0 0 1.25rem;
	padding-left: 1.35rem;
}

.landing-blizzard .entry-content li {
	margin-bottom: 0.45rem;
}

.landing-blizzard .entry-content blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-left: 3px solid rgba(196, 163, 90, 0.55);
	background: rgba(0, 0, 0, 0.2);
	color: rgba(210, 228, 235, 0.8);
}

.landing-blizzard .entry-content code {
	font-size: 0.92em;
	padding: 0.15em 0.4em;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(110, 184, 201, 0.2);
	color: var(--gw-frost-bright);
}

/* Footer
   ========================================================================== */

.landing-blizzard .site-footer {
	background: linear-gradient(180deg, var(--gw-guides-bg) 0%, #060d1c 100%);
	border-top: 1px solid rgba(154, 123, 60, 0.28);
	font-family: var(--gw-font-ui);
}

.landing-blizzard .site-footer__rune {
	margin: 0 0 0.75rem;
	font-size: 0.65rem;
	opacity: 0.6;
}

.landing-blizzard .site-footer__copy {
	margin: 0;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.72rem;
}

.landing-blizzard .footer-menu a {
	font-family: var(--gw-font-ui);
}

.landing-blizzard .footer-menu a:hover,
.landing-blizzard .footer-menu .current-menu-item > a {
	color: var(--gw-gold-highlight);
}

/* Responsive
   ========================================================================== */

@media (max-width: 1100px) {
	.content-hub__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 960px) {
	.landing-blizzard .hero__content {
		grid-template-columns: 1fr;
	}

	.landing-blizzard .hero__copy.hero-monolith {
		width: 100%;
		max-width: none;
		margin: 0;
		align-self: center;
		padding-left: clamp(1.25rem, 4vw, 2rem);
	}

	.landing-blizzard .hero__character-wrap {
		justify-content: center;
	}

	.landing-blizzard .hero__character-stage {
		justify-content: center;
	}

	.landing-blizzard .hero__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 600px) {
	.content-hub__grid {
		grid-template-columns: 1fr;
	}

	.landing-blizzard .hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.landing-blizzard .btn-blizzard {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-monolith__runes {
		animation: none;
	}

	.landing-blizzard .hero__fog,
	.landing-blizzard .hero__light-rays,

	.wow-card {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.customize-preview .wow-card {
		opacity: 1;
		transform: none;
	}
}

.customize-preview .wow-card {
	opacity: 1;
	transform: none;
}
