:root {
	--black: #09090a;
	--surface: #111113;
	--surface-2: #171719;
	--surface-3: #1d1d20;
	--line: rgba(255, 255, 255, .09);
	--line-red: rgba(219, 31, 43, .35);
	--red: #d91f2b;
	--red-bright: #f03845;
	--red-dark: #76070d;
	--text: #e9e9eb;
	--muted: #8e8e95;
	--gold: #c7aa78;
	--font-display: "Cinzel", Georgia, serif;
	--font-body: "Inter", Arial, sans-serif;
	--shadow: 0 20px 60px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }

html {
	background: var(--black);
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 320px;
	overflow-x: hidden;
	overflow-x: clip;
	color: var(--text);
	background:
		radial-gradient(circle at 50% 30%, rgba(110, 9, 15, .11), transparent 42rem),
		#0a0a0b;
	font: 14px/1.6 var(--font-body);
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	opacity: .13;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
}

a { color: var(--red-bright); text-decoration: none; }
a:hover { color: #ff6a74; }
img, video, iframe, canvas, svg { max-width: 100%; }
button, input, select, textarea { font: inherit; }
fieldset { min-width: 0; }
pre { max-width: 100%; overflow-x: auto; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--red-bright);
	outline-offset: 3px;
}

.site-glow {
	position: fixed;
	inset: 0;
	z-index: -2;
	background: linear-gradient(90deg, transparent, rgba(126, 4, 12, .05), transparent);
	pointer-events: none;
}

.topbar {
	position: relative;
	z-index: 30;
	height: 72px;
	border-bottom: 1px solid var(--line);
	background: rgba(7, 7, 8, .94);
	backdrop-filter: blur(14px);
}

.topbar__inner {
	width: min(1420px, calc(100% - 48px));
	height: 100%;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
}

.mini-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: max-content;
	color: #f3f3f3;
	font: 700 18px/1 var(--font-display);
	letter-spacing: .06em;
}

.mini-brand:hover { color: #fff; }
.mini-brand > span:last-child > span { color: var(--red-bright); }

.mini-brand__mark {
	display: grid;
	place-items: center;
	width: 34px;
	height: 38px;
	color: #fff;
	border: 1px solid #b71b24;
	background: linear-gradient(145deg, #3a070a, #0e0e10 65%);
	clip-path: polygon(50% 0, 93% 20%, 88% 75%, 50% 100%, 12% 75%, 7% 20%);
	font: 700 17px/1 var(--font-display);
	text-shadow: 0 0 12px var(--red);
}

.topbar__status {
	display: flex;
	align-items: center;
	gap: 9px;
	color: #b9b9bd;
	font-size: 11px;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.topbar__status strong { color: #dedee1; font-size: 10px; }
.topbar__players { padding-left: 10px; border-left: 1px solid var(--line); color: var(--muted); }

.status-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.status-dot.is-online {
	background: #2fd071;
	box-shadow: 0 0 0 4px rgba(47, 208, 113, .1), 0 0 10px rgba(47, 208, 113, .5);
}

.status-dot.is-offline {
	background: var(--red);
	box-shadow: 0 0 0 4px rgba(217, 31, 43, .1), 0 0 10px rgba(217, 31, 43, .5);
}

.topbar__actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 14px;
}

.language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	height: 34px;
	padding: 0 6px 0 10px;
	color: #8f8f95;
	border: 1px solid #313136;
	background: rgba(13, 13, 15, .9);
}

.language-switcher:focus-within {
	border-color: #8e131a;
	box-shadow: 0 0 0 1px rgba(217, 31, 43, .16);
}

.language-switcher > span {
	font-size: 7px;
	font-weight: 700;
	letter-spacing: .14em;
}

.language-switcher__flag {
	position: relative;
	display: block;
	flex: 0 0 18px;
	width: 18px;
	height: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .2);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .45);
}

.language-switcher[data-current-language="pl"] .language-switcher__flag {
	background: linear-gradient(#f4f4f4 0 50%, #dc143c 50% 100%);
}

.language-switcher[data-current-language="en"] .language-switcher__flag {
	background:
		linear-gradient(33deg, transparent 43%, #fff 43% 48%, #c8102e 48% 52%, #fff 52% 57%, transparent 57%),
		linear-gradient(-33deg, transparent 43%, #fff 43% 48%, #c8102e 48% 52%, #fff 52% 57%, transparent 57%),
		linear-gradient(90deg, transparent 39%, #fff 39% 44%, #c8102e 44% 56%, #fff 56% 61%, transparent 61%),
		linear-gradient(transparent 34%, #fff 34% 41%, #c8102e 41% 59%, #fff 59% 66%, transparent 66%),
		#012169;
}

.language-switcher[data-current-language="pt-br"] .language-switcher__flag { background: #189447; }

.language-switcher[data-current-language="pt-br"] .language-switcher__flag::before {
	content: "";
	position: absolute;
	top: 2px;
	left: 4px;
	width: 8px;
	height: 6px;
	background: #ffdf00;
	transform: rotate(45deg);
}

.language-switcher[data-current-language="pt-br"] .language-switcher__flag::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 6px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #174a9c;
}

.language-switcher select {
	min-width: 58px;
	height: 26px;
	padding: 0 20px 0 7px;
	color: #e8e8ea;
	border: 0;
	outline: 0;
	background: #151517;
	font: 700 9px/1 var(--font-body);
	cursor: pointer;
}

.language-switcher option { color: #eee; background: #111113; }
.language-switcher--mobile { display: none; }

.topbar__actions a {
	color: #b4b4b8;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .04em;
}

.topbar__actions a:hover { color: #fff; }

.topbar__actions .topbar__button {
	padding: 9px 16px;
	color: #fff;
	border: 1px solid #8e131a;
	background: linear-gradient(#a9141d, #71090e);
	box-shadow: inset 0 1px rgba(255,255,255,.13), 0 6px 18px rgba(173, 12, 23, .18);
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 10px;
	border: 1px solid var(--line);
	background: var(--surface);
}

.nav-toggle span {
	display: block;
	height: 2px;
	margin: 4px 0;
	background: #ddd;
}

.mobile-menu { display: none; }

.hero {
	position: relative;
	height: 510px;
	overflow: hidden;
	border-bottom: 1px solid rgba(217, 31, 43, .25);
	background: #080809;
}

.hero__art {
	position: absolute;
	inset: 0;
	background: url("./images/gwardiaot-hero.png") center 58% / cover no-repeat;
	transform: scale(1.015);
	animation: hero-in 1.8s cubic-bezier(.2,.7,.2,1) both;
}

@keyframes hero-in {
	from { opacity: .25; transform: scale(1.06); }
	to { opacity: 1; transform: scale(1.015); }
}

.hero__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(7,7,8,.72), transparent 35%, transparent 65%, rgba(7,7,8,.72)),
		linear-gradient(0deg, #09090a 0, rgba(9,9,10,.2) 30%, rgba(0,0,0,.25) 100%),
		radial-gradient(circle at center, transparent 18%, rgba(0,0,0,.38) 85%);
}

.hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding-bottom: 16px;
	text-align: center;
	text-shadow: 0 4px 22px #000;
}

.hero__eyebrow {
	margin: 0 0 12px;
	color: #d1bd9a;
	font: 600 11px/1 var(--font-display);
	letter-spacing: .42em;
}

.hero__logo {
	position: relative;
	color: #f4f1ec;
	font: 800 clamp(54px, 7vw, 92px)/.92 var(--font-display);
	letter-spacing: -.055em;
	filter: drop-shadow(0 6px 3px #000) drop-shadow(0 0 20px rgba(0,0,0,.8));
}

.hero__logo::before,
.hero__logo::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 60px;
	height: 1px;
	background: linear-gradient(90deg, transparent, #a1151c);
}

.hero__logo::before { right: calc(100% + 25px); }
.hero__logo::after { left: calc(100% + 25px); transform: rotate(180deg); }
.hero__logo:hover { color: #fff; }
.hero__logo b { color: var(--red-bright); font-weight: 800; }

.hero__tagline {
	margin: 17px 0 25px;
	color: #c7c4c0;
	font: 500 14px/1.4 var(--font-display);
	letter-spacing: .1em;
}

.hero__buttons {
	display: flex;
	gap: 12px;
}

.button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	height: 48px;
	padding: 0 24px;
	color: #eee;
	border: 1px solid rgba(255,255,255,.18);
	background: rgba(10,10,11,.68);
	font: 700 11px/1 var(--font-display);
	letter-spacing: .12em;
	transition: .2s ease;
}

.button:hover { color: #fff; transform: translateY(-2px); border-color: rgba(255,255,255,.35); }

.button--primary {
	border-color: #bd1d26;
	background: linear-gradient(135deg, #c21b25, #75080f);
	box-shadow: inset 0 1px rgba(255,255,255,.18), 0 10px 30px rgba(172, 10, 21, .32);
}

.button--primary::before {
	content: "";
	position: absolute;
	inset: 3px;
	border: 1px solid rgba(255,255,255,.11);
}

.button--ghost { backdrop-filter: blur(5px); }

.hero__edge {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(90deg, transparent, #8e0c13 50%, transparent);
	box-shadow: 0 0 22px #780910;
}

.hero__embers {
	position: absolute;
	inset: 0;
	opacity: .45;
	background-image:
		radial-gradient(circle, #ed2835 0 1px, transparent 1.5px),
		radial-gradient(circle, #ed2835 0 1px, transparent 1.5px);
	background-size: 130px 150px, 190px 220px;
	background-position: 30px 80px, 80px 40px;
	mask-image: linear-gradient(0deg, #000, transparent 70%);
	animation: embers 18s linear infinite;
}

@keyframes embers { to { background-position: 30px -220px, 80px -400px; } }

.layout {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: 220px minmax(0, 850px) 230px;
	gap: 24px;
	width: min(1370px, calc(100% - 48px));
	margin: -38px auto 70px;
	align-items: start;
}

.sidebar {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.nav-card,
.status-card,
.boost-card,
.quick-card,
.quote-card,
.discord-card,
.content-card,
.ticker-card,
.featured-card {
	border: 1px solid var(--line);
	background: linear-gradient(145deg, rgba(25,25,28,.98), rgba(13,13,15,.98));
	box-shadow: var(--shadow);
}

.nav-card { overflow: hidden; }

.nav-card__title {
	display: flex;
	align-items: center;
	width: 100%;
	height: 48px;
	padding: 0 14px;
	color: #dcdcdf;
	border: 0;
	border-bottom: 1px solid var(--line);
	background: linear-gradient(90deg, rgba(132,12,19,.22), transparent 70%);
	cursor: pointer;
	font: 600 12px/1 var(--font-display);
	letter-spacing: .06em;
	text-align: left;
}

.nav-card__icon {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	margin-right: 9px;
	color: var(--red-bright);
	border: 1px solid rgba(217,31,43,.25);
	transform: rotate(45deg) scale(.72);
}

.nav-card__icon::first-letter { transform: rotate(-45deg); }
.nav-card__chevron { margin-left: auto; color: var(--muted); font-size: 18px; transition: transform .2s; }
.nav-card.is-collapsed .nav-card__chevron { transform: rotate(-90deg); }
.nav-card.is-collapsed .nav-card__links { display: none; }

.nav-card__links { padding: 8px 0; }

.nav-card__links a {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 34px;
	padding: 7px 15px;
	color: #939399;
	border-left: 2px solid transparent;
	font-size: 12px;
	transition: .18s ease;
}

.nav-card__links a > span {
	width: 4px;
	height: 4px;
	background: #4a4a4f;
	transform: rotate(45deg);
}

.nav-card__links a:hover,
.nav-card__links a.is-active {
	color: #f4f4f5;
	border-left-color: var(--red);
	background: linear-gradient(90deg, rgba(205,21,32,.12), transparent);
}

.nav-card__links a.is-active > span { background: var(--red-bright); box-shadow: 0 0 8px var(--red); }

.content-column {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.content-card {
	min-height: 520px;
	overflow: hidden;
	border-top-color: var(--line-red);
}

.content-card__header {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 84px;
	padding: 16px 24px;
	border-bottom: 1px solid var(--line-red);
	background:
		linear-gradient(90deg, rgba(128,8,16,.24), transparent 60%),
		linear-gradient(#1b1b1e, #131315);
}

.content-card__header::after {
	content: "";
	position: absolute;
	right: 22px;
	width: 90px;
	height: 1px;
	background: linear-gradient(90deg, transparent, #6f1016);
}

.content-card__rune {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	color: var(--red-bright);
	border: 1px solid #631016;
	background: #120c0d;
	transform: rotate(45deg);
}

.content-card__header > div { position: relative; min-width: 0; }
.content-card__header p, .card-kicker {
	margin: 0 0 4px;
	color: #9d6c6f;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .2em;
}

.content-card__header h1 {
	margin: 0;
	overflow-wrap: anywhere;
	color: #f0f0f1;
	font: 600 clamp(20px, 3vw, 27px)/1.2 var(--font-display);
	letter-spacing: .02em;
}

.content-card__body {
	min-height: 420px;
	padding: 28px;
	color: #b9b9bd;
	overflow-x: auto;
	scrollbar-color: #791017 #111113;
	scrollbar-width: thin;
}

.content-card__body p,
.content-card__body li,
.content-card__body dd,
.content-card__body a { overflow-wrap: anywhere; }

.content-card__body h1,
.content-card__body h2,
.content-card__body h3,
.content-card__body h4 {
	color: #ececee;
	font-family: var(--font-display);
}

.content-card__body hr { border: 0; border-top: 1px solid var(--line); }

.status-card,
.boost-card,
.quick-card,
.quote-card { padding: 20px; }

.status-card__state {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 10px 0 14px;
	color: #e9e9eb;
	font: 600 13px/1 var(--font-display);
	letter-spacing: .1em;
}

.status-card__players {
	display: flex;
	align-items: baseline;
	gap: 8px;
	padding: 14px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.status-card__players strong {
	color: #fff;
	font: 600 30px/1 var(--font-display);
}

.status-card__players span { color: var(--muted); font-size: 11px; }

.status-card > a {
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
	color: #c6c6c9;
	font-size: 11px;
}

.status-card > a span { color: var(--red-bright); }

.boost-card {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 100% 0, rgba(211, 26, 38, .13), transparent 42%),
		linear-gradient(145deg, rgba(25, 25, 28, .98), rgba(13, 13, 15, .98));
}

.boost-card::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 2px;
	background: linear-gradient(transparent, var(--red-bright), transparent);
	opacity: .8;
}

.boost-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line);
}

.boost-card__header h2 {
	margin: 4px 0 0;
	color: #f1f1f2;
	font: 600 14px/1.25 var(--font-display);
}

.boost-card__pulse {
	position: relative;
	flex: 0 0 9px;
	width: 9px;
	height: 9px;
	border: 1px solid #e12a36;
	transform: rotate(45deg);
}

.boost-card__pulse::after {
	content: "";
	position: absolute;
	inset: 2px;
	background: var(--red-bright);
	box-shadow: 0 0 12px rgba(237, 40, 53, .75);
}

.boost-card__list { display: grid; }

.boost-card__item {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	align-items: center;
	gap: 11px;
	min-height: 76px;
	padding: 10px 0;
	border-bottom: 1px solid var(--line);
}

.boost-card__visual {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	overflow: hidden;
	border: 1px solid #4d1519;
	background:
		linear-gradient(135deg, rgba(153, 14, 23, .18), transparent 62%),
		#101012;
	clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.boost-card__visual img {
	display: block;
	max-width: 64px;
	max-height: 64px;
	object-fit: contain;
	image-rendering: pixelated;
}

.boost-card__visual span {
	color: var(--red-bright);
	font: 700 9px/1 var(--font-display);
	letter-spacing: .08em;
}

.boost-card__copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.boost-card__copy > span {
	color: #945f63;
	font-size: 7px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.boost-card__copy strong {
	margin-top: 3px;
	overflow-wrap: anywhere;
	color: #ededee;
	font: 600 12px/1.25 var(--font-display);
}

.boost-card__copy small {
	margin-top: 4px;
	color: #79797f;
	font-size: 8px;
	line-height: 1.35;
}

.boost-card__reset {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 11px 0 -3px;
	color: #68686e;
	font-size: 8px;
	letter-spacing: .04em;
}

.boost-card__reset span { color: #b91b25; font-size: 12px; }

.quick-card ol {
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

.quick-card li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 0;
	border-top: 1px solid var(--line);
}

.quick-card li > span {
	display: grid;
	place-items: center;
	flex: 0 0 25px;
	height: 25px;
	color: #d9d9dc;
	border: 1px solid #5b1519;
	background: #190d0f;
	font: 600 10px/1 var(--font-display);
	transform: rotate(45deg);
}

.quick-card a { color: #a8a8ad; font-size: 11px; }
.quick-card a:hover { color: #fff; }

.quote-card { position: relative; overflow: hidden; }
.quote-card > span { position: absolute; top: -14px; left: 8px; color: rgba(217,31,43,.19); font: 100px/1 Georgia; }
.quote-card p { position: relative; margin: 0; color: #9b9ba0; font: italic 12px/1.65 Georgia, serif; }

.discord-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	color: #e5e7ff;
	border-color: rgba(88,101,242,.38);
	background:
		radial-gradient(circle at 15% 50%, rgba(88,101,242,.22), transparent 45%),
		linear-gradient(145deg, #171824, #101014);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.discord-card:hover {
	color: #fff;
	border-color: rgba(115,127,255,.75);
	box-shadow: 0 14px 38px rgba(42,48,135,.3);
	transform: translateY(-2px);
}

.discord-card__icon {
	display: grid;
	place-items: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	color: #fff;
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 12px;
	background: linear-gradient(145deg, #7289ff, #4752c4);
	box-shadow: 0 7px 18px rgba(71,82,196,.3);
}

.discord-card__icon svg { width: 24px; height: 19px; }
.discord-card__copy { display: flex; min-width: 0; flex: 1; flex-direction: column; }
.discord-card__copy strong { color: #f2f2ff; font: 600 11px/1.3 var(--font-display); }
.discord-card__copy small { margin-top: 4px; color: #9597b1; font-size: 9px; white-space: nowrap; }
.discord-card__arrow { color: #8790ff; font-size: 17px; }

.ticker-card {
	display: grid;
	grid-template-columns: 120px 1fr;
	min-height: 58px;
	overflow: hidden;
}

.ticker-card > strong {
	display: grid;
	place-items: center;
	color: #eee;
	border-right: 1px solid var(--line-red);
	background: rgba(137, 9, 17, .27);
	font: 700 10px/1 var(--font-display);
	letter-spacing: .12em;
}

.ticker-card > div { padding: 12px 18px; }
.ticker-card article { display: flex; align-items: flex-start; gap: 10px; }
.ticker-card article + article { margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--line); }
.ticker-card article > img { width: 16px; height: 16px; margin-top: 1px; object-fit: contain; image-rendering: pixelated; }
.ticker-card time { flex: 0 0 auto; color: var(--red-bright); font-size: 10px; font-weight: 700; }
.ticker-card article span { min-width: 0; color: #aaaab0; font-size: 11px; line-height: 1.45; }
.ticker-card article span small {
	display: block;
	margin-bottom: 2px;
	color: #a9686d;
	font-size: 7px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.featured-card {
	display: grid;
	grid-template-columns: minmax(140px, 28%) 1fr;
	margin-bottom: 20px;
	overflow: hidden;
}

.featured-card > img { width: 100%; height: 100%; min-height: 170px; object-fit: cover; }
.featured-card > div { padding: 22px; }
.featured-card h2 { margin: 3px 0 10px; }
.featured-card__text { color: #aaaab0; font-size: 11px; line-height: 1.65; }
.gw-featured-link {
	display: inline-flex;
	align-items: center;
	margin-top: 14px;
	color: #f0525c;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.gw-featured-link:hover { color: #fff; }

.data-section {
	margin: 0 0 18px;
	border: 1px solid var(--line);
	background: rgba(255,255,255,.015);
}

.data-section__title {
	margin: 0 !important;
	padding: 12px 16px;
	border-bottom: 1px solid var(--line);
	background: linear-gradient(90deg, rgba(157,13,22,.16), transparent);
	font-size: 15px;
}

.data-section__body { padding: 15px; }

/* MyAAC legacy content compatibility */
.TableContainer, .Table1, .Table2, .Table3, .Table4, .Table5 { width: 100% !important; }
.TableContainer { margin: 0 0 18px; }
.TableContainer table, table { border-collapse: collapse; }
.InnerTableContainer { width: 100%; }
.CaptionContainer, .CaptionInnerContainer { position: relative; }
.CaptionInnerContainer .Text, .CaptionContainer .Text {
	display: block;
	padding: 11px 14px;
	color: #eee;
	border: 1px solid var(--line);
	border-bottom-color: var(--line-red);
	background: linear-gradient(90deg, rgba(132,12,19,.22), #171719);
	font: 600 13px/1.3 var(--font-display);
}

.CaptionContainer span:not(.Text),
.CaptionEdgeLeftTop, .CaptionEdgeRightTop, .CaptionBorderTop,
.CaptionVerticalLeft, .CaptionVerticalRight, .CaptionBorderBottom,
.CaptionEdgeLeftBottom, .CaptionEdgeRightBottom { display: none !important; }

table td, table th {
	padding: 9px 11px;
	border: 1px solid rgba(255,255,255,.07);
	color: #b7b7bc;
	background-color: #151517 !important;
	text-align: left;
}

table tr:nth-child(even) td { background-color: #111113 !important; }
table th, .LabelH, .LabelV { color: #e1e1e3; font-weight: 600; }
.Odd, .Even { padding: 9px; border-bottom: 1px solid var(--line); }
.Odd { background: rgba(255,255,255,.018); }
.moduleRow:hover, .moduleRowOver { background: rgba(217,31,43,.08) !important; }

input[type="text"],
input:not([type]),
input[type="password"],
input[type="email"],
input[type="number"],
select,
textarea {
	max-width: 100%;
	padding: 10px 12px;
	color: #e8e8ea;
	border: 1px solid #343438;
	outline: none;
	background: #0c0c0d;
	box-shadow: inset 0 2px 8px rgba(0,0,0,.28);
}

input:focus, select:focus, textarea:focus {
	border-color: #8e141b;
	box-shadow: 0 0 0 3px rgba(217,31,43,.09);
}

input[type="submit"],
input[type="button"],
button.form-button,
.form-button {
	padding: 10px 18px;
	color: #fff;
	border: 1px solid #a31921;
	background: linear-gradient(#b71923, #71080e);
	cursor: pointer;
	font-weight: 700;
	box-shadow: inset 0 1px rgba(255,255,255,.12);
}

input[type="submit"]:hover,
input[type="button"]:hover,
.form-button:hover { filter: brightness(1.17); }

.Box, .BoxContent, .Border_2, .Border_3 {
	position: relative;
	width: 100%;
	background: none !important;
}

.Box { margin-bottom: 16px; }
.Box > .Title, .Box > [class^="Corner"], .Box > .Border_1, .Box > .BorderTitleText { display: none; }
.BoxContent { padding: 0 !important; }
.NewsEntry {
	margin-bottom: 20px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: linear-gradient(145deg, rgba(255,255,255,.018), rgba(255,255,255,.006));
}
.NewsEntry.is-detail { border-color: #3a2528; }
.NewsHeadline { padding: 0; color: #eee; border: 0; border-bottom: 1px solid var(--line-red); background: #18181b !important; }
.NewsHeadlineBackground { display: flex; align-items: center; gap: 16px; min-height: 72px; padding: 14px 18px; background: linear-gradient(90deg, rgba(132,12,19,.24), transparent 72%) !important; }
.NewsHeadlineMark { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; color: var(--red-bright); border: 1px solid #631016; background: #120c0d; transform: rotate(45deg); }
.NewsHeadlineMark img { max-width: 18px; max-height: 18px; transform: rotate(-45deg); image-rendering: pixelated; }
.NewsHeadlineMeta { min-width: 0; }
.NewsHeadlineText { margin-top: 4px; color: #eee !important; font: 600 18px/1.25 var(--font-display); }
.NewsHeadlineDate { display: flex; align-items: center; gap: 8px; color: var(--muted) !important; font-size: 8px; letter-spacing: .06em; }
.NewsHeadlineDate span {
	color: #e05a63;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
}
.NewsHeadlineAuthor { margin-top: 4px; color: #77777d; font-size: 9px; }
.NewsContent { padding: 22px 20px 26px; color: #b8b8bd; font-size: 11px; line-height: 1.72; }
.NewsContent > :first-child { margin-top: 0; }
.NewsContent > :last-child { margin-bottom: 0; }
.NewsContent h1, .NewsContent h2, .NewsContent h3 { color: #eee; font-family: var(--font-display); }
.NewsContent img { max-width: 100%; height: auto; }
.NewsFooter {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 18px;
	border-top: 1px solid var(--line);
	background: rgba(0,0,0,.16);
}
.gw-news-readmore,
.gw-news-comments {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #d8d8dc;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.gw-news-readmore { color: #f0525c; }
.gw-news-readmore:hover,
.gw-news-comments:hover { color: #fff; }
.gw-news-comments span { color: var(--red-bright); font-size: 8px; }
.gw-news-feed__archive { display: flex; justify-content: flex-end; margin-top: -4px; }
.gw-news-notfound { padding: 40px 22px; border: 1px solid var(--line); background: #111113; text-align: center; }
.gw-news-notfound__mark {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin: 0 auto 22px;
	color: var(--red-bright);
	border: 1px solid #631016;
	background: #160d0f;
	font: 600 18px/1 var(--font-display);
	transform: rotate(45deg);
}
.gw-news-notfound__mark span { transform: rotate(-45deg); }
.gw-news-notfound h2 { margin: 0 0 8px; color: #eee; font: 600 22px/1.2 var(--font-display); }
.gw-news-notfound p { margin: 0 0 22px; color: var(--muted); }
.red, .Red { color: #ff525e !important; }
.green, .Green { color: #3ed77b !important; }
.SmallBox, .MediumBox, .LargeBox { width: auto !important; }

/* Account Management injects its own black link color after the main stylesheet. */
#account-manage #one {
	width: 160px;
	padding-right: 14px;
}

#account-manage #two {
	margin-left: 160px;
	padding-left: 18px;
	border-left: 1px solid var(--line);
}

#account-manage .vertical-menu {
	overflow: hidden;
	border: 1px solid var(--line);
	background: #0e0e10;
}

#account-manage .vertical-menu a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 43px;
	padding: 10px 13px 10px 25px;
	color: #aaaab0;
	border-bottom: 1px solid var(--line);
	border-left: 2px solid transparent;
	background: linear-gradient(90deg, rgba(255,255,255,.025), transparent) !important;
	font-size: 11px;
	transition: color .18s ease, border-color .18s ease, background .18s ease;
}

#account-manage .vertical-menu a::before {
	content: "";
	position: absolute;
	left: 12px;
	width: 4px;
	height: 4px;
	background: #55555b;
	transform: rotate(45deg);
}

#account-manage .vertical-menu a:hover,
#account-manage .vertical-menu a:focus-visible {
	color: #fff;
	border-left-color: var(--red);
	background: linear-gradient(90deg, rgba(205,21,32,.16), transparent) !important;
}

#account-manage .vertical-menu a:hover::before,
#account-manage .vertical-menu a:focus-visible::before {
	background: var(--red-bright);
	box-shadow: 0 0 8px var(--red);
}

#account-manage .vertical-menu a:last-child {
	color: #d98b91;
	border-bottom: 0;
}

#account-manage h1,
#account-manage h2 {
	scroll-margin-top: 20px;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.gw-kicker {
	margin: 0 0 5px;
	color: #9d6c6f;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .2em;
}

.gw-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin: 0 0 22px;
	padding: 0 0 16px;
	border-bottom: 1px solid var(--line);
}

.gw-section-heading p {
	margin: 0 0 5px;
	color: #9d6c6f;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .2em;
}

.gw-section-heading h2 {
	margin: 0;
	color: #f0f0f2;
	font: 600 clamp(20px, 3vw, 27px)/1.2 var(--font-display);
}

.gw-section-heading span {
	display: block;
	margin-top: 5px;
	color: var(--muted);
	font-size: 11px;
}

.gw-section-heading > a {
	flex: 0 0 auto;
	color: #c7c7cb;
	font-size: 10px;
	font-weight: 600;
}

.gw-panel {
	margin-bottom: 18px;
	padding: 22px;
	border: 1px solid var(--line);
	background: linear-gradient(145deg, rgba(26,26,29,.88), rgba(13,13,15,.92));
}

.gw-panel > .gw-section-heading { margin-bottom: 16px; }

.gw-panel__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: -2px 0 18px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--line);
}

.gw-panel__top h3 {
	margin: 0;
	color: #ededf0;
	font: 600 18px/1.25 var(--font-display);
}

.gw-count {
	display: grid;
	place-items: center;
	min-width: 38px;
	height: 38px;
	padding: 0 9px;
	color: #fff;
	border: 1px solid #681017;
	background: #180d0f;
	font: 600 14px/1 var(--font-display);
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.gw-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 220px;
	padding: 35px 20px;
	text-align: center;
	border: 1px dashed rgba(255,255,255,.1);
	background: rgba(255,255,255,.012);
}

.gw-empty__icon {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	margin-bottom: 17px;
	color: var(--red-bright);
	border: 1px solid #651017;
	background: #160c0e;
	font-size: 18px;
	transform: rotate(45deg);
}

.gw-empty h3 {
	margin: 0 0 7px;
	color: #e9e9eb;
	font: 600 17px/1.3 var(--font-display);
}

.gw-empty p { max-width: 470px; margin: 0 0 18px; color: var(--muted); font-size: 11px; }

.gw-link-button,
a.gw-link-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 8px 14px;
	color: #fff;
	border: 1px solid #8d151c;
	background: linear-gradient(#a5161e, #65080d);
	font-size: 10px;
	font-weight: 700;
}

.gw-link-button:hover { color: #fff; filter: brightness(1.15); }
.gw-muted { color: var(--muted) !important; }
.gw-note { margin: -10px 0 18px; color: #6f6f75; font-size: 9px; text-align: right; }

/* Authentication */
.gw-auth {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	min-height: 470px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: #101012;
}

.gw-auth__intro {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 42px;
	overflow: hidden;
	border-right: 1px solid var(--line-red);
	background:
		linear-gradient(150deg, rgba(35,6,9,.93), rgba(12,12,14,.96)),
		url("./images/gwardiaot-hero.png") 36% center / cover;
}

.gw-auth__intro::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 50%, rgba(198,22,32,.15), transparent 45%);
	pointer-events: none;
}

.gw-auth__intro > * { position: relative; z-index: 1; }
.gw-auth__crest {
	display: grid;
	place-items: center;
	width: 54px;
	height: 61px;
	margin-bottom: 24px;
	color: #fff;
	border: 1px solid #9b161e;
	background: #160d0f;
	clip-path: polygon(50% 0, 93% 20%, 88% 75%, 50% 100%, 12% 75%, 7% 20%);
	font: 700 23px/1 var(--font-display);
}

.gw-auth__intro h2 { margin: 0 0 12px; color: #fff; font: 600 25px/1.2 var(--font-display); }
.gw-auth__intro > p:not(.gw-kicker) { max-width: 330px; color: #a8a8ad; }
.gw-auth__intro ul { margin: 20px 0 0; padding: 0; list-style: none; }
.gw-auth__intro li { padding: 7px 0; color: #b8b8bd; font-size: 11px; }
.gw-auth__intro li span { margin-right: 8px; color: var(--red-bright); }

.gw-auth__form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 42px clamp(30px, 6vw, 68px);
}

.gw-auth__form h3 { margin: 0 0 24px; color: #eee; font: 600 22px/1.2 var(--font-display); }
.gw-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.gw-field > span { color: #aaaab0; font-size: 10px; font-weight: 600; }
.gw-field input { width: 100%; min-height: 44px; }
.gw-check { display: flex; align-items: center; gap: 8px; margin: 2px 0 20px; color: #909096; font-size: 10px; }
.gw-auth__submit { width: 100%; min-height: 44px; }
.gw-auth__links { display: flex; justify-content: space-between; gap: 15px; margin-top: 16px; }
.gw-auth__links a { color: #8e8e95; font-size: 10px; }
.gw-auth__links a:last-child { color: var(--red-bright); }

/* Search and alerts */
.gw-search {
	display: grid;
	grid-template-columns: 1fr minmax(220px, 1.4fr) auto;
	align-items: center;
	gap: 15px;
	margin-top: 18px;
	padding: 16px 18px;
	border: 1px solid var(--line);
	background: #121214;
}

.gw-search strong { color: #e4e4e7; font: 600 14px/1 var(--font-display); }
.gw-search input { width: 100%; }

.gw-alert {
	display: grid;
	grid-template-columns: 48px 1fr;
	align-items: start;
	gap: 16px;
	margin: 0 0 18px;
	padding: 20px;
	border: 1px solid var(--line);
	background: #121214;
}

.gw-alert__icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid currentColor;
	font: 700 18px/1 var(--font-display);
	transform: rotate(45deg);
}

.gw-alert h3 { margin: 0 0 6px; color: #eee; font: 600 16px/1.3 var(--font-display); }
.gw-alert p, .gw-alert ul { margin: 6px 0 0; }
.gw-alert ul { padding-left: 18px; }
.gw-alert--success { border-color: rgba(47,208,113,.3); background: linear-gradient(90deg, rgba(47,208,113,.09), #121214 45%); }
.gw-alert--success .gw-alert__icon { color: #43dc82; }
.gw-alert--error { border-color: rgba(240,56,69,.35); background: linear-gradient(90deg, rgba(217,31,43,.1), #121214 45%); }
.gw-alert--error .gw-alert__icon { color: var(--red-bright); }
.gw-alert--warning { border-color: rgba(199,170,120,.28); background: linear-gradient(90deg, rgba(199,170,120,.08), #121214 45%); }
.gw-alert--warning .gw-alert__icon { color: var(--gold); }
.gw-alert-actions { display: flex; justify-content: center; margin: 10px 0 18px; }

/* News archive */
.gw-news-archive-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 82px;
	gap: 12px;
	margin-bottom: 14px;
	padding: 14px;
	border: 1px solid var(--line);
	background: #111113;
}
.gw-news-archive-search label { min-width: 0; }
.gw-news-archive-search label > span,
.gw-news-archive-search small {
	display: block;
	margin-bottom: 7px;
	color: #77777d;
	font-size: 7px;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
}
.gw-news-archive-search input { width: 100%; height: 42px; }
.gw-news-archive-search > div {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border: 1px solid var(--line);
	background: #0d0d0f;
}
.gw-news-archive-search > div small { margin-bottom: 4px; }
.gw-news-archive-search > div strong { color: #eee; font: 600 20px/1 var(--font-display); }
.gw-news-list { border: 1px solid var(--line); background: #111113; }
.gw-news-row {
	display: grid;
	grid-template-columns: 34px 84px minmax(0, 1fr) 20px;
	align-items: center;
	gap: 13px;
	min-height: 62px;
	padding: 10px 16px;
	color: #d2d2d6;
	border-bottom: 1px solid var(--line);
	transition: background .18s ease;
}

.gw-news-row:last-child { border-bottom: 0; }
.gw-news-row:hover { color: #fff; background: linear-gradient(90deg, rgba(205,21,32,.1), transparent); }
.gw-news-row__icon { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid #451015; background: #150d0f; transform: rotate(45deg); }
.gw-news-row__icon img { max-width: 16px; transform: rotate(-45deg); image-rendering: pixelated; }
.gw-news-row time { color: #77777d; font-size: 9px; }
.gw-news-row__copy { display: flex; min-width: 0; flex-direction: column; gap: 3px; }
.gw-news-row__copy small { color: #925158; font-size: 7px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.gw-news-row strong { overflow: hidden; color: inherit; font: 600 12px/1.3 var(--font-display); text-overflow: ellipsis; white-space: nowrap; }
.gw-news-row__arrow { color: var(--red-bright); }
.gw-news-row[hidden] { display: none !important; }
.gw-news-archive-empty {
	margin: 14px 0 0;
	padding: 18px;
	color: var(--muted);
	border: 1px dashed #333338;
	background: #111113;
	text-align: center;
}
.gw-news-archive-empty[hidden] { display: none !important; }

/* Changelog */
.gw-changelog-toolbar {
	display: grid;
	grid-template-columns: 126px minmax(0, 1fr);
	gap: 12px;
	margin-bottom: 18px;
	padding: 12px;
	border: 1px solid var(--line);
	background: linear-gradient(100deg, rgba(139,15,22,.09), #111113 58%);
}

.gw-changelog-toolbar__count {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 48px;
	border: 1px solid #343438;
	background: #0c0c0e;
}

.gw-changelog-toolbar__count small {
	margin-bottom: 4px;
	color: #77777d;
	font-size: 7px;
	font-weight: 700;
	letter-spacing: .12em;
}

.gw-changelog-toolbar__count strong { color: #eee; font: 600 20px/1 var(--font-display); }
.gw-changelog-filters { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px; background: var(--line); }
.gw-changelog-filters button {
	min-width: 0;
	min-height: 48px;
	padding: 8px 6px;
	color: #898990;
	border: 0;
	background: #101012;
	cursor: pointer;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .05em;
}
.gw-changelog-filters button:hover { color: #eee; background: #171719; }
.gw-changelog-filters button.is-active { color: #fff; background: linear-gradient(145deg, #a5131c, #65090e); }

.gw-changelog { position: relative; display: grid; gap: 11px; }
.gw-changelog::before {
	content: "";
	position: absolute;
	top: 22px;
	bottom: 22px;
	left: 89px;
	width: 1px;
	background: linear-gradient(#7b1118, #3a1417 45%, transparent);
}
.gw-changelog-entry {
	position: relative;
	display: grid;
	grid-template-columns: 58px 38px minmax(0, 1fr);
	align-items: start;
	gap: 13px;
}
.gw-changelog-entry[hidden] { display: none !important; }
.gw-changelog-date { padding-top: 10px; text-align: right; }
.gw-changelog-date strong { display: block; color: #dedee1; font: 600 18px/1 var(--font-display); }
.gw-changelog-date span { display: block; margin-top: 5px; color: #707077; font-size: 8px; }
.gw-changelog-marker {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-top: 8px;
	border: 1px solid #67141a;
	background: #160e10;
	box-shadow: 0 0 0 5px #0a0a0b;
	transform: rotate(45deg);
}
.gw-changelog-marker img { max-width: 18px; max-height: 18px; image-rendering: pixelated; transform: rotate(-45deg); }
.gw-changelog-copy {
	min-width: 0;
	padding: 16px 18px;
	border: 1px solid var(--line);
	background: linear-gradient(145deg, #171719, #101012);
	transition: border-color .18s ease, transform .18s ease;
}
.gw-changelog-entry:hover .gw-changelog-copy { border-color: #492126; transform: translateX(2px); }
.gw-changelog-copy header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.gw-changelog-badge {
	display: inline-flex;
	align-items: center;
	min-height: 23px;
	padding: 0 9px;
	color: #ef6670;
	border: 1px solid #591219;
	background: #180e10;
	font-size: 7px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.gw-changelog-source { display: inline-flex; align-items: center; gap: 7px; color: #77777d; font-size: 8px; }
.gw-changelog-source img { width: 15px; height: 15px; object-fit: contain; image-rendering: pixelated; }
.gw-changelog-body { color: #bbb; font-size: 11px; line-height: 1.65; overflow-wrap: anywhere; }
.gw-changelog-admin { margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line); }
.gw-changelog-entry--added .gw-changelog-marker { border-color: rgba(47,208,113,.42); }
.gw-changelog-entry--fixed .gw-changelog-marker { border-color: rgba(199,170,120,.48); }
.gw-changelog-entry--removed .gw-changelog-marker { border-color: rgba(217,31,43,.58); }
.gw-changelog-entry--added .gw-changelog-badge { color: #64d995; border-color: rgba(47,208,113,.28); background: rgba(47,208,113,.06); }
.gw-changelog-entry--fixed .gw-changelog-badge { color: #d7ba82; border-color: rgba(199,170,120,.3); background: rgba(199,170,120,.06); }
.gw-changelog-entry--removed .gw-changelog-badge { color: #f05b65; }
.gw-changelog-empty { margin: 12px 0 0; padding: 18px; color: var(--muted); border: 1px dashed #333338; text-align: center; }
.gw-changelog-empty[hidden] { display: none !important; }
.gw-changelog-pagination strong { color: #8d8d93; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }

/* FAQ */
.gw-faq-form {
	margin-bottom: 18px;
	overflow: hidden;
	border: 1px solid #442025;
	background: linear-gradient(145deg, rgba(120,12,19,.11), #111113 52%);
}
.gw-faq-form > header { padding: 15px 18px; border-bottom: 1px solid var(--line-red); }
.gw-faq-form > header span { color: #a65f64; font-size: 7px; font-weight: 700; letter-spacing: .15em; }
.gw-faq-form > header h3 { margin: 4px 0 0; color: #eee; font: 600 16px/1.25 var(--font-display); }
.gw-faq-form form { display: grid; grid-template-columns: minmax(180px, .75fr) minmax(240px, 1.25fr); gap: 15px; padding: 18px; }
.gw-faq-form label > span { display: block; margin-bottom: 7px; color: #99999f; font-size: 8px; font-weight: 700; }
.gw-faq-form input, .gw-faq-form textarea { width: 100%; }
.gw-faq-form form > div { grid-column: 1 / -1; display: flex; justify-content: flex-end; gap: 10px; padding-top: 2px; }

.gw-faq-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 12px;
	padding: 12px 15px;
	border: 1px solid var(--line);
	background: #111113;
}
.gw-faq-toolbar small, .gw-faq-toolbar strong { display: block; }
.gw-faq-toolbar small { margin-bottom: 3px; color: #8d5559; font-size: 7px; font-weight: 700; letter-spacing: .13em; }
.gw-faq-toolbar strong { color: #d6d6da; font: 600 13px/1.2 var(--font-display); }
.gw-faq-toolbar button {
	min-height: 34px;
	padding: 7px 12px;
	color: #aaaab0;
	border: 1px solid #37373c;
	background: #0d0d0f;
	cursor: pointer;
	font-size: 8px;
	font-weight: 700;
}
.gw-faq-toolbar button:hover { color: #fff; border-color: #6c151b; }
.gw-faq-list { display: grid; gap: 8px; }
.gw-faq-item { overflow: hidden; border: 1px solid var(--line); background: #111113; }
.gw-faq-item.is-hidden-entry { opacity: .62; border-style: dashed; }
.gw-faq-item summary {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr) auto 25px;
	align-items: center;
	gap: 12px;
	min-height: 59px;
	padding: 10px 15px;
	color: #d9d9dc;
	background: linear-gradient(90deg, rgba(134,13,20,.08), transparent);
	cursor: pointer;
	list-style: none;
}
.gw-faq-item summary::-webkit-details-marker { display: none; }
.gw-faq-item summary:hover { color: #fff; background: linear-gradient(90deg, rgba(165,16,25,.14), transparent); }
.gw-faq-number {
	display: grid;
	place-items: center;
	width: 27px;
	height: 27px;
	color: #da3b46;
	border: 1px solid #5a151a;
	background: #160e10;
	font: 700 7px/1 var(--font-display);
	transform: rotate(45deg);
}
.gw-faq-item summary strong { min-width: 0; font: 600 12px/1.4 var(--font-display); overflow-wrap: anywhere; }
.gw-faq-item summary small { color: #d4a557; font-size: 7px; font-weight: 700; letter-spacing: .1em; }
.gw-faq-item summary i { color: #d33b45; font: normal 18px/1 var(--font-display); text-align: center; transition: transform .18s ease; }
.gw-faq-item[open] summary { border-bottom: 1px solid var(--line-red); }
.gw-faq-item[open] summary i { transform: rotate(45deg); }
.gw-faq-answer { padding: 18px 20px 21px 61px; color: #b8b8bd; font-size: 11px; line-height: 1.7; overflow-wrap: anywhere; }
.gw-faq-answer > :first-child { margin-top: 0; }
.gw-faq-answer > :last-child { margin-bottom: 0; }
.gw-faq-admin { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; padding: 10px 15px 12px 61px; border-top: 1px solid var(--line); background: #0e0e10; }
.gw-faq-admin form { margin: 0; }
.gw-faq-admin a, .gw-faq-admin button {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 9px;
	color: #aaaab0;
	border: 1px solid #343439;
	background: #131315;
	cursor: pointer;
	font-size: 8px;
}
.gw-faq-admin a:hover, .gw-faq-admin button:hover { color: #fff; border-color: #65151b; }
.gw-faq-admin .is-danger { color: #df5962; }

/* Team */
.gw-team-summary {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1px;
	margin-bottom: 18px;
	border: 1px solid var(--line);
	background: var(--line);
}
.gw-team-summary > div { min-width: 0; padding: 14px 17px; background: #111113; }
.gw-team-summary small, .gw-team-summary strong { display: block; }
.gw-team-summary small { margin-bottom: 6px; color: #8a5559; font-size: 7px; font-weight: 700; letter-spacing: .13em; }
.gw-team-summary strong { overflow: hidden; color: #eee; font: 600 18px/1.2 var(--font-display); text-overflow: ellipsis; }
.gw-team-group { margin-bottom: 17px; border: 1px solid var(--line); background: #101012; }
.gw-team-group > header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 14px 17px;
	border-bottom: 1px solid var(--line-red);
	background: linear-gradient(90deg, rgba(138,13,21,.15), transparent);
}
.gw-team-group > header p { margin: 0 0 3px; color: #955b60; font-size: 7px; font-weight: 700; letter-spacing: .14em; }
.gw-team-group > header h3 { margin: 0; color: #eee; font: 600 16px/1.2 var(--font-display); }
.gw-team-group > header > span {
	display: grid;
	place-items: center;
	width: 29px;
	height: 29px;
	color: #e8d6b3;
	border: 1px solid rgba(199,170,120,.35);
	font: 700 9px/1 var(--font-display);
	transform: rotate(45deg);
}
.gw-team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); }
.gw-team-card { display: grid; grid-template-columns: 94px minmax(0, 1fr); min-height: 154px; background: linear-gradient(145deg, #171719, #0f0f11); }
.gw-team-card__visual {
	display: grid;
	place-items: center;
	overflow: hidden;
	border-right: 1px solid var(--line);
	background: radial-gradient(circle, rgba(146,15,23,.16), transparent 62%), #0b0b0d;
}
.gw-team-card__visual img { display: block; width: 88px; height: 88px; max-width: none; object-fit: contain; image-rendering: pixelated; }
.gw-team-card__visual > span { color: #f04b56; font: 700 25px/1 var(--font-display); }
.gw-team-card__copy { min-width: 0; padding: 17px 15px; }
.gw-team-card__copy > p { margin: 0 0 5px; color: #8f5559; font-size: 7px; font-weight: 700; letter-spacing: .12em; }
.gw-team-card__copy h4 { margin: 0; overflow: hidden; color: #eee; font: 600 14px/1.3 var(--font-display); text-overflow: ellipsis; white-space: nowrap; }
.gw-team-card__copy h4 a { color: #eee; }
.gw-team-card__copy h4 a:hover { color: #f05a64; }
.gw-team-card__copy h4 img { margin-right: 5px; vertical-align: middle; }
.gw-team-status { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; color: #8d8d93; font-size: 8px; font-weight: 700; }
.gw-team-status i { width: 6px; height: 6px; border-radius: 50%; background: #777; }
.gw-team-status.is-online { color: #55d78a; }
.gw-team-status.is-online i { background: #2fd071; box-shadow: 0 0 8px rgba(47,208,113,.5); }
.gw-team-status.is-offline { color: #b9656b; }
.gw-team-status.is-offline i { background: #d91f2b; }
.gw-team-card dl { display: grid; gap: 5px; margin: 12px 0 0; }
.gw-team-card dl > div { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 8px; font-size: 8px; }
.gw-team-card dt { color: #696970; }
.gw-team-card dd { margin: 0; overflow: hidden; color: #aaaab0; text-overflow: ellipsis; white-space: nowrap; }
.gw-team-notice { display: grid; grid-template-columns: 38px minmax(0, 1fr); align-items: center; gap: 14px; padding: 16px 18px; border: 1px solid rgba(199,170,120,.28); background: rgba(199,170,120,.045); }
.gw-team-notice > span { display: grid; place-items: center; width: 32px; height: 32px; color: var(--gold); border: 1px solid rgba(199,170,120,.38); font: 700 12px/1 var(--font-display); transform: rotate(45deg); }
.gw-team-notice strong { color: #dddde0; font: 600 12px/1.3 var(--font-display); }
.gw-team-notice p { margin: 4px 0 0; color: #8f8f95; font-size: 9px; }

/* Gallery */
.gw-gallery-warning {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	margin-bottom: 17px;
	padding: 15px 17px;
	border: 1px solid rgba(199,170,120,.32);
	background: rgba(199,170,120,.055);
}
.gw-gallery-warning > span {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	color: var(--gold);
	border: 1px solid rgba(199,170,120,.4);
	font: 700 12px/1 var(--font-display);
	transform: rotate(45deg);
}
.gw-gallery-warning strong { color: #e1e1e3; font: 600 12px/1.3 var(--font-display); }
.gw-gallery-warning p { margin: 4px 0 0; color: #99999f; font-size: 9px; }

.gw-gallery-form {
	margin-bottom: 18px;
	overflow: hidden;
	border: 1px solid #442025;
	background: linear-gradient(145deg, rgba(120,12,19,.11), #111113 52%);
}
.gw-gallery-form > header { padding: 15px 18px; border-bottom: 1px solid var(--line-red); }
.gw-gallery-form > header span { color: #a65f64; font-size: 7px; font-weight: 700; letter-spacing: .15em; }
.gw-gallery-form > header h3 { margin: 4px 0 0; color: #eee; font: 600 16px/1.25 var(--font-display); }
.gw-gallery-form form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 18px; }
.gw-gallery-form label > span { display: block; margin-bottom: 7px; color: #99999f; font-size: 8px; font-weight: 700; }
.gw-gallery-form input, .gw-gallery-form textarea { width: 100%; }
.gw-gallery-form__comment { grid-column: 1 / -1; }
.gw-gallery-form__actions { grid-column: 1 / -1; display: flex; justify-content: flex-end; gap: 10px; }

.gw-gallery-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 13px;
	padding: 13px 15px;
	border: 1px solid var(--line);
	background: #111113;
}
.gw-gallery-toolbar small, .gw-gallery-toolbar strong { display: block; }
.gw-gallery-toolbar small { margin-bottom: 3px; color: #8d5559; font-size: 7px; font-weight: 700; letter-spacing: .13em; }
.gw-gallery-toolbar strong { color: #dddde0; font: 600 13px/1.2 var(--font-display); }
.gw-gallery-toolbar p { margin: 0; color: #77777d; font-size: 9px; }
.gw-gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; }
.gw-gallery-card {
	display: flex;
	min-width: 0;
	overflow: hidden;
	flex-direction: column;
	border: 1px solid var(--line);
	background: linear-gradient(145deg, #18181b, #0f0f11);
	transition: border-color .18s ease, transform .18s ease;
}
.gw-gallery-card:hover { border-color: #552128; transform: translateY(-2px); }
.gw-gallery-card.is-hidden-entry { opacity: .62; border-style: dashed; }
.gw-gallery-card__image {
	position: relative;
	display: block;
	aspect-ratio: 17 / 11;
	overflow: hidden;
	border-bottom: 1px solid var(--line-red);
	background: #08080a;
}
.gw-gallery-card__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0,0,0,.6), transparent 52%);
	pointer-events: none;
}
.gw-gallery-card__image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.gw-gallery-card:hover .gw-gallery-card__image img { transform: scale(1.04); }
.gw-gallery-card__image > span {
	position: absolute;
	z-index: 1;
	right: 11px;
	bottom: 9px;
	color: #eee;
	font-size: 7px;
	font-weight: 700;
	letter-spacing: .11em;
}
.gw-gallery-card__copy { min-width: 0; flex: 1; padding: 14px; }
.gw-gallery-hidden { display: inline-block; margin-bottom: 6px; color: #d8a24a; font-size: 7px; font-weight: 700; letter-spacing: .1em; }
.gw-gallery-card__copy h3 { margin: 0; overflow: hidden; color: #e1e1e4; font: 600 12px/1.4 var(--font-display); text-overflow: ellipsis; white-space: nowrap; }
.gw-gallery-card__copy p { margin: 8px 0 0; color: #707077; font-size: 8px; }
.gw-gallery-card__copy p strong { color: #a9a9af; }
.gw-gallery-admin { display: flex; align-items: center; flex-wrap: wrap; gap: 5px; padding: 9px 12px 12px; border-top: 1px solid var(--line); }
.gw-gallery-admin form { margin: 0; }
.gw-gallery-admin a, .gw-gallery-admin button {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 4px 7px;
	color: #99999f;
	border: 1px solid #343439;
	background: #121214;
	cursor: pointer;
	font-size: 7px;
}
.gw-gallery-admin a:hover, .gw-gallery-admin button:hover { color: #fff; border-color: #65151b; }
.gw-gallery-admin .is-danger { color: #df5962; }

.gw-gallery-navigation {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 12px;
	margin-bottom: 13px;
}
.gw-gallery-navigation a { width: max-content; padding: 9px 12px; color: #bdbdc2; border: 1px solid var(--line); background: #111113; font-size: 8px; font-weight: 700; }
.gw-gallery-navigation a:hover { color: #fff; border-color: #63151b; }
.gw-gallery-navigation .is-back { justify-self: center; color: #ed505a; }
.gw-gallery-navigation a:last-child { justify-self: end; }
.gw-gallery-view { overflow: hidden; border: 1px solid var(--line); background: #0b0b0d; }
.gw-gallery-view__image { display: grid; place-items: center; min-height: 360px; padding: 18px; background: radial-gradient(circle, rgba(113,10,17,.12), transparent 60%), #08080a; }
.gw-gallery-view__image img { display: block; max-width: 100%; max-height: 650px; object-fit: contain; box-shadow: 0 18px 55px rgba(0,0,0,.45); }
.gw-gallery-view footer { display: grid; grid-template-columns: minmax(0, 1fr) minmax(120px, auto) auto; align-items: center; gap: 18px; padding: 16px 18px; border-top: 1px solid var(--line-red); background: #121214; }
.gw-gallery-view footer > div { min-width: 0; }
.gw-gallery-view footer small, .gw-gallery-view footer strong { display: block; }
.gw-gallery-view footer small { margin-bottom: 4px; color: #8c5559; font-size: 7px; font-weight: 700; letter-spacing: .12em; }
.gw-gallery-view footer strong { overflow: hidden; color: #d1d1d5; font: 600 10px/1.4 var(--font-display); text-overflow: ellipsis; }
.gw-gallery-notfound { padding: 42px 22px; border: 1px solid var(--line); background: #111113; text-align: center; }
.gw-gallery-notfound > div { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 22px; color: var(--red-bright); border: 1px solid #631016; background: #160d0f; font: 600 18px/1 var(--font-display); transform: rotate(45deg); }
.gw-gallery-notfound > div span { transform: rotate(-45deg); }
.gw-gallery-notfound h2 { margin: 0 0 8px; color: #eee; font: 600 22px/1.2 var(--font-display); }
.gw-gallery-notfound > p:not(.gw-kicker) { margin: 0 0 22px; color: var(--muted); }

/* Forum */
.gw-forum-breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin-bottom: 17px; color: #66666d; font-size: 8px; }
.gw-forum-breadcrumbs a { color: #a7a7ac; }
.gw-forum-breadcrumbs a:hover { color: #f0525c; }
.gw-forum-breadcrumbs strong { min-width: 0; overflow: hidden; color: #d1d1d5; text-overflow: ellipsis; white-space: nowrap; }
.gw-forum-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-bottom: 14px; border: 1px solid var(--line); background: var(--line); }
.gw-forum-summary > div { padding: 14px 17px; background: #111113; }
.gw-forum-summary small, .gw-forum-summary strong { display: block; }
.gw-forum-summary small { margin-bottom: 5px; color: #8d555a; font-size: 7px; font-weight: 700; letter-spacing: .13em; }
.gw-forum-summary strong { color: #eee; font: 600 18px/1 var(--font-display); }

.gw-forum-board-form { margin-bottom: 17px; overflow: hidden; border: 1px solid #3a2124; background: #111113; }
.gw-forum-board-form > summary { display: grid; grid-template-columns: 28px minmax(0, 1fr) 22px; align-items: center; gap: 11px; min-height: 49px; padding: 9px 15px; cursor: pointer; list-style: none; }
.gw-forum-board-form > summary::-webkit-details-marker { display: none; }
.gw-forum-board-form > summary > span { color: #df3a45; }
.gw-forum-board-form > summary strong { color: #cccdd1; font: 600 11px/1.3 var(--font-display); }
.gw-forum-board-form > summary i { color: #d83a45; font: normal 17px/1 var(--font-display); transition: transform .18s ease; }
.gw-forum-board-form[open] > summary { border-bottom: 1px solid var(--line-red); background: rgba(136,13,21,.08); }
.gw-forum-board-form[open] > summary i { transform: rotate(45deg); }
.gw-forum-board-form > form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 17px; }
.gw-forum-board-form label > span, .gw-forum-move label > span { display: block; margin-bottom: 7px; color: #929299; font-size: 8px; font-weight: 700; }
.gw-forum-board-form input, .gw-forum-board-form textarea, .gw-forum-board-form select { width: 100%; }
.gw-forum-board-form .is-wide { grid-column: 1 / -1; }
.gw-forum-form-actions { display: flex; justify-content: flex-end; gap: 10px; }
.gw-forum-board-form .gw-forum-form-actions { grid-column: 1 / -1; }

.gw-forum-boards, .gw-forum-threads { display: grid; gap: 9px; }
.gw-forum-board {
	display: grid;
	grid-template-columns: 48px minmax(150px, 1fr) 130px minmax(135px, .75fr);
	align-items: center;
	gap: 14px;
	min-height: 98px;
	padding: 13px 15px;
	border: 1px solid var(--line);
	background: linear-gradient(145deg, #171719, #0f0f11);
}
.gw-forum-board.is-hidden-entry { opacity: .62; border-style: dashed; }
.gw-forum-board__icon, .gw-forum-thread__icon {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	color: #e23e49;
	border: 1px solid #65141a;
	background: #170d0f;
	transform: rotate(45deg);
}
.gw-forum-board__icon > span { transform: rotate(-45deg); }
.gw-forum-board__copy { min-width: 0; }
.gw-forum-board__copy > small { color: #d4a557; font-size: 7px; font-weight: 700; letter-spacing: .1em; }
.gw-forum-board__copy h3, .gw-forum-thread__copy h3 { margin: 3px 0 4px; font: 600 14px/1.3 var(--font-display); }
.gw-forum-board__copy h3 a, .gw-forum-thread__copy h3 a { color: #eee; }
.gw-forum-board__copy h3 a:hover, .gw-forum-thread__copy h3 a:hover { color: #f0525c; }
.gw-forum-board__copy p, .gw-forum-thread__copy p { margin: 0; overflow: hidden; color: #818188; font-size: 9px; line-height: 1.45; text-overflow: ellipsis; white-space: nowrap; }
.gw-forum-board dl, .gw-forum-thread dl { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 0; background: var(--line); }
.gw-forum-board dl > div, .gw-forum-thread dl > div { min-width: 0; padding: 9px 7px; background: #101012; text-align: center; }
.gw-forum-board dt, .gw-forum-thread dt { color: #68686f; font-size: 7px; }
.gw-forum-board dd, .gw-forum-thread dd { margin: 4px 0 0; color: #d0d0d4; font: 600 12px/1 var(--font-display); }
.gw-forum-board__last, .gw-forum-thread__last { min-width: 0; padding-left: 13px; border-left: 1px solid var(--line); }
.gw-forum-board__last small, .gw-forum-thread__last small { display: block; margin-bottom: 5px; color: #75474b; font-size: 6px; font-weight: 700; letter-spacing: .1em; }
.gw-forum-board__last time, .gw-forum-thread__last time { display: block; color: #b9b9bd; font-size: 8px; }
.gw-forum-board__last span, .gw-forum-thread__last span { display: block; margin-top: 3px; overflow: hidden; color: #73737a; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.gw-forum-admin, .gw-forum-thread__admin { grid-column: 1 / -1; display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 5px; padding-top: 9px; border-top: 1px solid var(--line); }
.gw-forum-admin form, .gw-forum-thread__admin form, .gw-forum-remove { display: inline-flex; margin: 0; }
.gw-forum-admin button, .gw-forum-thread__admin a, .gw-forum-remove button {
	min-height: 26px;
	padding: 4px 8px;
	color: #99999f;
	border: 1px solid #343439;
	background: #121214;
	cursor: pointer;
	font-size: 7px;
}
.gw-forum-admin button:hover, .gw-forum-thread__admin a:hover, .gw-forum-remove button:hover { color: #fff; border-color: #65151b; }
.gw-forum-admin .is-danger, .gw-forum-remove button { color: #df5962; }

.gw-forum-board-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 13px; padding: 13px 15px; border: 1px solid var(--line); background: #111113; }
.gw-forum-board-toolbar small, .gw-forum-board-toolbar strong { display: block; }
.gw-forum-board-toolbar small { color: #815055; font-size: 7px; font-weight: 700; letter-spacing: .12em; }
.gw-forum-board-toolbar strong { margin-top: 4px; color: #eee; font: 600 18px/1 var(--font-display); }
.gw-forum-closed { color: #aa686d; font-size: 8px; font-weight: 700; }
.gw-forum-thread {
	display: grid;
	grid-template-columns: 42px minmax(170px, 1fr) 145px minmax(135px, .72fr);
	align-items: center;
	gap: 13px;
	min-height: 92px;
	padding: 13px 15px;
	border: 1px solid var(--line);
	background: linear-gradient(145deg, #171719, #101012);
}
.gw-forum-thread__icon { width: 31px; height: 31px; font-size: 8px; }
.gw-forum-thread__copy { min-width: 0; }
.gw-forum-thread__copy small { display: block; margin-top: 6px; color: #67676e; font-size: 8px; }
.gw-forum-pages, .gw-forum-page-links { display: flex; align-items: center; flex-wrap: wrap; gap: 5px; margin-top: 13px; }
.gw-forum-pages a, .gw-forum-page-links a, .gw-forum-page-links b { display: grid; place-items: center; min-width: 30px; height: 30px; padding: 0 8px; color: #99999f; border: 1px solid var(--line); background: #111113; font-size: 8px; }
.gw-forum-pages a.is-active, .gw-forum-page-links b { color: #fff; border-color: #a51821; background: #8f1018; }
.gw-forum-page-links { margin: 0 0 12px; padding: 10px 12px; border: 1px solid var(--line); background: #101012; }
.gw-forum-page-links.is-bottom { margin: 12px 0 0; }
.gw-forum-page-links > span { margin-right: 5px; color: #815055; font-size: 7px; font-weight: 700; letter-spacing: .12em; }

.gw-forum-thread-hero { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 12px; padding: 20px; border: 1px solid #452126; background: linear-gradient(115deg, rgba(143,14,23,.18), #121214 62%); }
.gw-forum-thread-hero p { margin: 0 0 5px; color: #9b5e63; font-size: 7px; font-weight: 700; letter-spacing: .15em; }
.gw-forum-thread-hero h2 { margin: 0; color: #eee; font: 600 21px/1.25 var(--font-display); overflow-wrap: anywhere; }
.gw-forum-thread-hero span { display: block; margin-top: 6px; color: #7f7f86; font-size: 9px; }
.gw-forum-posts { display: grid; gap: 11px; }
.gw-forum-post { display: grid; grid-template-columns: 165px minmax(0, 1fr); overflow: hidden; border: 1px solid var(--line); background: #111113; }
.gw-forum-post__author { padding: 17px 14px; border-right: 1px solid var(--line-red); background: linear-gradient(145deg, rgba(126,12,20,.1), #0e0e10 62%); text-align: center; }
.gw-forum-post__author h3 { margin: 0 0 10px; font: 600 13px/1.3 var(--font-display); }
.gw-forum-post__author h3 a { color: #eee; }
.gw-forum-post__outfit { display: grid; place-items: center; width: 88px; height: 88px; margin: 0 auto 10px; overflow: hidden; border: 1px solid #4c171b; background: radial-gradient(circle, rgba(147,15,24,.17), transparent 62%), #09090b; }
.gw-forum-post__outfit img { display: block; width: 88px; height: 88px; max-width: none; object-fit: contain; image-rendering: pixelated; }
.gw-forum-post__author > strong { display: block; margin-bottom: 9px; color: #b86f74; font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }
.gw-forum-post__author dl { display: grid; gap: 1px; margin: 0; background: var(--line); text-align: left; }
.gw-forum-post__author dl > div { display: flex; justify-content: space-between; gap: 7px; padding: 6px 8px; background: #0e0e10; font-size: 8px; }
.gw-forum-post__author dt { color: #66666d; }
.gw-forum-post__author dd { margin: 0; color: #bcbcc1; }
.gw-forum-post__author > p { margin: 10px 0 0; color: #77777d; font-size: 8px; line-height: 1.45; }
.gw-forum-post__main { display: flex; min-width: 0; flex-direction: column; }
.gw-forum-post__main > header { display: flex; align-items: center; justify-content: space-between; min-height: 39px; padding: 8px 13px; border-bottom: 1px solid var(--line); background: #151517; }
.gw-forum-post__main > header time { color: #75757c; font-size: 8px; }
.gw-forum-post__main > header a { color: #b46a70; font-size: 8px; }
.gw-forum-post__content { min-height: 140px; padding: 19px; color: #c0c0c5; font-size: 11px; line-height: 1.7; overflow-wrap: anywhere; }
.gw-forum-post__content img { max-width: 100%; height: auto; }
.gw-forum-post__content blockquote { margin: 13px 0; padding: 12px 14px; color: #aaaab0; border-left: 2px solid #9a1720; background: #0d0d0f; }
.gw-forum-post__content .bb-code-block { max-width: 100%; padding: 13px; overflow-x: auto; border: 1px solid #303035; background: #0b0b0d; white-space: pre-wrap; }
.gw-forum-post__main > footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding: 9px 12px; border-top: 1px solid var(--line); background: #0e0e10; }
.gw-forum-post__main > footer > div { color: #66666d; font-size: 7px; }
.gw-forum-post__main > footer nav { display: flex; align-items: center; flex-wrap: wrap; gap: 5px; }
.gw-forum-post__main > footer nav > a, .gw-forum-post__main > footer nav button { min-height: 27px; padding: 5px 8px; color: #aaaab0; border: 1px solid #35353a; background: #141416; cursor: pointer; font-size: 7px; }
.gw-forum-post__main > footer nav > a:hover { color: #fff; border-color: #65151b; }
.gw-forum-reply-bottom { display: flex; justify-content: flex-end; margin-top: 13px; }

.gw-forum-post-form { overflow: hidden; border: 1px solid var(--line); background: #101012; }
.gw-forum-editor { display: grid; grid-template-columns: minmax(0, 1fr) 190px; }
.gw-forum-editor__fields { display: grid; gap: 14px; padding: 19px; }
.gw-forum-editor__fields > label > span { display: block; margin-bottom: 7px; color: #98989e; font-size: 8px; font-weight: 700; }
.gw-forum-editor__fields input[type="text"], .gw-forum-editor__fields select, .gw-forum-editor__fields textarea { width: 100%; }
.gw-forum-editor__fields > label > small { display: block; margin-top: 5px; color: #66666d; font-size: 7px; }
.gw-forum-editor__options { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 3px; }
.gw-forum-editor__options label { display: inline-flex; align-items: center; gap: 7px; color: #8d8d93; font-size: 8px; }
.gw-forum-editor__help { padding: 19px 15px; border-left: 1px solid var(--line-red); background: linear-gradient(145deg, rgba(132,12,20,.1), #0d0d0f 55%); }
.gw-forum-editor__help p { margin: 0 0 5px; color: #955a5f; font-size: 7px; font-weight: 700; letter-spacing: .13em; }
.gw-forum-editor__help h4 { margin: 0 0 13px; color: #dddde0; font: 600 12px/1.3 var(--font-display); }
.gw-forum-editor__help code { display: block; margin-bottom: 5px; padding: 6px 7px; color: #b5b5ba; border: 1px solid #2e2e33; background: #0a0a0c; font-size: 7px; }
.gw-forum-editor__help > small { display: block; margin-top: 13px; color: #66666d; font-size: 7px; line-height: 1.5; }
.gw-forum-post-form > .gw-forum-form-actions { padding: 14px 18px; border-top: 1px solid var(--line); background: #0d0d0f; }
.gw-forum-recent { margin-top: 16px; border: 1px solid var(--line); background: #101012; }
.gw-forum-recent > header { padding: 13px 16px; border-bottom: 1px solid var(--line-red); }
.gw-forum-recent > header p { margin: 0 0 3px; color: #90565b; font-size: 7px; font-weight: 700; letter-spacing: .13em; }
.gw-forum-recent > header h3 { margin: 0; color: #dddde0; font: 600 14px/1.3 var(--font-display); }
.gw-forum-recent article { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 13px; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.gw-forum-recent article:last-child { border-bottom: 0; }
.gw-forum-recent article > strong { color: #b46b70; font-size: 9px; }
.gw-forum-recent article > div { min-width: 0; color: #99999f; font-size: 9px; overflow-wrap: anywhere; }
.gw-forum-move { border: 1px solid var(--line); background: #111113; }
.gw-forum-move > dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 0; background: var(--line); }
.gw-forum-move > dl > div { padding: 14px 16px; background: #101012; }
.gw-forum-move dt { color: #815055; font-size: 7px; font-weight: 700; letter-spacing: .11em; }
.gw-forum-move dd { margin: 6px 0 0; color: #d0d0d4; font: 600 11px/1.4 var(--font-display); }
.gw-forum-move > form { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 15px; padding: 18px; }
.gw-forum-move select { width: 100%; }
.gw-forum-lightbox { position: fixed; z-index: 100; inset: 0; padding: 40px; background: rgba(0,0,0,.92); }
.gw-forum-lightbox[hidden] { display: none !important; }
.gw-forum-lightbox img { display: block; width: 100%; height: 100%; object-fit: contain; }
.gw-forum-lightbox button { position: absolute; z-index: 1; top: 14px; right: 18px; width: 38px; height: 38px; color: #fff; border: 1px solid #842028; background: #4e0b10; cursor: pointer; font-size: 22px; }
.forum-image { cursor: zoom-in; }
.gw-forum-notice { padding: 42px 22px; border: 1px solid var(--line); background: #111113; text-align: center; }
.gw-forum-notice > div { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 22px; color: var(--red-bright); border: 1px solid #631016; background: #160d0f; font: 600 18px/1 var(--font-display); transform: rotate(45deg); }
.gw-forum-notice > div span { transform: rotate(-45deg); }
.gw-forum-notice h2 { margin: 0 0 8px; color: #eee; font: 600 22px/1.2 var(--font-display); }
.gw-forum-notice > p:not(.gw-kicker) { max-width: 470px; margin: 0 auto 22px; color: var(--muted); }

/* Records and HTTP errors */
.gw-records-unsupported {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	align-items: center;
	gap: 15px;
	padding: 18px;
	border: 1px solid rgba(199,170,120,.32);
	background: rgba(199,170,120,.055);
}
.gw-records-unsupported > span {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	color: var(--gold);
	border: 1px solid rgba(199,170,120,.42);
	font: 700 13px/1 var(--font-display);
	transform: rotate(45deg);
}
.gw-records-unsupported strong { color: #e1e1e3; font: 600 13px/1.3 var(--font-display); }
.gw-records-unsupported p { margin: 5px 0 0; color: #929298; font-size: 9px; }
.gw-records-unsupported code { color: #d3b578; }
.gw-records-summary { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 1px; margin-bottom: 15px; border: 1px solid var(--line); background: var(--line); }
.gw-records-summary > div { position: relative; min-width: 0; padding: 17px 19px; overflow: hidden; background: #111113; }
.gw-records-summary > div.is-best { background: linear-gradient(135deg, rgba(141,13,22,.22), #111113 72%); }
.gw-records-summary > div.is-best::after { content: "◆"; position: absolute; right: 17px; bottom: -10px; color: rgba(217,31,43,.13); font-size: 54px; }
.gw-records-summary small, .gw-records-summary strong, .gw-records-summary span { display: block; }
.gw-records-summary small { margin-bottom: 7px; color: #94595e; font-size: 7px; font-weight: 700; letter-spacing: .13em; }
.gw-records-summary strong { position: relative; z-index: 1; overflow: hidden; color: #eee; font: 600 22px/1 var(--font-display); text-overflow: ellipsis; white-space: nowrap; }
.gw-records-summary span { position: relative; z-index: 1; margin-top: 6px; color: #77777d; font-size: 8px; }
.gw-records-list { overflow: hidden; border: 1px solid var(--line); background: #101012; }
.gw-records-list > header, .gw-record-row { display: grid; grid-template-columns: 90px minmax(0, 1fr) minmax(150px, .8fr); align-items: center; }
.gw-records-list > header { min-height: 39px; color: #6f6f76; border-bottom: 1px solid var(--line-red); background: #18181b; font-size: 7px; font-weight: 700; letter-spacing: .11em; }
.gw-records-list > header span { padding: 9px 15px; }
.gw-record-row { min-height: 61px; border-bottom: 1px solid var(--line); }
.gw-record-row:last-child { border-bottom: 0; }
.gw-record-row:nth-child(odd) { background: rgba(255,255,255,.012); }
.gw-record-row.is-top { background: linear-gradient(90deg, rgba(128,11,19,.1), transparent); }
.gw-record-rank { display: grid; place-items: center; width: 29px; height: 29px; margin-left: 17px; color: #a6a6ac; border: 1px solid #38383d; background: #111113; font: 700 9px/1 var(--font-display); }
.gw-record-row.is-top .gw-record-rank { color: #f0d9a9; border-color: rgba(199,170,120,.45); box-shadow: 0 7px 20px rgba(0,0,0,.3); }
.gw-record-row > div strong, .gw-record-row > div small { display: inline; }
.gw-record-row > div strong { color: #eee; font: 600 15px/1 var(--font-display); }
.gw-record-row > div small { margin-left: 5px; color: #77777d; font-size: 8px; }
.gw-record-row time { padding: 8px 15px; border-left: 1px solid var(--line); }
.gw-record-row time strong, .gw-record-row time span { display: block; }
.gw-record-row time strong { color: #b9b9be; font-size: 9px; }
.gw-record-row time span { margin-top: 3px; color: #696970; font-size: 8px; }

.gw-error-page { padding: 48px 24px; border: 1px solid var(--line); background: radial-gradient(circle at 50% 20%, rgba(135,12,20,.12), transparent 35%), #101012; text-align: center; }
.gw-error-page__code { display: grid; place-items: center; width: 82px; height: 82px; margin: 0 auto 28px; color: #f2dfe0; border: 1px solid #84151d; background: linear-gradient(145deg, #3d080c, #100c0e 68%); box-shadow: 0 16px 45px rgba(0,0,0,.4); transform: rotate(45deg); }
.gw-error-page__code span { font: 700 20px/1 var(--font-display); transform: rotate(-45deg); }
.gw-error-page h1 { margin: 0 0 10px; color: #f0f0f2; font: 600 clamp(24px, 4vw, 34px)/1.2 var(--font-display); }
.gw-error-page > p:not(.gw-kicker) { max-width: 510px; margin: 0 auto 22px; color: #929298; font-size: 11px; }
.gw-error-page__detail { max-width: 620px; margin: 0 auto 24px; padding: 13px 16px; border: 1px solid #303035; background: #0b0b0d; text-align: left; }
.gw-error-page__detail small { display: block; margin-bottom: 5px; color: #8e555a; font-size: 7px; font-weight: 700; letter-spacing: .12em; }
.gw-error-page__detail code { display: block; overflow-wrap: anywhere; color: #b8b8bd; font-size: 9px; }
.gw-error-page nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 9px; }

/* World stats, tables and rankings */
.gw-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-bottom: 18px;
}

.gw-stat {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 78px;
	padding: 14px;
	border: 1px solid var(--line);
	background: linear-gradient(145deg, #19191c, #111113);
}

.gw-stat > .status-dot { flex: 0 0 9px; }
.gw-stat__symbol { display: grid; place-items: center; flex: 0 0 31px; height: 31px; color: var(--red-bright); border: 1px solid #571017; background: #160d0f; }
.gw-stat div { min-width: 0; }
.gw-stat small { display: block; margin-bottom: 4px; color: #77777d; font-size: 8px; text-transform: uppercase; letter-spacing: .09em; }
.gw-stat strong { display: block; overflow: hidden; color: #e7e7e9; font: 600 12px/1.3 var(--font-display); text-overflow: ellipsis; }

.gw-vocations { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 9px; }
.gw-vocations > div { display: flex; flex-direction: column; align-items: center; padding: 16px 8px; border: 1px solid var(--line); background: rgba(255,255,255,.015); text-align: center; }
.gw-vocations > div > span { margin-bottom: 8px; color: var(--red-bright); font-size: 18px; }
.gw-vocations strong { color: #fff; font: 600 20px/1 var(--font-display); }
.gw-vocations small { margin-top: 6px; color: #85858b; font-size: 9px; }

.gw-table-wrap { width: 100%; overflow-x: auto; }
.gw-table { width: 100%; min-width: 560px; border-collapse: collapse; }
.gw-table th,
.gw-table td {
	height: 48px;
	padding: 9px 12px;
	border: 0;
	border-bottom: 1px solid var(--line);
	background-color: transparent !important;
	vertical-align: middle;
}

.gw-table th {
	height: 38px;
	color: #77777d;
	background: rgba(255,255,255,.018) !important;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.gw-table th a { color: #8c8c92; }
.gw-table tbody tr { transition: background .16s ease; }
.gw-table tbody tr:hover { background: rgba(217,31,43,.055); }
.gw-table tbody tr:last-child td { border-bottom: 0; }
.gw-table--account-characters { min-width: 460px; }
.gw-table--account-characters th:last-child,
.gw-table--account-characters td:last-child { width: 54px; text-align: right; }
.gw-table__flag { width: 30px; }
.gw-table__outfit {
	width: 82px;
	min-width: 82px;
	text-align: center;
}

.gw-outfit-box {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 64px;
	height: 64px;
	overflow: hidden;
	border: 1px solid rgba(217,31,43,.22);
	background:
		radial-gradient(circle at center, rgba(217,31,43,.1), transparent 62%),
		#0d0d0f;
	box-shadow: inset 0 0 16px rgba(0,0,0,.42);
	vertical-align: middle;
}

.gw-table__outfit img {
	display: block;
	max-width: 64px;
	max-height: 64px;
	margin-inline: auto;
	object-fit: contain;
	image-rendering: pixelated;
}

.gw-table--ranking .gw-table__outfit img {
	position: static !important;
	display: block;
	width: 64px;
	height: 64px;
	max-width: none;
	max-height: none;
	margin: 0 !important;
	object-fit: contain;
	image-rendering: pixelated;
	transform: translate(-10px, -10px) !important;
}

.gw-table--ranking tbody tr {
	height: 82px;
}

.gw-table--ranking tbody td {
	vertical-align: middle;
}
.gw-level { display: inline-grid; place-items: center; min-width: 31px; height: 25px; padding: 0 7px; color: #f0d9a9; border: 1px solid rgba(199,170,120,.25); background: rgba(199,170,120,.06); font-weight: 700; }
.gw-player-link { color: #e6e6e9; font-weight: 600; }
.gw-player-link span.is-online { color: #49d984; }
.gw-player-link span.is-offline { color: #b7b7bc; }
.gw-player-link + small, .gw-table td > small { display: block; margin-top: 2px; color: #77777d; }

.gw-filter-bar {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	align-items: end;
	gap: 12px;
	margin-bottom: 16px;
	padding: 16px;
	border: 1px solid var(--line);
	background: #121214;
}

.gw-filter-bar label { display: flex; flex-direction: column; gap: 6px; }
.gw-filter-bar label > span, .gw-filter-bar__meta > span { color: #77777d; font-size: 8px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.gw-filter-bar select { width: 100%; min-height: 40px; }
.gw-filter-bar__meta { min-width: 74px; padding: 0 8px 4px; text-align: center; }
.gw-filter-bar__meta strong { display: block; color: #fff; font: 600 20px/1.2 var(--font-display); }

.gw-rank { display: grid; place-items: center; width: 29px; height: 29px; color: #aaaab0; border: 1px solid var(--line); background: #111113; font-weight: 700; }
.is-podium--1 .gw-rank { color: #f2d06f; border-color: rgba(242,208,111,.45); box-shadow: 0 0 15px rgba(242,208,111,.12); }
.is-podium--2 .gw-rank { color: #d4d9df; border-color: rgba(212,217,223,.35); }
.is-podium--3 .gw-rank { color: #d59b68; border-color: rgba(213,155,104,.35); }
.gw-pagination { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; margin-top: 14px; color: #77777d; font-size: 9px; }
.gw-pagination a { width: max-content; padding: 9px 12px; color: #d0d0d3; border: 1px solid var(--line); background: #121214; }
.gw-pagination a:last-child { justify-self: end; }

/* Lost account */
.gw-recovery {
	display: grid;
	grid-template-columns: 270px minmax(0, 1fr);
	align-items: start;
	gap: 20px;
}

.gw-recovery-aside {
	position: sticky;
	top: 18px;
	padding: 25px 22px;
	border: 1px solid #42151a;
	background: radial-gradient(circle at 15% 5%, rgba(177,20,29,.16), transparent 25%), linear-gradient(155deg, rgba(116,11,18,.13), transparent 45%), #101012;
}

.gw-recovery-aside__crest {
	display: grid;
	place-items: center;
	width: 46px;
	height: 52px;
	margin-bottom: 20px;
	color: #fff;
	border: 1px solid #94151e;
	background: #180c0f;
	clip-path: polygon(50% 0,93% 20%,88% 75%,50% 100%,12% 75%,7% 20%);
	font: 700 16px/1 var(--font-display);
}

.gw-recovery-aside h2 { margin: 7px 0 0; color: #ededf0; font: 600 23px/1.18 var(--font-display); }
.gw-recovery-aside > p:not(.gw-kicker) { margin: 12px 0 0; color: #a4a4aa; font-size: 10px; line-height: 1.65; }
.gw-recovery-aside ol { margin: 24px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.gw-recovery-aside li { display: grid; grid-template-columns: 29px minmax(0, 1fr); align-items: center; gap: 11px; min-height: 64px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.gw-recovery-aside li > span { display: grid; place-items: center; width: 26px; height: 26px; color: #74747a; border: 1px solid #414147; background: #0c0c0e; font: 700 7px/1 var(--font-display); transform: rotate(45deg); }
.gw-recovery-aside li strong,
.gw-recovery-aside li small { display: block; }
.gw-recovery-aside li strong { color: #aaaab0; font-size: 10px; }
.gw-recovery-aside li small { margin-top: 4px; color: #77777d; font-size: 8px; line-height: 1.4; }
.gw-recovery-aside li.is-active > span { color: #fff; border-color: #c21c27; background: #8d1119; box-shadow: 0 0 10px rgba(210,29,41,.2); }
.gw-recovery-aside li.is-active strong { color: #fff; }
.gw-recovery-aside li.is-active small { color: #b9797e; }

.gw-recovery-aside__tip {
	display: grid;
	grid-template-columns: 25px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	margin-top: 17px;
	padding: 13px;
	border: 1px solid rgba(199,170,120,.22);
	background: rgba(199,170,120,.045);
}

.gw-recovery-aside__tip > span { color: #d0ae69; text-align: center; }
.gw-recovery-aside__tip p { margin: 0; }
.gw-recovery-aside__tip strong,
.gw-recovery-aside__tip small { display: block; }
.gw-recovery-aside__tip strong { color: #c8c8cd; font-size: 9px; }
.gw-recovery-aside__tip small { margin-top: 4px; color: #85858b; font-size: 8px; line-height: 1.45; }

.gw-recovery-panel {
	overflow: hidden;
	min-width: 0;
	border: 1px solid #38383e;
	background: linear-gradient(145deg, rgba(24,24,27,.94), rgba(12,12,14,.98));
}

.gw-recovery-panel > header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 17px;
	min-height: 75px;
	padding: 15px 21px;
	border-bottom: 1px solid #48141a;
	background: linear-gradient(90deg, rgba(145,15,23,.13), transparent 65%);
}

.gw-recovery-panel > header h2 { margin: 4px 0 0; color: #ededf0; font: 600 20px/1.2 var(--font-display); }
.gw-recovery-panel > header > span { color: #a61922; font-size: 9px; }
.gw-recovery-form { display: grid; gap: 19px; padding: 25px; }
.gw-recovery-form .gw-field { margin: 0; }
.gw-recovery-form .gw-field > span { color: #c8c8cd; font-size: 11px; }
.gw-recovery-form .gw-field input { width: 100%; min-height: 48px; }
.gw-recovery-form .gw-field small { color: #929298; font-size: 9px; }
.gw-recovery-form input[readonly] { color: #9a9aa0; background: #111113; }

.gw-recovery-alert {
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr);
	align-items: center;
	gap: 11px;
	margin: 18px 22px 0;
	padding: 12px 14px;
	border: 1px solid #5b171d;
	background: linear-gradient(90deg, rgba(182,20,30,.14), #111113 68%);
}

.gw-recovery-alert > span { display: grid; place-items: center; width: 24px; height: 24px; color: #fff; background: #a81520; font-weight: 700; transform: rotate(45deg); }
.gw-recovery-alert p { margin: 0; color: #e0a2a7; font-size: 10px; line-height: 1.5; }
.gw-recovery-alert.is-success { border-color: rgba(62,190,116,.3); background: linear-gradient(90deg, rgba(45,164,95,.12), #111113 68%); }
.gw-recovery-alert.is-success > span { background: #26844f; }
.gw-recovery-alert.is-success p { color: #9ed8b7; }

.gw-recovery-methods { min-width: 0; margin: 0; padding: 0; border: 0; }
.gw-recovery-methods legend { margin-bottom: 9px; color: #c8c8cd; font-size: 11px; font-weight: 600; }
.gw-recovery-methods label { position: relative; display: block; margin-bottom: 9px; cursor: pointer; }
.gw-recovery-methods label:last-child { margin-bottom: 0; }
.gw-recovery-methods input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.gw-recovery-methods label > span { display: grid; grid-template-columns: 39px minmax(0, 1fr); align-items: center; min-height: 68px; padding: 11px 14px; color: #b5b5ba; border: 1px solid #36363c; background: #0e0e10; }
.gw-recovery-methods label > span > b { grid-row: 1 / 3; display: grid; place-items: center; width: 30px; height: 30px; color: #ce3440; border: 1px solid #64151a; background: #170d0f; font: 700 10px/1 var(--font-display); transform: rotate(45deg); }
.gw-recovery-methods strong,
.gw-recovery-methods small { display: block; }
.gw-recovery-methods strong { color: #d6d6da; font-size: 10px; }
.gw-recovery-methods small { margin-top: 5px; color: #85858b; font-size: 8px; line-height: 1.45; }
.gw-recovery-methods input:checked + span { color: #fff; border-color: #951720; background: linear-gradient(90deg, rgba(185,21,31,.14), #111113 70%); }
.gw-recovery-methods input:checked + span > b { color: #fff; border-color: #d02934; background: #99131c; box-shadow: 0 0 10px rgba(210,29,41,.25); }
.gw-recovery-methods input:focus-visible + span { outline: 2px solid rgba(236,53,66,.4); outline-offset: 2px; }

.gw-recovery-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin: 3px -25px -25px;
	padding: 17px 25px;
	border-top: 1px solid var(--line);
	background: rgba(0,0,0,.14);
}

.gw-recovery-result { padding: 42px 27px; text-align: center; }
.gw-recovery-result > span { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 20px; color: #75e1a6; border: 1px solid rgba(74,210,135,.45); background: rgba(47,164,97,.08); font: 700 18px/1 var(--font-display); transform: rotate(45deg); }
.gw-recovery-result h3 { margin: 0; color: #ededf0; font: 600 22px/1.2 var(--font-display); }
.gw-recovery-result p { max-width: 500px; margin: 13px auto 21px; color: #a1a1a7; font-size: 10px; line-height: 1.65; }
.gw-recovery-result .form-button,
.gw-recovery-result .gw-button-secondary { display: inline-flex; }
.gw-recovery-result.is-disabled > span { color: #eb4a55; border-color: #86171e; background: rgba(170,18,28,.09); }

/* Commands and experience stages */
.gw-command-search {
	display: grid;
	grid-template-columns: minmax(190px, .9fr) minmax(250px, 1.3fr) 72px;
	align-items: end;
	gap: 18px;
	margin-bottom: 14px;
	padding: 19px;
	border: 1px solid var(--line);
	background: linear-gradient(100deg, rgba(139,15,22,.09), #111113 58%);
}

.gw-command-search h2 { margin: 4px 0 0; color: #ededf0; font: 600 17px/1.2 var(--font-display); }
.gw-command-search > div:first-child > p:last-child { margin: 6px 0 0; color: #96969c; font-size: 9px; }
.gw-command-search label { display: grid; gap: 7px; }
.gw-command-search label > span { color: #9b9ba1; font-size: 8px; font-weight: 700; letter-spacing: .1em; }
.gw-command-search input { width: 100%; min-height: 43px; }
.gw-command-search > div:last-child { padding-bottom: 5px; text-align: center; }
.gw-command-search > div:last-child small,
.gw-command-search > div:last-child strong { display: block; }
.gw-command-search > div:last-child small { color: #77777d; font-size: 7px; font-weight: 700; }
.gw-command-search > div:last-child strong { margin-top: 5px; color: #fff; font: 600 19px/1 var(--font-display); }

.gw-command-panel {
	overflow: hidden;
	border: 1px solid var(--line);
	background: #101012;
}

.gw-command-panel > header,
.gw-stage-panel > header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 17px;
	min-height: 70px;
	padding: 14px 18px;
	border-bottom: 1px solid #451319;
	background: linear-gradient(90deg, rgba(145,15,23,.12), transparent 60%);
}

.gw-command-panel > header h2,
.gw-stage-panel > header h2 { margin: 4px 0 0; color: #ededf0; font: 600 18px/1.2 var(--font-display); }
.gw-command-panel > header > span,
.gw-stage-panel > header > span { color: #b91c25; font: 700 12px/1 var(--font-display); }
.gw-command-content { width: 100%; overflow-x: auto; }
.gw-command-content .myaac-table { width: 100% !important; height: auto !important; margin: 0 !important; border: 0 !important; border-spacing: 0 !important; border-collapse: collapse !important; background: transparent !important; }
.gw-command-content .myaac-table col { width: auto !important; }
.gw-command-content .myaac-table thead td,
.gw-command-content .myaac-table thead th { padding: 13px 16px !important; color: #8d8d93 !important; border: 0 !important; border-bottom: 1px solid #3b3b40 !important; background: #19191c !important; font-size: 8px !important; font-weight: 700; letter-spacing: .09em; text-align: left !important; text-transform: uppercase; }
.gw-command-content .myaac-table tbody tr { background: #101012 !important; transition: background .16s ease; }
.gw-command-content .myaac-table tbody tr:nth-child(even) { background: #121214 !important; }
.gw-command-content .myaac-table tbody tr:hover { background: rgba(203,27,38,.055) !important; }
.gw-command-content .myaac-table tbody td { min-width: 160px; padding: 14px 16px !important; color: #aaaab0 !important; border: 0 !important; border-bottom: 1px solid var(--line) !important; font-size: 10px; line-height: 1.5; text-align: left !important; }
.gw-command-content .myaac-table tbody td:first-child { width: 34%; color: #ef9299 !important; font: 700 11px/1.4 Consolas, monospace; }
.gw-command-content .myaac-table tbody td:first-child em,
.gw-command-content .myaac-table tbody td:first-child strong { color: inherit !important; font-style: normal; }
.gw-command-content .myaac-table tbody tr:last-child td { border-bottom: 0 !important; }
.gw-command-content .myaac-table span { color: inherit !important; }
.gw-command-empty { margin: 0; padding: 26px; color: #99999f; border-top: 1px solid var(--line); text-align: center; }

.gw-command-notice,
.gw-stage-notice {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	align-items: center;
	gap: 15px;
	margin-top: 15px;
	padding: 17px 19px;
	border: 1px solid rgba(199,170,120,.22);
	background: linear-gradient(90deg, rgba(199,170,120,.065), #111113 58%);
}

.gw-command-notice > span,
.gw-stage-notice > span { color: #d0ae69; text-align: center; }
.gw-command-notice strong,
.gw-stage-notice strong { color: #dedee1; font: 600 13px/1.3 var(--font-display); }
.gw-command-notice p:last-child,
.gw-stage-notice p:last-child { margin: 5px 0 0; color: #97979d; font-size: 9px; line-height: 1.5; }

.gw-stage-status {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	align-items: center;
	gap: 17px;
	padding: 23px;
	border: 1px solid rgba(199,170,120,.26);
	background: linear-gradient(90deg, rgba(199,170,120,.07), #111113 62%);
}

.gw-stage-status > span { display: grid; place-items: center; width: 40px; height: 40px; color: #d4b46f; border: 1px solid rgba(199,170,120,.4); font: 700 12px/1 var(--font-display); transform: rotate(45deg); }
.gw-stage-status h2 { margin: 4px 0 0; color: #ededf0; font: 600 19px/1.2 var(--font-display); }
.gw-stage-status p:last-child { margin: 6px 0 0; color: #9d9da3; font-size: 10px; }
.gw-stage-status > strong { color: #e8ca84; font: 600 26px/1 var(--font-display); }
.gw-stage-status.is-error { border-color: #59171d; background: linear-gradient(90deg, rgba(171,18,28,.14), #111113 62%); }
.gw-stage-status.is-error > span { color: #ef4954; border-color: #8f1820; }

.gw-stage-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 15px;
	border: 1px solid var(--line);
	background: var(--line);
	gap: 1px;
}

.gw-stage-summary > div { display: grid; grid-template-columns: 40px minmax(0, 1fr); align-items: center; min-height: 78px; padding: 13px 16px; background: #101012; }
.gw-stage-summary > div > span { grid-row: 1 / 3; color: #bd202a; font: 700 11px/1 var(--font-display); }
.gw-stage-summary small { color: #85858b; font-size: 7px; font-weight: 700; letter-spacing: .1em; }
.gw-stage-summary strong { margin-top: 5px; color: #ededf0; font: 600 15px/1.2 var(--font-display); }
.gw-stage-panel { overflow: hidden; border: 1px solid var(--line); background: #101012; }
.gw-stage-list { display: grid; }
.gw-stage-row { display: grid; grid-template-columns: 44px minmax(150px, .7fr) minmax(80px, 1fr) minmax(110px, .45fr); align-items: center; gap: 17px; min-height: 72px; padding: 11px 17px; border-bottom: 1px solid var(--line); }
.gw-stage-row:last-child { border-bottom: 0; }
.gw-stage-row:hover { background: rgba(204,27,38,.045); }
.gw-stage-row__number { display: grid; place-items: center; width: 31px; height: 31px; color: #d63b46; border: 1px solid #65141a; background: #170d0f; font: 700 8px/1 var(--font-display); transform: rotate(45deg); }
.gw-stage-row small,
.gw-stage-row strong { display: block; }
.gw-stage-row small { color: #77777d; font-size: 7px; font-weight: 700; letter-spacing: .1em; }
.gw-stage-row strong { margin-top: 6px; color: #cacacf; font: 600 13px/1.2 var(--font-display); }
.gw-stage-row > i { height: 1px; background: linear-gradient(90deg, #3b3b40, rgba(132,18,25,.45), #3b3b40); }
.gw-stage-row__rate { text-align: right; }
.gw-stage-row__rate strong { color: #e5c47f; font-size: 18px; }

/* Monsters and spells */
.gw-bestiary-search {
	display: grid;
	grid-template-columns: minmax(170px, .8fr) minmax(230px, 1.35fr) auto;
	align-items: end;
	gap: 18px;
	margin-bottom: 14px;
	padding: 19px;
	border: 1px solid var(--line);
	background: linear-gradient(100deg, rgba(139,15,22,.09), #111113 58%);
}

.gw-bestiary-search h2,
.gw-spell-filter h2 { margin: 4px 0 0; color: #ededf0; font: 600 17px/1.2 var(--font-display); }
.gw-bestiary-search label,
.gw-spell-filter label,
.gw-spell-search label { display: grid; gap: 7px; }
.gw-bestiary-search label > span,
.gw-spell-filter label > span,
.gw-spell-search label > span { color: #9b9ba1; font-size: 8px; font-weight: 700; letter-spacing: .1em; }
.gw-bestiary-search input { width: 100%; min-height: 43px; }
.gw-bestiary-search nav { display: flex; gap: 7px; }
.gw-bestiary-search nav a { display: grid; place-items: center; min-height: 43px; padding: 0 13px; color: #99999f; border: 1px solid #34343a; background: #0d0d0f; font-size: 9px; font-weight: 700; }
.gw-bestiary-search nav a.is-active { color: #fff; border-color: #9c1720; background: linear-gradient(#a81520, #741018); }

.gw-bestiary-meta {
	margin-bottom: 14px;
	padding: 10px 13px;
	color: #99999f;
	border: 1px solid #29292e;
	background: #0e0e10;
	font-size: 9px;
}

.gw-bestiary-meta > span { margin-right: 8px; color: #a91821; font-size: 6px; }
.gw-bestiary-meta strong { color: #e5c47f; }

.gw-monster-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
	gap: 11px;
}

.gw-monster-card {
	position: relative;
	display: grid;
	grid-template-rows: 116px minmax(0, 1fr);
	min-height: 235px;
	overflow: hidden;
	color: #c4c4c9;
	border: 1px solid var(--line);
	background: linear-gradient(145deg, #19191c, #101012);
	transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.gw-monster-card:hover { border-color: #6f151c; box-shadow: 0 14px 32px rgba(0,0,0,.28); transform: translateY(-2px); }
.gw-monster-card[hidden] { display: none !important; }
.gw-monster-card.is-boss { border-color: rgba(197,153,72,.34); }
.gw-monster-card__image { display: grid; place-items: center; border-bottom: 1px solid var(--line); background: radial-gradient(circle, rgba(166,19,28,.15), transparent 58%), #0c0c0e; }
.gw-monster-card.is-boss .gw-monster-card__image { background: radial-gradient(circle, rgba(204,163,75,.16), transparent 58%), #0c0c0e; }
.gw-monster-card__image img { display: block; max-width: 96px; max-height: 96px; object-fit: contain; image-rendering: pixelated; }
.gw-monster-card__copy { position: relative; padding: 15px; }
.gw-monster-card__copy h3 { margin: 0 0 13px; overflow: hidden; color: #ededf0; font: 600 14px/1.25 var(--font-display); text-overflow: ellipsis; white-space: nowrap; }
.gw-monster-card__boss { position: absolute; top: -109px; right: 8px; padding: 5px 7px; color: #e2c377; border: 1px solid rgba(207,169,79,.38); background: rgba(27,22,12,.9); font-size: 6px; font-weight: 700; letter-spacing: .1em; }
.gw-monster-card dl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin: 0; background: var(--line); }
.gw-monster-card dl > div { min-width: 0; padding: 8px 6px; background: #0e0e10; text-align: center; }
.gw-monster-card dt { color: #707076; font-size: 6px; font-weight: 700; }
.gw-monster-card dd { margin: 5px 0 0; overflow: hidden; color: #c7c7cc; font-size: 8px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.gw-monster-table { min-width: 740px; }
.gw-bestiary-empty { margin: 14px 0 0; padding: 22px; color: #a2a2a8; border: 1px dashed #39393f; text-align: center; }

.gw-monster-hero {
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr) auto;
	align-items: center;
	gap: 25px;
	min-height: 178px;
	margin-bottom: 15px;
	padding: 24px 28px;
	border: 1px solid #461219;
	background: radial-gradient(circle at 8% 50%, rgba(188,21,31,.17), transparent 24%), linear-gradient(105deg, rgba(111,10,17,.17), transparent 58%), #101012;
}

.gw-monster-hero.is-boss { border-color: rgba(199,166,91,.36); background: radial-gradient(circle at 8% 50%, rgba(199,166,91,.17), transparent 24%), linear-gradient(105deg, rgba(111,80,18,.11), transparent 58%), #101012; }
.gw-monster-hero__image { display: grid; place-items: center; width: 118px; height: 118px; border: 1px solid #64141a; background: radial-gradient(circle, rgba(171,20,29,.13), transparent 62%), #0a0a0c; transform: rotate(45deg); }
.gw-monster-hero.is-boss .gw-monster-hero__image { border-color: rgba(210,175,91,.48); }
.gw-monster-hero__image img { max-width: 90px; max-height: 90px; object-fit: contain; image-rendering: pixelated; transform: rotate(-45deg); }
.gw-monster-hero h1 { margin: 5px 0 0; color: #f2f2f4; font: 600 clamp(28px, 4vw, 40px)/1.08 var(--font-display); }
.gw-monster-hero > div:nth-child(2) > p:last-child { margin: 11px 0 0; color: #aaaab0; font-size: 10px; }
.gw-monster-hero > div:nth-child(2) > p span { margin: 0 9px; color: #9c171f; font-size: 6px; }

.gw-monster-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 15px; border: 1px solid var(--line); background: var(--line); gap: 1px; }
.gw-monster-stats > div { position: relative; min-height: 83px; padding: 15px 17px; overflow: hidden; background: #101012; }
.gw-monster-stats small,
.gw-monster-stats strong { display: block; }
.gw-monster-stats small { color: #8d8d93; font-size: 7px; font-weight: 700; letter-spacing: .1em; }
.gw-monster-stats strong { margin-top: 9px; color: #ededf0; font: 600 20px/1 var(--font-display); }
.gw-monster-stats span { position: absolute; right: 9px; bottom: 5px; color: rgba(181,23,33,.14); font: 700 21px/1 var(--font-display); }

.gw-monster-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; margin-bottom: 15px; }
.gw-monster-panel { overflow: hidden; border: 1px solid var(--line); background: #101012; }
.gw-monster-panel > header { display: flex; align-items: center; justify-content: space-between; gap: 15px; min-height: 67px; padding: 13px 17px; border-bottom: 1px solid var(--line); background: linear-gradient(90deg, rgba(139,15,22,.09), transparent 60%); }
.gw-monster-panel > header h2 { margin: 4px 0 0; color: #e7e7ea; font: 600 16px/1.2 var(--font-display); }
.gw-monster-panel > header > span { color: #8e171e; font: 700 10px/1 var(--font-display); }
.gw-monster-properties { margin: 0; }
.gw-monster-properties > div { display: grid; grid-template-columns: 1fr auto; gap: 14px; min-height: 43px; padding: 10px 15px; border-bottom: 1px solid var(--line); }
.gw-monster-properties > div:last-child { border-bottom: 0; }
.gw-monster-properties dt,
.gw-monster-properties dd { margin: 0; }
.gw-monster-properties dt { color: #96969c; font-size: 9px; }
.gw-monster-properties dd { color: #c6c6cb; font-size: 9px; font-weight: 700; }
.gw-monster-properties dd.is-positive { color: #65d595; }
.gw-monster-elements { display: grid; grid-template-columns: repeat(auto-fit, minmax(78px, 1fr)); gap: 1px; background: var(--line); }
.gw-monster-elements > div { min-width: 0; padding: 12px 8px; background: #101012; text-align: center; }
.gw-monster-elements span { display: grid; place-items: center; width: 27px; height: 27px; margin: 0 auto 8px; color: #e2424d; border: 1px solid #64151a; background: #170d0f; font: 700 7px/1 var(--font-display); transform: rotate(45deg); }
.gw-monster-elements strong,
.gw-monster-elements small { display: block; }
.gw-monster-elements strong { overflow: hidden; color: #bdbdc2; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.gw-monster-elements small { margin-top: 5px; color: #88888e; font-size: 8px; }
.gw-monster-immunities { padding: 13px 15px; border-top: 1px solid var(--line); }
.gw-monster-immunities > small { color: #77777d; font-size: 7px; font-weight: 700; letter-spacing: .1em; }
.gw-monster-immunities p { display: flex; flex-wrap: wrap; gap: 6px; margin: 9px 0 0; }
.gw-monster-immunities p span { padding: 5px 7px; color: #c0c0c5; border: 1px solid #34343a; background: #0d0d0f; font-size: 8px; }
.gw-monster-summons > div { display: grid; grid-template-columns: 50px 1fr; align-items: center; min-height: 45px; padding: 9px 14px; border-bottom: 1px solid var(--line); }
.gw-monster-summons > div:last-child { border-bottom: 0; }
.gw-monster-summons span { color: #df4b55; font-weight: 700; }
.gw-monster-summons strong a { color: #d7bd83; }
.gw-monster-voices { padding: 13px; }
.gw-monster-voices blockquote { margin: 0 0 7px; padding: 10px 12px; color: #d09655; border-left: 2px solid #8b161e; background: #0d0d0f; font: italic 10px/1.45 var(--font-body); }
.gw-monster-voices blockquote:last-child { margin-bottom: 0; }
.gw-monster-loot-panel { margin-bottom: 15px; }
.gw-monster-loot { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 1px; background: var(--line); }
.gw-loot-item { display: grid; justify-items: center; min-height: 122px; padding: 13px 9px; color: #bdbdc2; background: #101012; text-align: center; }
.gw-loot-item:hover { background: linear-gradient(rgba(143,17,25,.09), #111113); }
.gw-loot-item__image { position: relative; display: grid; place-items: center; width: 47px; height: 47px; margin-bottom: 8px; border: 1px solid #37373d; background: #0b0b0d; }
.gw-loot-item__image img { width: 32px; height: 32px; image-rendering: pixelated; }
.gw-loot-item__image b { position: absolute; right: 3px; bottom: 2px; color: #fff; font-size: 8px; text-shadow: 1px 1px #000; }
.gw-loot-item > strong { overflow: hidden; max-width: 100%; color: #d2d2d6; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.gw-loot-item > small { margin-top: 5px; color: #7f7f85; font-size: 7px; }
.gw-monster-notfound { padding: 42px 24px; border: 1px solid #51151b; background: radial-gradient(circle at 50% 10%, rgba(174,19,28,.12), transparent 31%), #101012; text-align: center; }
.gw-monster-notfound > span { display: grid; place-items: center; width: 50px; height: 50px; margin: 0 auto 18px; color: #df3540; border: 1px solid #8f161e; font: 700 17px/1 var(--font-display); transform: rotate(45deg); }
.gw-monster-notfound h2 { margin: 6px 0 0; color: #ededf0; font: 600 23px/1.2 var(--font-display); }
.gw-monster-notfound > p:not(.gw-kicker) { margin: 12px 0 20px; color: #a0a0a6; }

.gw-spell-filter { display: grid; grid-template-columns: minmax(190px, 1fr) minmax(220px, .9fr) auto; align-items: end; gap: 18px; margin-bottom: 13px; padding: 19px; border: 1px solid var(--line); background: linear-gradient(100deg, rgba(139,15,22,.09), #111113 58%); }
.gw-spell-filter > div > p:last-child { margin: 6px 0 0; color: #96969c; font-size: 9px; }
.gw-spell-filter select { width: 100%; min-height: 43px; }
.gw-spell-filter .form-button { min-height: 43px; }
.gw-spell-search { display: grid; grid-template-columns: minmax(0, 1fr) 80px; align-items: end; gap: 14px; margin-bottom: 13px; padding: 14px 16px; border: 1px solid var(--line); background: #101012; }
.gw-spell-search input { width: 100%; min-height: 42px; }
.gw-spell-search > div { padding-bottom: 5px; text-align: center; }
.gw-spell-search > div small,
.gw-spell-search > div strong { display: block; }
.gw-spell-search > div small { color: #77777d; font-size: 7px; font-weight: 700; }
.gw-spell-search > div strong { margin-top: 5px; color: #fff; font: 600 19px/1 var(--font-display); }

.gw-spell-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.gw-spell-tabs > input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.gw-spell-tabs > label { display: grid; grid-template-columns: 34px minmax(0, 1fr); align-items: center; min-height: 61px; padding: 10px 14px; color: #a1a1a7; background: #101012; cursor: pointer; }
.gw-spell-tabs > label > span { grid-row: 1 / 3; color: #a91821; font-size: 13px; }
.gw-spell-tabs > label strong,
.gw-spell-tabs > label small { display: block; }
.gw-spell-tabs > label strong { font: 600 11px/1.2 var(--font-display); }
.gw-spell-tabs > label small { margin-top: 3px; color: #68686e; font-size: 7px; }
#gwSpellInstant:checked + label,
#gwSpellConjure:checked + label,
#gwSpellRune:checked + label { color: #fff; background: linear-gradient(110deg, rgba(170,19,29,.18), #131315 65%); box-shadow: inset 0 -2px #c51d28; }
.gw-spell-panels { grid-column: 1 / -1; min-width: 0; background: #101012; }
.gw-spell-panel { display: none; }
#gwSpellInstant:checked ~ .gw-spell-panels [data-spell-panel="instant"],
#gwSpellConjure:checked ~ .gw-spell-panels [data-spell-panel="conjure"],
#gwSpellRune:checked ~ .gw-spell-panels [data-spell-panel="rune"] { display: block; }
.gw-spell-table { min-width: 650px; }
.gw-spell-table--items { min-width: 850px; }
.gw-spell-table strong { color: #dedee1; }
.gw-spell-table code { padding: 5px 7px; color: #ef9aa0; border: 1px solid #4e171c; background: #170d0f; font: 9px/1.3 Consolas, monospace; }
.gw-spell-vocations { color: #99999f; font-size: 8px; line-height: 1.5; }
.gw-spell-item { position: relative; display: inline-grid; place-items: center; width: 40px; height: 40px; border: 1px solid #35353a; background: #0b0b0d; }
.gw-spell-item img { width: 32px; height: 32px; image-rendering: pixelated; }
.gw-spell-item b { position: absolute; right: 2px; bottom: 1px; color: #fff; font-size: 7px; text-shadow: 1px 1px #000; }
.gw-spell-panel__empty { margin: 0; padding: 25px; color: #99999f; text-align: center; }

/* Bans */
.gw-ban-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 16px;
	border: 1px solid var(--line);
	background: #101012;
}

.gw-ban-summary > div {
	display: grid;
	grid-template-columns: 35px minmax(0, 1fr);
	align-items: center;
	min-height: 76px;
	padding: 13px 16px;
	border-right: 1px solid var(--line);
}

.gw-ban-summary > div:last-child { border-right: 0; }
.gw-ban-summary > div > span { grid-row: 1 / 3; color: #c51e29; font-size: 14px; }
.gw-ban-summary small { color: #929298; font-size: 7px; font-weight: 700; letter-spacing: .11em; }
.gw-ban-summary strong { margin-top: 5px; color: #ededf0; font: 600 13px/1.2 var(--font-display); }

.gw-ban-log {
	overflow: hidden;
	border: 1px solid var(--line);
	background: #0f0f11;
}

.gw-ban-log__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 72px;
	padding: 14px 19px;
	border-bottom: 1px solid #451319;
	background: linear-gradient(90deg, rgba(145,15,23,.13), transparent 60%);
}

.gw-ban-log__head h2 { margin: 4px 0 0; color: #ededf0; font: 600 18px/1.2 var(--font-display); }
.gw-ban-log__head > span { padding: 6px 9px; color: #d2767d; border: 1px solid #5a171c; background: #170d0f; font-size: 7px; font-weight: 700; letter-spacing: .1em; }
.gw-ban-list { display: grid; }

.gw-ban-row {
	position: relative;
	display: grid;
	align-items: center;
	gap: 12px;
	min-height: 88px;
	padding: 14px 16px;
	border-bottom: 1px solid var(--line);
	transition: background .18s ease;
}

.gw-ban-row.has-details { grid-template-columns: 40px minmax(125px, 1.15fr) minmax(85px, .75fr) minmax(100px, .9fr) minmax(90px, .75fr) minmax(105px, .85fr); }
.gw-ban-row.is-simple { grid-template-columns: 40px minmax(150px, 1.4fr) minmax(105px, .8fr) minmax(125px, 1fr); }
.gw-ban-row:last-child { border-bottom: 0; }
.gw-ban-row:hover { background: rgba(206,27,39,.045); }

.gw-ban-row__number {
	display: grid;
	place-items: center;
	width: 31px;
	height: 31px;
	color: #dc3944;
	border: 1px solid #68131a;
	background: #170d0f;
	font: 700 9px/1 var(--font-display);
	transform: rotate(45deg);
}

.gw-ban-row small,
.gw-ban-row strong,
.gw-ban-row__admin span { display: block; }
.gw-ban-row small { margin-bottom: 6px; color: #77777d; font-size: 6.5px; font-weight: 700; letter-spacing: .1em; }
.gw-ban-row strong { color: #c9c9ce; font-size: 9.5px; line-height: 1.4; }
.gw-ban-row__player strong { font-size: 11px; }
.gw-ban-row__player a { color: #e1bf7b; }
.gw-ban-row__reason strong { color: #d5a0a4; }
.gw-ban-row__expires,
.gw-ban-row__admin { padding-left: 12px; border-left: 1px solid var(--line); }
.gw-ban-row__expires.is-permanent strong { color: #e54a55; }
.gw-ban-row__admin a { color: #c9c9ce; }
.gw-ban-row__admin span { margin-top: 4px; color: #74747a; font-size: 8px; line-height: 1.35; }

.gw-ban-row__comment {
	grid-column: 2 / -1;
	margin: -1px 0 0;
	padding: 8px 10px;
	color: #9d9da3;
	border: 1px solid #29292e;
	background: #0c0c0e;
	font-size: 9px;
	line-height: 1.45;
}

.gw-ban-row__comment span { margin-right: 8px; color: #9d1820; font-size: 6px; }
.gw-ban-pagination { margin-bottom: 16px; }

.gw-ban-notice,
.gw-ban-unsupported {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	align-items: center;
	gap: 15px;
	margin-top: 16px;
	padding: 18px 19px;
	border: 1px solid rgba(199,170,120,.22);
	background: linear-gradient(90deg, rgba(199,170,120,.065), #111113 58%);
}

.gw-ban-notice > span,
.gw-ban-unsupported > span { color: #d0ae69; font-size: 15px; text-align: center; }
.gw-ban-notice strong { color: #dedee1; font: 600 13px/1.3 var(--font-display); }
.gw-ban-notice p:last-child,
.gw-ban-unsupported p:last-child { margin: 5px 0 0; color: #97979d; font-size: 9px; line-height: 1.5; }
.gw-ban-notice .gw-button-secondary { min-width: 130px; }

.gw-ban-unsupported {
	grid-template-columns: 42px minmax(0, 1fr);
	margin-top: 0;
	border-color: #57171d;
	background: linear-gradient(90deg, rgba(170,18,28,.13), #111113 60%);
}

.gw-ban-unsupported > span { color: #e6404b; }
.gw-ban-unsupported h2 { margin: 4px 0 0; color: #ededf0; font: 600 18px/1.2 var(--font-display); }

/* Last kills */
.gw-death-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 16px;
	border: 1px solid var(--line);
	background: #101012;
}

.gw-death-summary > div {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: center;
	min-height: 76px;
	padding: 13px 16px;
	border-right: 1px solid var(--line);
}

.gw-death-summary > div:last-child { border-right: 0; }
.gw-death-summary > div > span { grid-row: 1 / 3; color: #c51e29; font-size: 14px; }
.gw-death-summary small { color: #929298; font-size: 7px; font-weight: 700; letter-spacing: .11em; }
.gw-death-summary strong { margin-top: 5px; color: #ededf0; font: 600 13px/1.2 var(--font-display); }

.gw-death-log {
	overflow: hidden;
	border: 1px solid var(--line);
	background: #0f0f11;
}

.gw-death-log__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 72px;
	padding: 14px 19px;
	border-bottom: 1px solid #451319;
	background: linear-gradient(90deg, rgba(145,15,23,.13), transparent 60%);
}

.gw-death-log__head h2 { margin: 4px 0 0; color: #ededf0; font: 600 18px/1.2 var(--font-display); }
.gw-death-log__head > span { padding: 6px 9px; color: #d2767d; border: 1px solid #5a171c; background: #170d0f; font-size: 7px; font-weight: 700; letter-spacing: .1em; }

.gw-death-list { display: grid; }

.gw-death-row {
	display: grid;
	grid-template-columns: 42px 58px minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 13px;
	min-height: 76px;
	padding: 11px 16px;
	border-bottom: 1px solid var(--line);
	transition: background .18s ease;
}

.gw-death-row:last-child { border-bottom: 0; }
.gw-death-row:hover { background: rgba(206,27,39,.045); }

.gw-death-row__number {
	display: grid;
	place-items: center;
	width: 31px;
	height: 31px;
	color: #85858b;
	border: 1px solid #37373d;
	background: #0b0b0d;
	font: 700 9px/1 var(--font-display);
	transform: rotate(45deg);
}

.gw-death-row__type { text-align: center; }
.gw-death-row__type span,
.gw-death-row__type small { display: block; }
.gw-death-row__type span { color: #bd2832; font-size: 17px; }
.gw-death-row__type small { margin-top: 3px; color: #8d555a; font-size: 7px; font-weight: 700; letter-spacing: .1em; }
.gw-death-row.is-pvp .gw-death-row__type span { color: #e6434f; }
.gw-death-row.is-pvp .gw-death-row__type small { color: #da737a; }

.gw-death-row__event {
	min-width: 0;
	color: #b8b8bd;
	font-size: 11px;
	line-height: 1.55;
}

.gw-death-row__event a { color: #e0c080; font-weight: 700; }
.gw-death-row__event strong,
.gw-death-row__event b { color: #fff; }

.gw-death-row__world {
	min-width: 70px;
	padding: 7px 10px;
	border-left: 1px solid var(--line);
	text-align: center;
}

.gw-death-row__world small,
.gw-death-row__world strong { display: block; }
.gw-death-row__world small { color: #77777d; font-size: 6px; letter-spacing: .1em; }
.gw-death-row__world strong { margin-top: 4px; color: #c7c7cb; font-size: 9px; }

.gw-death-row time {
	min-width: 84px;
	padding-left: 13px;
	border-left: 1px solid var(--line);
	text-align: right;
}

.gw-death-row time strong,
.gw-death-row time small { display: block; }
.gw-death-row time strong { color: #c1c1c6; font-size: 9px; }
.gw-death-row time small { margin-top: 4px; color: #737379; font-size: 8px; }

.gw-death-notice {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	align-items: center;
	gap: 15px;
	margin-top: 16px;
	padding: 17px 19px;
	border: 1px solid rgba(199,170,120,.22);
	background: linear-gradient(90deg, rgba(199,170,120,.065), #111113 58%);
}

.gw-death-notice > span { color: #d0ae69; text-align: center; }
.gw-death-notice strong { color: #dedee1; font: 600 13px/1.3 var(--font-display); }
.gw-death-notice p:last-child { margin: 5px 0 0; color: #97979d; font-size: 9px; line-height: 1.5; }

/* Guilds */
.gw-guild-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.gw-guild-card { display: grid; grid-template-columns: 82px 1fr; min-height: 180px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(145deg, #19191c, #101012); }
.gw-guild-card__logo { display: flex; align-items: flex-start; justify-content: center; padding-top: 25px; border-right: 1px solid var(--line); background: radial-gradient(circle at center, rgba(185,20,30,.1), transparent 65%); }
.gw-guild-card__logo img { width: 58px; height: 58px; border: 1px solid #4f1115; background: #0b0b0c; object-fit: contain; image-rendering: pixelated; }
.gw-guild-card__content { display: flex; flex-direction: column; padding: 20px; }
.gw-guild-card h3 { margin: 0 0 8px; color: #ededf0; font: 600 16px/1.2 var(--font-display); }
.gw-guild-card__content > p:not(.gw-kicker) { margin: 0; color: #919197; font-size: 10px; }
.gw-guild-card__actions { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 15px; }
.gw-danger-link { color: #d75c65; font-size: 9px; }
.gw-cta-strip { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 16px; padding: 20px; border: 1px solid var(--line-red); background: linear-gradient(90deg, rgba(137,9,17,.16), #121214 55%); }
.gw-cta-strip strong, .gw-cta-strip span { display: block; }
.gw-cta-strip strong { color: #ececef; font: 600 14px/1.3 var(--font-display); }
.gw-cta-strip span { margin-top: 4px; color: #85858b; font-size: 10px; }
.gw-cta-strip > a { flex: 0 0 auto; }
.gw-cleanup { margin-top: 12px; padding: 12px 15px; border: 1px solid var(--line); background: #101012; color: #77777d; font-size: 10px; }
.gw-cleanup summary { cursor: pointer; color: #99999f; }
.gw-cleanup a { display: inline-block; margin: 10px 15px 0 0; }

.gw-guild-hero {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	min-height: 170px;
	margin-bottom: 16px;
	padding: 24px 28px;
	border: 1px solid #461219;
	background:
		radial-gradient(circle at 8% 50%, rgba(196,23,34,.17), transparent 24%),
		linear-gradient(110deg, rgba(105,10,17,.17), transparent 58%),
		#111113;
}

.gw-guild-hero__logo {
	display: grid;
	place-items: center;
	width: 110px;
	height: 110px;
	border: 1px solid #65131a;
	background: #0b0b0d;
	transform: rotate(45deg);
}

.gw-guild-hero__logo img {
	width: 78px;
	height: 78px;
	object-fit: contain;
	image-rendering: pixelated;
	transform: rotate(-45deg);
}

.gw-guild-hero h1 {
	margin: 5px 0 0;
	color: #f2f2f4;
	font: 600 clamp(27px, 4vw, 39px)/1.1 var(--font-display);
}

.gw-guild-hero__copy > p:last-child {
	margin: 12px 0 0;
	color: #b0b0b6;
	font-size: 11px;
}

.gw-guild-hero__copy > p span { margin: 0 9px; color: #a51821; font-size: 7px; }
.gw-guild-hero__copy a { color: #e3c17c; }
.gw-guild-hero__manage { min-width: 145px; }

.gw-guild-description {
	margin-bottom: 16px;
	padding: 20px 22px;
	color: #bcbcc1;
	border: 1px solid var(--line);
	background: linear-gradient(100deg, rgba(146,18,26,.07), #111113 65%);
	font-size: 11px;
	line-height: 1.7;
}

.gw-guild-description > div { margin-top: 8px; }
.gw-guild-description p { margin: 0 0 8px; }

.gw-guild-panel {
	overflow: hidden;
	margin-bottom: 16px;
	border: 1px solid var(--line);
	background: #101012;
}

.gw-guild-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 70px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--line);
	background: linear-gradient(90deg, rgba(138,14,22,.1), transparent 55%);
}

.gw-guild-panel__head h2 {
	margin: 4px 0 0;
	color: #ededf0;
	font: 600 18px/1.2 var(--font-display);
}

.gw-guild-panel__head > span {
	display: grid;
	place-items: center;
	min-width: 34px;
	height: 34px;
	padding: 0 8px;
	color: #e4c16f;
	border: 1px solid rgba(199,170,120,.3);
	background: rgba(199,170,120,.05);
	font: 700 10px/1 var(--font-display);
}

.gw-guild-members th:nth-child(1) { width: 18%; }
.gw-guild-members th:nth-child(3) { width: 18%; }
.gw-guild-members th:nth-child(4) { width: 10%; }
.gw-guild-members th:nth-child(5) { width: 12%; }
.gw-guild-rank { color: #d2b475; font-size: 9px; font-weight: 700; }
.gw-guild-player { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.gw-guild-player form { min-width: 0; }
.gw-guild-player strong { display: block; }
.gw-guild-player small { display: block; margin-top: 4px; color: #97979d; font-size: 9px; }

.gw-guild-nick-edit {
	display: flex;
	gap: 5px;
	margin-top: 7px;
}

.gw-guild-nick-edit input { width: 145px; min-height: 29px; padding: 5px 7px; font-size: 9px; }
.gw-guild-nick-edit button { padding: 5px 8px; color: #dddde0; border: 1px solid #591218; background: #1a0d10; cursor: pointer; font-size: 8px; }
.gw-table-empty { padding: 24px !important; color: #8f8f95 !important; text-align: center; }

.gw-guild-invites { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); }
.gw-guild-invites > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 51px; padding: 11px 15px; background: #101012; }
.gw-guild-invites > .gw-table-empty { grid-column: 1 / -1; margin: 0; background: #101012; }

.gw-guild-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
	padding: 17px;
	border: 1px solid var(--line);
	background: #101012;
}

.gw-guild-form {
	overflow: hidden;
	max-width: 760px;
	margin: 0 auto;
	border: 1px solid #3b3b41;
	background: linear-gradient(145deg, rgba(25,25,28,.92), rgba(12,12,14,.97));
}

.gw-guild-form__head {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	align-items: center;
	gap: 17px;
	padding: 22px 24px;
	border-bottom: 1px solid #48141a;
	background: linear-gradient(90deg, rgba(143,15,23,.13), transparent 65%);
}

.gw-guild-form__head > span {
	display: grid;
	place-items: center;
	width: 47px;
	height: 47px;
	color: #fff;
	border: 1px solid #9f1720;
	background: #1a0c0f;
	font: 700 16px/1 var(--font-display);
	transform: rotate(45deg);
}

.gw-guild-form__head h2 { margin: 4px 0 0; color: #ededf0; font: 600 20px/1.2 var(--font-display); }
.gw-guild-form__head p:last-child { margin: 6px 0 0; color: #9e9ea4; font-size: 10px; }
.gw-guild-form__body { display: grid; gap: 20px; padding: 27px 25px; }
.gw-guild-form__body .gw-field { margin: 0; }
.gw-guild-form__body input,
.gw-guild-form__body select { width: 100%; min-height: 48px; }
.gw-guild-form__body .gw-field > span { color: #cacacf; font-size: 11px; }
.gw-guild-form__body .gw-field small { color: #939399; font-size: 9px; }
.gw-guild-form__actions { display: flex; justify-content: flex-end; gap: 10px; padding: 17px 24px; border-top: 1px solid var(--line); background: rgba(0,0,0,.14); }

.gw-guild-manager-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 16px;
}

.gw-guild-manager-grid > a {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	align-items: center;
	gap: 13px;
	min-height: 78px;
	padding: 13px 15px;
	color: #d0d0d4;
	border: 1px solid var(--line);
	background: linear-gradient(120deg, rgba(125,15,22,.07), #101012 62%);
}

.gw-guild-manager-grid > a > span {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	color: #d02a34;
	border: 1px solid #671218;
	background: #180d0f;
	font: 700 8px/1 var(--font-display);
	transform: rotate(45deg);
}

.gw-guild-manager-grid strong,
.gw-guild-manager-grid small { display: block; }
.gw-guild-manager-grid strong { color: #e1e1e4; font: 600 13px/1.25 var(--font-display); }
.gw-guild-manager-grid small { margin-top: 5px; color: #929298; font-size: 9px; }
.gw-guild-manager-grid > a:hover { border-color: #6f151c; background: linear-gradient(120deg, rgba(170,18,28,.14), #111113 62%); }
.gw-guild-manager-grid > a.is-danger { border-color: #4b171c; }
.gw-guild-manager-grid > a.is-danger strong { color: #df6e76; }

.gw-guild-inline-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 12px;
	padding: 20px;
}

.gw-guild-inline-form .gw-field { margin: 0; }
.gw-guild-inline-form input { width: 100%; min-height: 42px; }
.gw-guild-inline-form .form-button { min-height: 42px; }
.gw-guild-ranks input[type="text"] { width: 100%; min-width: 135px; min-height: 36px; }
.gw-rank-radio { display: grid; place-items: center; cursor: pointer; }
.gw-rank-radio input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.gw-rank-radio span { display: grid; place-items: center; width: 27px; height: 27px; color: #8e8e94; border: 1px solid #424248; background: #0d0d0f; transform: rotate(45deg); }
.gw-rank-radio input:checked + span { color: #fff; border-color: #c31c27; background: #8e1019; box-shadow: 0 0 10px rgba(204,28,39,.25); }
.gw-danger-button { padding: 7px 9px; color: #db6d75; border: 1px solid #59151a; background: #170d0f; cursor: pointer; font-size: 8px; }
.gw-guild-panel__actions { display: flex; justify-content: flex-end; gap: 10px; padding: 16px 18px; border-top: 1px solid var(--line); }

.gw-guild-permissions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-bottom: 16px;
	border: 1px solid var(--line);
	background: var(--line);
}

.gw-guild-permissions > .gw-kicker { grid-column: 1 / -1; margin: 0; padding: 13px 16px; background: #111113; }
.gw-guild-permissions > div { padding: 15px; background: #101012; }
.gw-guild-permissions strong,
.gw-guild-permissions span { display: block; }
.gw-guild-permissions strong { color: #d8d8dc; font-size: 10px; }
.gw-guild-permissions span { margin-top: 6px; color: #89898f; font-size: 9px; line-height: 1.5; }

.gw-guild-action {
	overflow: hidden;
	max-width: 780px;
	margin: 0 auto;
	border: 1px solid #38383e;
	background: linear-gradient(145deg, rgba(24,24,27,.94), rgba(12,12,14,.98));
}

.gw-guild-action > header {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	align-items: center;
	gap: 15px;
	padding: 20px 22px;
	border-bottom: 1px solid #48141a;
	background: linear-gradient(90deg, rgba(145,15,23,.13), transparent 65%);
}

.gw-guild-action > header > span {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	color: #e93440;
	border: 1px solid #81151c;
	background: #190d0f;
	font: 700 11px/1 var(--font-display);
	transform: rotate(45deg);
}

.gw-guild-action > header h2 { margin: 4px 0 0; color: #ededf0; font: 600 20px/1.2 var(--font-display); }
.gw-guild-action > header p:last-child { margin: 5px 0 0; color: #99999f; font-size: 10px; }
.gw-guild-action > form { padding: 24px; }
.gw-guild-action .gw-field { margin: 0; }
.gw-guild-action .gw-field > span { color: #c9c9ce; font-size: 11px; }
.gw-guild-action input[type="text"],
.gw-guild-action select,
.gw-guild-action textarea { width: 100%; min-height: 45px; }
.gw-guild-action textarea { min-height: 145px; resize: vertical; }
.gw-guild-action .gw-field small { color: #919197; font-size: 9px; }

.gw-guild-action__buttons {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin: 22px -24px -24px;
	padding: 16px 24px;
	border-top: 1px solid var(--line);
	background: rgba(0,0,0,.14);
}

.gw-guild-action--danger { border-color: #56171d; }
.gw-guild-action--danger > header { background: linear-gradient(90deg, rgba(171,17,27,.2), transparent 68%); }
.gw-guild-confirm { margin: 0; padding: 18px; color: #bcbcc2; border: 1px solid #34343a; background: #0d0d0f; font-size: 11px; line-height: 1.6; }
.gw-guild-confirm strong { color: #fff; }
.gw-danger-submit { min-height: 40px; padding: 0 18px; color: #fff; border: 1px solid #d12431; background: linear-gradient(#c31622, #8f0e17); cursor: pointer; font-weight: 700; }
.gw-danger-submit:hover { background: linear-gradient(#dc1f2c, #a6101b); }

.gw-guild-logo-form {
	display: grid;
	grid-template-columns: 125px minmax(0, 1fr);
	align-items: center;
	gap: 23px;
	padding: 24px;
}

.gw-guild-logo-form > img { width: 110px; height: 110px; padding: 8px; border: 1px solid #59141a; background: #09090b; object-fit: contain; image-rendering: pixelated; }
.gw-guild-logo-form > form { min-width: 0; }
.gw-guild-logo-form .gw-guild-action__buttons { margin-bottom: -24px; }

.gw-guild-choice-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px;
}

.gw-guild-choice-list label { position: relative; cursor: pointer; }
.gw-guild-choice-list input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.gw-guild-choice-list span { display: flex; align-items: center; min-height: 46px; padding: 10px 13px; color: #b2b2b8; border: 1px solid #34343a; background: #0d0d0f; font-size: 10px; }
.gw-guild-choice-list span::before { content: ""; width: 9px; height: 9px; margin-right: 11px; border: 1px solid #55555b; transform: rotate(45deg); }
.gw-guild-choice-list input:checked + span { color: #fff; border-color: #961720; background: linear-gradient(90deg, rgba(193,23,34,.14), #101012); }
.gw-guild-choice-list input:checked + span::before { border-color: #f03845; background: #b41420; box-shadow: 0 0 9px rgba(217,31,43,.4); }

.gw-guild-success {
	max-width: 720px;
	margin: 0 auto;
	padding: 42px 28px;
	border: 1px solid rgba(74,210,135,.26);
	background: radial-gradient(circle at 50% 5%, rgba(59,180,109,.1), transparent 32%), #111113;
	text-align: center;
}

.gw-guild-success > span { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 20px; color: #75e1a6; border: 1px solid rgba(74,210,135,.45); background: rgba(47,164,97,.08); font: 700 19px/1 var(--font-display); transform: rotate(45deg); }
.gw-guild-success h2 { margin: 6px 0 0; color: #f0f0f2; font: 600 25px/1.2 var(--font-display); }
.gw-guild-success > p:not(.gw-kicker) { max-width: 540px; margin: 14px auto 22px; color: #aaaab0; font-size: 11px; line-height: 1.65; }
.gw-guild-success .form-button { display: inline-flex; }
.gw-guild-back { display: flex; justify-content: center; margin-top: 16px; }

/* Account management */
.gw-account { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 24px; }
.gw-account-nav { align-self: start; overflow: hidden; border: 1px solid var(--line); background: #101012; }
.gw-account-nav__head { display: flex; align-items: center; gap: 11px; min-height: 68px; padding: 13px; border-bottom: 1px solid var(--line-red); background: linear-gradient(90deg, rgba(132,12,19,.2), transparent); }
.gw-account-nav__head > span { display: grid; place-items: center; flex: 0 0 34px; height: 39px; color: #fff; border: 1px solid #8c141b; background: #190d0f; clip-path: polygon(50% 0,93% 20%,88% 75%,50% 100%,12% 75%,7% 20%); font: 700 14px/1 var(--font-display); }
.gw-account-nav__head small, .gw-account-nav__head strong { display: block; }
.gw-account-nav__head small { color: #8f5b5f; font-size: 7px; letter-spacing: .13em; }
.gw-account-nav__head strong { max-width: 110px; overflow: hidden; color: #dddde0; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.gw-account-nav nav { padding: 7px 0; }
.gw-account-nav nav a { display: flex; align-items: center; gap: 9px; min-height: 39px; padding: 8px 12px; color: #929298; border-left: 2px solid transparent; font-size: 10px; }
.gw-account-nav nav a span { color: #55555a; }
.gw-account-nav nav a:hover, .gw-account-nav nav a.is-active { color: #fff; border-left-color: var(--red); background: linear-gradient(90deg, rgba(205,21,32,.12), transparent); }
.gw-account-nav nav a.is-active span { color: var(--red-bright); }
.gw-account-nav nav .gw-account-nav__logout { margin-top: 7px; color: #d2787e; border-top: 1px solid var(--line); }
.gw-account-main { min-width: 0; }

.gw-security-callout { display: grid; grid-template-columns: 43px 1fr auto; align-items: center; gap: 15px; margin-bottom: 18px; padding: 17px; border: 1px solid rgba(199,170,120,.3); background: linear-gradient(90deg, rgba(199,170,120,.08), #121214 55%); }
.gw-security-callout__icon { display: grid; place-items: center; width: 38px; height: 38px; color: var(--gold); border: 1px solid rgba(199,170,120,.4); font: 700 16px/1 var(--font-display); transform: rotate(45deg); }
.gw-security-callout strong { color: #eee; font: 600 12px/1.4 var(--font-display); }
.gw-security-callout p:not(.gw-kicker) { margin: 4px 0 0; color: #85858b; font-size: 9px; }

.gw-account-badge { padding: 6px 9px; color: #d5b77f; border: 1px solid rgba(199,170,120,.25); background: rgba(199,170,120,.06); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.gw-details { margin: 0; }
.gw-details > div { display: grid; grid-template-columns: 145px minmax(0, 1fr); min-height: 49px; border-bottom: 1px solid var(--line); }
.gw-details > div:last-child { border-bottom: 0; }
.gw-details dt, .gw-details dd { display: flex; align-items: center; margin: 0; padding: 10px 12px; }
.gw-details dt { color: #85858b; border-right: 1px solid var(--line); font-size: 10px; }
.gw-details dd { min-width: 0; color: #cacacd; word-break: break-word; }
.gw-details dd form { display: inline-flex; margin-left: auto; padding-left: 12px; }
.gw-inline-action { padding: 6px 9px; color: #e7e7e9; border: 1px solid #671218; background: #1b0d10; cursor: pointer; font-size: 8px; font-weight: 700; }
.gw-details--compact > div { grid-template-columns: 120px 1fr; }
.gw-status-pill { display: inline-flex; align-items: center; gap: 5px; padding: 4px 7px; border: 1px solid var(--line); font-size: 8px; text-transform: uppercase; letter-spacing: .06em; }
.gw-status-pill.is-online { color: #4adc84; border-color: rgba(74,220,132,.25); background: rgba(74,220,132,.05); }
.gw-status-pill.is-offline { color: #8c8c92; }

.gw-log-panel { overflow: hidden; border: 1px solid var(--line); background: #101012; }
.gw-log-panel summary { display: flex; align-items: center; justify-content: space-between; min-height: 62px; padding: 13px 17px; cursor: pointer; list-style: none; }
.gw-log-panel summary::-webkit-details-marker { display: none; }
.gw-log-panel summary small, .gw-log-panel summary strong { display: block; }
.gw-log-panel summary small { color: #8e5b60; font-size: 7px; letter-spacing: .14em; }
.gw-log-panel summary strong { color: #dddde0; font: 600 13px/1.4 var(--font-display); }
.gw-log-panel summary > b { color: #77777d; font-size: 8px; font-weight: 600; }
.gw-log-panel[open] summary { border-bottom: 1px solid var(--line); }
.gw-log-panel code { color: #aaaab0; font: 10px/1.4 Consolas, monospace; }

/* Account forms */
.gw-account--form-page .gw-account-nav {
	position: sticky;
	top: 18px;
}

.gw-account-form {
	border: 1px solid var(--line);
	background: linear-gradient(145deg, rgba(25,25,28,.88), rgba(13,13,15,.94));
}

.gw-form-section {
	padding: 22px;
	border-bottom: 1px solid var(--line);
}

.gw-form-section:last-of-type { border-bottom: 0; }

.gw-form-section__head {
	display: grid;
	grid-template-columns: 39px minmax(0, 1fr);
	align-items: center;
	gap: 13px;
	margin-bottom: 20px;
}

.gw-form-section__head > span {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	color: var(--red-bright);
	border: 1px solid #681017;
	background: #170d0f;
	font: 700 10px/1 var(--font-display);
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.gw-form-section__head h3 {
	margin: 0;
	color: #ededf0;
	font: 600 16px/1.3 var(--font-display);
}

.gw-form-section__head p {
	margin: 4px 0 0;
	color: #818187;
	font-size: 9px;
}

.gw-form-grid { display: grid; gap: 18px; }
.gw-form-grid--two { grid-template-columns: 1fr 1fr; }
.gw-form-stack { display: grid; gap: 15px; max-width: 610px; }
.gw-form-stack .gw-field { margin: 0; }
.gw-form-stack input,
.gw-form-stack select { width: 100%; min-height: 44px; }
.gw-field small { min-height: 15px; color: #c45e65; font-size: 9px; }

.gw-input-status {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 26px;
	align-items: center;
	gap: 8px;
}

.gw-input-status input { width: 100%; min-height: 44px; }
.gw-input-status #character_name {
	color: #ececef !important;
	border-color: #38383d !important;
	background: #0b0b0d !important;
	box-shadow: inset 0 2px 9px rgba(0,0,0,.4) !important;
}

.gw-input-status #character_name:focus {
	border-color: #8e141b !important;
	box-shadow: 0 0 0 3px rgba(217,31,43,.09), inset 0 2px 9px rgba(0,0,0,.4) !important;
}

.gw-input-status img { width: 16px; height: 16px; image-rendering: pixelated; }

.gw-choice-field {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.gw-choice-field legend {
	margin-bottom: 7px;
	color: #aaaab0;
	font-size: 10px;
	font-weight: 600;
}

.gw-choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px;
}

.gw-choice-grid--cards {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gw-choice {
	position: relative;
	display: block;
	cursor: pointer;
}

.gw-choice input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.gw-choice > span {
	display: flex;
	align-items: center;
	min-height: 43px;
	padding: 10px 13px;
	color: #aaaab0;
	border: 1px solid var(--line);
	background: #101012;
	font-size: 10px;
	transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.gw-choice > span::before {
	content: "";
	flex: 0 0 9px;
	width: 9px;
	height: 9px;
	margin-right: 10px;
	border: 1px solid #57575d;
	background: #0b0b0c;
	transform: rotate(45deg);
}

.gw-choice input:checked + span {
	color: #fff;
	border-color: #89141b;
	background: linear-gradient(90deg, rgba(205,21,32,.14), #111113);
}

.gw-choice input:checked + span::before {
	border-color: var(--red-bright);
	background: var(--red);
	box-shadow: 0 0 9px rgba(217,31,43,.5);
}

.gw-choice input:focus-visible + span {
	outline: 2px solid rgba(240,56,69,.45);
	outline-offset: 2px;
}

.gw-choice-grid--cards .gw-choice > span {
	align-items: flex-start;
	min-height: 72px;
	padding: 13px 14px;
}

.gw-choice-copy {
	display: block;
	min-width: 0;
	padding-top: 1px;
}

.gw-choice-grid--cards b,
.gw-choice-grid--cards small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.gw-choice-grid--cards b { color: inherit; font: 600 11px/1.3 var(--font-display); }
.gw-choice-grid--cards small { margin-top: 6px; color: #737379; font-size: 8px; font-weight: 400; }

.gw-form-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 11px;
	padding: 17px 22px;
	background: rgba(0,0,0,.12);
}

.gw-form-actions .form-button,
.gw-button-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 130px;
	min-height: 40px;
	padding: 9px 16px;
}

.gw-button-secondary {
	color: #aaaab0;
	border: 1px solid var(--line);
	background: #101012;
	font-size: 10px;
	font-weight: 700;
}

.gw-button-secondary:hover { color: #fff; border-color: rgba(255,255,255,.2); }
.gw-button-danger { border-color: #d12632 !important; background: linear-gradient(#d0202c, #79080f) !important; }
.form-button:disabled { opacity: .45; cursor: not-allowed; filter: grayscale(.4); }

.gw-country-select {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 35px;
	align-items: center;
	gap: 10px;
}

.gw-country-select select { width: 100%; }
.gw-country-select img {
	justify-self: center;
	max-width: 24px;
	border: 1px solid var(--line);
	image-rendering: pixelated;
}

.gw-security-tips {
	display: grid;
	grid-template-columns: 32px 1fr;
	align-items: center;
	gap: 12px;
	margin-bottom: 15px;
	padding: 13px 15px;
	border: 1px solid rgba(199,170,120,.2);
	background: rgba(199,170,120,.045);
}

.gw-security-tips > span { color: var(--gold); text-align: center; }
.gw-security-tips p { margin: 0; color: #96969b; font-size: 9px; }

/* Server info */
.gw-server-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, .55fr);
	align-items: center;
	gap: 28px;
	min-height: 235px;
	padding: 34px;
	overflow: hidden;
	border: 1px solid #3a1116;
	background:
		radial-gradient(circle at 78% 50%, rgba(177,20,29,.17), transparent 27%),
		linear-gradient(112deg, rgba(112,10,17,.2), transparent 53%),
		#101012;
}

.gw-server-hero h2 { margin: 8px 0 0; color: #f0f0f2; font: 600 clamp(28px, 5vw, 42px)/1.05 var(--font-display); }
.gw-server-hero > div > p:not(.gw-kicker) { max-width: 520px; margin: 13px 0 0; color: #929298; font-size: 10px; line-height: 1.65; }
.gw-server-hero__links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.gw-server-hero__links .form-button,
.gw-server-hero__links .gw-button-secondary { min-width: 120px; min-height: 39px; }

.gw-server-address {
	position: relative;
	display: grid;
	place-items: center;
	align-content: center;
	min-height: 144px;
	padding: 22px;
	border: 1px solid rgba(199,170,120,.25);
	background: rgba(8,8,10,.55);
	text-align: center;
}

.gw-server-address::before {
	content: "";
	position: absolute;
	width: 84px;
	height: 84px;
	border: 1px solid rgba(165,19,28,.22);
	transform: rotate(45deg);
}

.gw-server-address span,
.gw-server-address strong,
.gw-server-address small { position: relative; z-index: 1; display: block; }
.gw-server-address span { color: #765055; font-size: 7px; font-weight: 700; letter-spacing: .15em; }
.gw-server-address strong { max-width: 100%; margin-top: 10px; overflow: hidden; color: #f0f0f2; font: 600 16px/1.25 var(--font-display); text-overflow: ellipsis; }
.gw-server-address small { margin-top: 7px; color: #c5a768; font-size: 8px; font-weight: 700; }

.gw-server-motd {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	margin-top: 16px;
	padding: 14px 18px;
	border: 1px solid var(--line);
	background: linear-gradient(90deg, rgba(199,170,120,.06), #111113 62%);
}
.gw-server-motd > span { color: #b79557; font: 600 31px/1 var(--font-display); }
.gw-server-motd strong { display: block; margin-top: 5px; color: #bdbdc2; font-size: 9px; font-weight: 500; }

.gw-server-facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 16px;
	border: 1px solid var(--line);
	background: #101012;
}

.gw-server-facts > div {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	align-items: center;
	min-width: 0;
	min-height: 70px;
	padding: 12px 14px;
	border-right: 1px solid var(--line);
}
.gw-server-facts > div:last-child { border-right: 0; }
.gw-server-facts > div > span { grid-row: 1 / 3; color: #8e151d; font-size: 11px; }
.gw-server-facts small { color: #6f6f75; font-size: 6px; font-weight: 700; letter-spacing: .11em; }
.gw-server-facts strong { margin-top: 4px; overflow: hidden; color: #dddde0; font: 600 10px/1.25 var(--font-display); text-overflow: ellipsis; white-space: nowrap; }

.gw-server-layout {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 16px;
	margin-top: 16px;
}

.gw-server-panel {
	overflow: hidden;
	margin-bottom: 16px;
	border: 1px solid var(--line);
	background: linear-gradient(145deg, rgba(24,24,27,.9), rgba(13,13,15,.96));
}
.gw-server-layout .gw-server-panel { margin-bottom: 0; }

.gw-rate-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: var(--line);
}

.gw-rate-grid > div {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	align-items: center;
	min-height: 77px;
	padding: 12px;
	background: #101012;
}
.gw-rate-grid > div > span {
	grid-row: 1 / 3;
	display: grid;
	place-items: center;
	width: 23px;
	height: 23px;
	color: #d92a35;
	border: 1px solid #681017;
	background: #190d0f;
	clip-path: polygon(50% 0,100% 50%,50% 100%,0 50%);
	font: 700 7px/1 var(--font-display);
}
.gw-rate-grid strong { color: #ededf0; font: 600 17px/1 var(--font-display); }
.gw-rate-grid small { margin-top: 5px; color: #6d6d73; font-size: 7px; }
.gw-server-panel__note { margin: 0; padding: 12px 15px; color: #85858b; border-top: 1px solid var(--line); font-size: 8px; }
.gw-server-panel__note span { margin-right: 6px; color: #86141b; font-size: 6px; }

.gw-server-settings { margin: 0; }
.gw-server-settings > div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 15px;
	min-height: 44px;
	padding: 9px 14px;
	border-bottom: 1px solid var(--line);
}
.gw-server-settings > div:last-child { border-bottom: 0; }
.gw-server-settings dt,
.gw-server-settings dd { margin: 0; }
.gw-server-settings dt { color: #818187; font-size: 8px; }
.gw-server-settings dd { color: #d0d0d4; font-size: 8px; font-weight: 700; text-align: right; }

.gw-server-tech-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: var(--line);
}
.gw-server-tech-grid > div { min-width: 0; padding: 15px; background: #101012; }
.gw-server-tech-grid small,
.gw-server-tech-grid strong { display: block; }
.gw-server-tech-grid small { margin-bottom: 7px; color: #765055; font-size: 6px; font-weight: 700; letter-spacing: .11em; }
.gw-server-tech-grid strong { overflow: hidden; color: #d8d8dc; font: 600 10px/1.3 var(--font-display); text-overflow: ellipsis; white-space: nowrap; }

.gw-system-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: var(--line);
}
.gw-system-list > div {
	display: grid;
	grid-template-columns: 35px minmax(0, 1fr);
	align-items: center;
	gap: 11px;
	min-height: 67px;
	padding: 11px 14px;
	background: #101012;
}
.gw-system-list > div > span {
	display: grid;
	place-items: center;
	width: 31px;
	height: 31px;
	color: #77777d;
	border: 1px solid #38383e;
	background: #0c0c0e;
	font: 700 7px/1 var(--font-display);
}
.gw-system-list strong,
.gw-system-list small { display: block; }
.gw-system-list strong { color: #aaaab0; font-size: 9px; }
.gw-system-list small { margin-top: 5px; color: #68686e; font-size: 7px; }
.gw-system-list > div.is-active > span { color: #6bdda0; border-color: rgba(71,198,126,.35); background: rgba(71,198,126,.07); }
.gw-system-list > div.is-active strong { color: #dedee1; }
.gw-system-list > div.is-active small { color: #51bd80; }

.gw-skull-overview {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-bottom: 1px solid var(--line);
}
.gw-skull-overview > div { min-width: 0; padding: 15px; border-right: 1px solid var(--line); }
.gw-skull-overview > div:last-child { border-right: 0; }
.gw-skull-overview small,
.gw-skull-overview strong { display: block; }
.gw-skull-overview small { margin-bottom: 7px; color: #7c5155; font-size: 6px; font-weight: 700; letter-spacing: .11em; }
.gw-skull-overview strong { color: #e0e0e3; font: 600 12px/1.2 var(--font-display); }

.gw-frag-limits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: var(--line);
}
.gw-frag-limits > div { min-width: 0; padding: 14px; background: #111113; }
.gw-frag-limits span,
.gw-frag-limits strong,
.gw-frag-limits small { display: block; }
.gw-frag-limits span { color: #8c555a; font-size: 6px; font-weight: 700; letter-spacing: .1em; }
.gw-frag-limits strong { margin-top: 7px; color: #e2e2e5; font: 600 17px/1 var(--font-display); }
.gw-frag-limits small { margin-top: 5px; color: #6c6c72; font-size: 7px; }
.gw-frag-limits > div.is-black span { color: #77777d; }

.gw-server-penalties { display: flex; flex-wrap: wrap; gap: 8px; padding: 13px 15px; border-top: 1px solid var(--line); }
.gw-server-penalties span { padding: 5px 8px; color: #8d8d93; border: 1px solid #303035; background: #0d0d0f; font-size: 7px; }
.gw-server-penalties strong { color: #d35c65; }

.gw-server-rules {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr) auto;
	align-items: center;
	gap: 15px;
	padding: 18px;
	border: 1px solid rgba(199,170,120,.23);
	background: linear-gradient(90deg, rgba(199,170,120,.07), #111113 57%);
}
.gw-server-rules > span { display: grid; place-items: center; width: 35px; height: 35px; color: #d2ae68; border: 1px solid rgba(199,170,120,.35); font: 700 12px/1 var(--font-display); transform: rotate(45deg); }
.gw-server-rules h3 { margin: 4px 0 0; color: #dedee1; font: 600 14px/1.2 var(--font-display); }
.gw-server-rules p:not(.gw-kicker) { margin: 5px 0 0; color: #7d7d83; font-size: 8px; }
.gw-server-rules .gw-button-secondary { min-width: 145px; }

/* Server info visibility */
.gw-server-hero > div > p:not(.gw-kicker) {
	color: #b9b9bf;
	font-size: 12px;
	line-height: 1.7;
}

.gw-server-address span {
	color: #b4777c;
	font-size: 9px;
}

.gw-server-address strong { font-size: 18px; }

.gw-server-address small {
	color: #dbbd7b;
	font-size: 10px;
}

.gw-server-motd strong {
	color: #d0d0d5;
	font-size: 11px;
	line-height: 1.55;
}

.gw-server-facts > div {
	grid-template-columns: 31px minmax(0, 1fr);
	min-height: 78px;
	padding: 14px 16px;
}

.gw-server-facts > div > span {
	color: #c51e29;
	font-size: 13px;
}

.gw-server-facts small {
	color: #9b9ba1;
	font-size: 8px;
}

.gw-server-facts strong {
	color: #ededf0;
	font-size: 12px;
}

.gw-server-panel .gw-profile-panel__head {
	min-height: 72px;
	padding: 15px 19px;
}

.gw-server-panel .gw-profile-panel__head .gw-kicker {
	color: #b37378;
	font-size: 8.5px;
}

.gw-server-panel .gw-profile-panel__head h2 {
	color: #f0f0f2;
	font-size: 18px;
}

.gw-rate-grid > div {
	min-height: 85px;
	padding: 14px;
}

.gw-rate-grid > div > span {
	width: 26px;
	height: 26px;
	font-size: 8px;
}

.gw-rate-grid strong { font-size: 19px; }

.gw-rate-grid small {
	color: #a0a0a6;
	font-size: 9px;
}

.gw-server-panel__note {
	color: #aaaab0;
	font-size: 10px;
	line-height: 1.5;
}

.gw-server-settings > div {
	min-height: 49px;
	padding: 11px 16px;
}

.gw-server-settings dt {
	color: #b2b2b8;
	font-size: 10px;
}

.gw-server-settings dd {
	color: #ededf0;
	font-size: 10px;
}

.gw-system-list > div {
	grid-template-columns: 39px minmax(0, 1fr);
	min-height: 76px;
	padding: 13px 16px;
}

.gw-system-list > div > span {
	width: 35px;
	height: 35px;
	color: #9a9aa0;
	font-size: 8px;
}

.gw-system-list strong {
	color: #c8c8cd;
	font-size: 11px;
}

.gw-system-list small {
	color: #909096;
	font-size: 9px;
}

.gw-system-list > div.is-active small { color: #68ce95; }

.gw-skull-overview > div { padding: 18px; }

.gw-skull-overview small {
	color: #ad7075;
	font-size: 8px;
}

.gw-skull-overview strong { font-size: 14px; }

.gw-frag-limits > div { padding: 17px; }

.gw-frag-limits span {
	color: #b77379;
	font-size: 8px;
}

.gw-frag-limits strong { font-size: 19px; }

.gw-frag-limits small {
	color: #99999f;
	font-size: 9px;
}

.gw-server-penalties span {
	color: #b5b5ba;
	font-size: 9px;
}

.gw-server-rules h3 { font-size: 16px; }

.gw-server-rules p:not(.gw-kicker) {
	color: #aaaab0;
	font-size: 10px;
	line-height: 1.55;
}

/* Houses */
.gw-house-notice {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
	padding: 16px 18px;
	border: 1px solid rgba(199,170,120,.22);
	background: linear-gradient(90deg, rgba(199,170,120,.07), #111113 58%);
}

.gw-house-notice > span {
	display: grid;
	place-items: center;
	width: 33px;
	height: 33px;
	color: #d1ad69;
	border: 1px solid rgba(199,170,120,.36);
	clip-path: polygon(50% 0,100% 50%,50% 100%,0 50%);
	font-size: 8px;
}

.gw-house-notice strong { display: block; margin-top: 4px; color: #dbdbde; font: 600 12px/1.3 var(--font-display); }
.gw-house-notice p:not(.gw-kicker) { margin: 5px 0 0; color: #85858b; font-size: 9px; line-height: 1.55; }

.gw-house-results {
	overflow: hidden;
	margin-bottom: 16px;
	border: 1px solid var(--line);
	background: #101012;
}

.gw-house-table { min-width: 680px; }
.gw-house-table td:first-child strong { color: #dedee1; font: 600 11px/1.3 var(--font-display); }
.gw-house-table td:last-child { width: 80px; text-align: right; }
.gw-house-size { color: #d3b476; font-weight: 700; }

.gw-house-status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 8px;
	border: 1px solid var(--line);
	font-size: 8px;
}

.gw-house-status::before {
	content: "";
	width: 6px;
	height: 6px;
	background: currentColor;
	box-shadow: 0 0 7px currentColor;
	transform: rotate(45deg);
}

.gw-house-status.is-free { color: #50c982; border-color: rgba(80,201,130,.24); background: rgba(80,201,130,.055); }
.gw-house-status.is-rented { color: #c7a968; border-color: rgba(199,169,104,.23); background: rgba(199,169,104,.05); }
.gw-house-status a { color: inherit; font-weight: 700; }

.gw-house-search {
	overflow: hidden;
	border: 1px solid var(--line);
	background: linear-gradient(145deg, rgba(24,24,27,.92), rgba(12,12,14,.97));
}

.gw-house-search__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 19px 21px;
	border-bottom: 1px solid #351116;
	background: linear-gradient(90deg, rgba(124,12,19,.13), transparent 55%);
}

.gw-house-search__head h2 { margin: 4px 0 0; color: #ebebed; font: 600 18px/1.2 var(--font-display); }
.gw-house-search__head p:not(.gw-kicker) { margin: 5px 0 0; color: #79797f; font-size: 9px; }
.gw-house-search__head > span { color: #86141b; font: 600 31px/1 var(--font-display); }

.gw-house-search__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	padding: 21px;
}

.gw-house-filter {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.gw-house-filter--towns { grid-column: 1 / -1; }
.gw-house-filter legend {
	margin-bottom: 9px;
	color: #a9a9af;
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.gw-house-filter > div {
	display: grid;
	gap: 7px;
}

.gw-house-filter--towns > div {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gw-house-filter label {
	position: relative;
	display: block;
	cursor: pointer;
}

.gw-house-filter input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.gw-house-filter label > span {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 39px;
	padding: 8px 10px 8px 30px;
	overflow: hidden;
	color: #85858b;
	border: 1px solid #2e2e33;
	background: #0d0d0f;
	font-size: 8px;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.gw-house-filter label > span::before {
	content: "";
	position: absolute;
	left: 12px;
	width: 7px;
	height: 7px;
	border: 1px solid #4c4c52;
	background: #111113;
	transform: rotate(45deg);
}

.gw-house-filter input:checked + span {
	color: #fff;
	border-color: #8d151d;
	background: linear-gradient(90deg, rgba(184,19,29,.16), #111113);
}

.gw-house-filter input:checked + span::before {
	border-color: var(--red-bright);
	background: var(--red);
	box-shadow: 0 0 8px rgba(217,31,43,.35);
}

.gw-house-filter input:focus-visible + span { outline: 2px solid rgba(240,56,69,.42); outline-offset: 2px; }

.gw-house-search__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 15px 21px;
	border-top: 1px solid var(--line);
	background: rgba(0,0,0,.16);
}

.gw-house-search__actions p { margin: 0; color: #6d6d73; font-size: 8px; }
.gw-house-search__actions p span { margin-right: 6px; color: #81141b; font-size: 6px; }
.gw-house-search__actions .form-button { min-width: 135px; }

.gw-house-view {
	display: grid;
	grid-template-columns: minmax(270px, .9fr) minmax(0, 1.1fr);
	min-height: 330px;
	overflow: hidden;
	margin-bottom: 18px;
	border: 1px solid #351116;
	background: linear-gradient(140deg, rgba(119,11,18,.14), #111113 48%);
}

.gw-house-view__image {
	position: relative;
	display: grid;
	place-items: center;
	min-width: 0;
	padding: 22px;
	overflow: hidden;
	border-right: 1px solid var(--line);
	background:
		linear-gradient(135deg, rgba(255,255,255,.018), transparent),
		#0b0b0d;
}

.gw-house-view__image::before {
	content: "";
	position: absolute;
	width: 230px;
	height: 230px;
	border: 1px solid rgba(153,18,27,.13);
	transform: rotate(45deg);
}

.gw-house-view__image img {
	position: relative;
	z-index: 1;
	max-width: 100%;
	max-height: 290px;
	border: 1px solid #35353a;
	box-shadow: 0 17px 42px rgba(0,0,0,.45);
	image-rendering: auto;
}

.gw-house-view__image .gw-house-status { position: absolute; z-index: 2; right: 14px; bottom: 14px; }

.gw-house-view__content {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 30px;
}

.gw-house-view__content h1 { margin: 7px 0 0; color: #ededf0; font: 600 clamp(24px, 4vw, 34px)/1.12 var(--font-display); }
.gw-house-view__lead { margin: 10px 0 0; color: #85858b; font-size: 9px; line-height: 1.6; }
.gw-house-view__metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; margin-top: 22px; border: 1px solid var(--line); }
.gw-house-view__metrics > div { min-width: 0; padding: 12px; border-right: 1px solid var(--line); }
.gw-house-view__metrics > div:last-child { border-right: 0; }
.gw-house-view__metrics small,
.gw-house-view__metrics strong { display: block; }
.gw-house-view__metrics small { margin-bottom: 6px; color: #765055; font-size: 6px; font-weight: 700; letter-spacing: .1em; }
.gw-house-view__metrics strong { overflow: hidden; color: #d7d7da; font: 600 9px/1.3 var(--font-display); text-overflow: ellipsis; white-space: nowrap; }
.gw-house-view__metrics strong a { color: #d7b778; }
.gw-house-view__note { margin: 14px 0; color: #74747a; font-size: 8px; }
.gw-house-view__note span { margin-right: 6px; color: #83151c; font-size: 6px; }

/* Character profile */
.gw-character-profile {
	display: grid;
	gap: 16px;
}

.gw-profile-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 165px;
	align-items: center;
	min-height: 188px;
	overflow: hidden;
	padding: 30px 32px;
	border: 1px solid #351116;
	background:
		radial-gradient(circle at 82% 45%, rgba(170,20,30,.17), transparent 23%),
		linear-gradient(110deg, rgba(120,11,18,.22), transparent 52%),
		#101012;
}

.gw-profile-hero::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 42%;
	height: 100%;
	opacity: .23;
	background: repeating-linear-gradient(125deg, transparent 0 15px, rgba(255,255,255,.025) 15px 16px);
}

.gw-profile-hero__identity {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.gw-profile-hero__name {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}

.gw-profile-hero__name h1 {
	margin: 0;
	overflow: hidden;
	color: #f0f0f2;
	font: 600 clamp(25px, 4vw, 38px)/1.08 var(--font-display);
	text-overflow: ellipsis;
}

.gw-profile-hero__subtitle {
	margin: 13px 0 0;
	color: #a0a0a6;
	font-size: 10px;
}

.gw-profile-hero__subtitle span {
	margin: 0 8px;
	color: #8d151c;
	font-size: 6px;
}

.gw-profile-old-name {
	margin-top: 9px;
	color: #77777d;
	font-size: 8px;
}

.gw-profile-outfit {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	justify-self: end;
	width: 138px;
	height: 138px;
}

.gw-profile-outfit::before,
.gw-profile-outfit::after,
.gw-profile-outfit > span {
	content: "";
	position: absolute;
	inset: 19px;
	border: 1px solid rgba(213,42,53,.27);
	transform: rotate(45deg);
}

.gw-profile-outfit::after { inset: 30px; border-color: rgba(199,170,120,.22); }
.gw-profile-outfit > span { inset: 7px; border-color: rgba(255,255,255,.045); }

.gw-profile-outfit img {
	position: relative;
	z-index: 2;
	width: 128px;
	height: 128px;
	object-fit: contain;
	image-rendering: pixelated;
	filter: drop-shadow(0 10px 8px rgba(0,0,0,.6));
	transform: translate(-19px, -19px) scale(1.06);
	transform-origin: center;
}

.gw-profile-edit {
	position: absolute;
	z-index: 3;
	top: 15px;
	right: 16px;
	padding: 6px 9px;
	color: #b8787d;
	border: 1px solid rgba(184,28,38,.35);
	background: rgba(74,10,15,.35);
	font-size: 8px;
	font-weight: 700;
}

.gw-profile-edit:hover { color: #fff; border-color: #a81822; }

.gw-profile-metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border: 1px solid var(--line);
	background: #101012;
}

.gw-profile-metrics > div {
	min-width: 0;
	padding: 14px 16px;
	border-right: 1px solid var(--line);
}

.gw-profile-metrics > div:last-child { border-right: 0; }
.gw-profile-metrics small,
.gw-profile-metrics strong { display: block; }
.gw-profile-metrics small { margin-bottom: 6px; color: #755055; font-size: 7px; font-weight: 700; letter-spacing: .13em; }
.gw-profile-metrics strong { overflow: hidden; color: #d9d9dc; font: 600 12px/1.25 var(--font-display); text-overflow: ellipsis; white-space: nowrap; }

.gw-profile-panel {
	overflow: hidden;
	border: 1px solid var(--line);
	background: linear-gradient(145deg, rgba(24,24,27,.9), rgba(13,13,15,.96));
}

.gw-profile-panel__head,
.gw-signature-panel > summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 65px;
	padding: 13px 17px;
	border-bottom: 1px solid var(--line);
	background: rgba(255,255,255,.012);
}

.gw-profile-panel__head h2,
.gw-signature-panel > summary h2 {
	margin: 4px 0 0;
	color: #e5e5e8;
	font: 600 16px/1.2 var(--font-display);
}

.gw-profile-panel__head > span img {
	max-width: 28px;
	image-rendering: pixelated;
}

.gw-profile-panel__mark { color: #711219; font-size: 10px; }
.gw-profile-panel__count {
	display: grid;
	place-items: center;
	min-width: 29px;
	height: 29px;
	color: #d7b874;
	border: 1px solid rgba(199,170,120,.28);
	background: rgba(199,170,120,.045);
	font: 700 9px/1 var(--font-display);
}

.gw-profile-details {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
}

.gw-profile-details > div {
	display: grid;
	grid-template-columns: 128px minmax(0, 1fr);
	min-height: 47px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.gw-profile-details > div:nth-child(even) { border-right: 0; }
.gw-profile-details dt,
.gw-profile-details dd {
	display: flex;
	align-items: center;
	min-width: 0;
	margin: 0;
	padding: 10px 12px;
}

.gw-profile-details dt {
	color: #77777d;
	border-right: 1px solid var(--line);
	font-size: 9px;
}

.gw-profile-details dd {
	gap: 9px;
	color: #c6c6ca;
	font-size: 9px;
	word-break: break-word;
}

.gw-profile-details dd > strong.is-online { color: #55cf85; }
.gw-profile-details dd > strong.is-offline { color: #d34c56; }
.gw-profile-details dd form { display: inline-flex; margin-left: auto; }
.gw-profile-details--compact { grid-template-columns: 1fr; }
.gw-profile-details--compact > div,
.gw-profile-details--compact > div:nth-child(even) { border-right: 0; }
.gw-ban-label { padding: 4px 7px; color: #ee6c75; border: 1px solid rgba(213,42,53,.28); background: rgba(213,42,53,.07); font-size: 8px; }

.gw-profile-comment {
	padding: 15px 17px;
	border-top: 1px solid var(--line);
	background: rgba(0,0,0,.14);
}

.gw-profile-comment > span { color: #805257; font-size: 7px; font-weight: 700; letter-spacing: .14em; }
.gw-profile-comment p { margin: 8px 0 0; color: #9b9ba1; font-size: 9px; line-height: 1.65; }

.gw-profile-columns {
	display: grid;
	grid-template-columns: minmax(220px, .75fr) minmax(330px, 1.25fr);
	gap: 16px;
}

.gw-profile-columns > .gw-profile-panel { min-width: 0; }
.gw-profile-panel--equipment {
	display: flex;
	flex-direction: column;
}

.gw-skill-list { padding: 7px 0; }
.gw-skill-list > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 38px;
	padding: 8px 14px;
	border-bottom: 1px solid rgba(255,255,255,.045);
}
.gw-skill-list > div:last-child { border-bottom: 0; }
.gw-skill-list span { color: #8c8c92; font-size: 9px; text-transform: capitalize; }
.gw-skill-list strong { min-width: 31px; color: #e0e0e3; font: 600 11px/1 var(--font-display); text-align: right; }

.gw-equipment-board {
	position: relative;
	display: grid;
	flex: 1;
	grid-template-columns: repeat(3, 48px);
	grid-template-rows: repeat(4, 48px);
	place-content: center;
	gap: 7px;
	width: 100%;
	min-height: 275px;
	padding: 22px 16px;
	background:
		radial-gradient(circle at center, rgba(130,17,24,.1), transparent 42%),
		repeating-linear-gradient(135deg, transparent 0 14px, rgba(255,255,255,.012) 14px 15px);
}

.gw-equipment-board::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 164px;
	height: 164px;
	border: 1px solid rgba(199,170,120,.08);
	transform: translate(-50%, -50%) rotate(45deg);
}

.gw-eq-slot {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	overflow: hidden;
	border: 1px solid #3b3b41;
	background: rgba(8,8,10,.9);
	box-shadow: inset 0 0 15px rgba(0,0,0,.48);
}

.gw-eq-slot::before {
	content: "";
	position: absolute;
	inset: 4px;
	border: 1px solid rgba(255,255,255,.025);
	pointer-events: none;
}

.gw-eq-slot img { position: relative; z-index: 1; max-width: 40px; max-height: 40px; image-rendering: pixelated; }
.gw-eq-slot--head { grid-area: 1 / 2; }
.gw-eq-slot--neck { grid-area: 1 / 1; }
.gw-eq-slot--back { grid-area: 1 / 3; }
.gw-eq-slot--armor { grid-area: 2 / 2; }
.gw-eq-slot--left { grid-area: 2 / 1; }
.gw-eq-slot--right { grid-area: 2 / 3; }
.gw-eq-slot--legs { grid-area: 3 / 2; }
.gw-eq-slot--ring { grid-area: 3 / 1; }
.gw-eq-slot--ammo { grid-area: 3 / 3; }
.gw-eq-slot--feet { grid-area: 4 / 2; }
.gw-equipment-skull { position: absolute; z-index: 2; right: 17px; bottom: 17px; image-rendering: pixelated; }

.gw-quest-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: var(--line);
}

.gw-quest-grid > div {
	display: grid;
	grid-template-columns: 27px minmax(0, 1fr);
	align-items: center;
	min-height: 55px;
	padding: 10px 13px;
	background: #111113;
}

.gw-quest-grid > div > span { grid-row: 1 / 3; color: #9f323a; font: 700 13px/1 var(--font-display); }
.gw-quest-grid strong { color: #bcbcc1; font-size: 9px; }
.gw-quest-grid small { margin-top: 3px; color: #67676d; font-size: 7px; }
.gw-quest-grid > div.is-complete > span { color: #4dbb7a; }

.gw-combat-log > div {
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr);
	align-items: center;
	min-height: 47px;
	border-bottom: 1px solid var(--line);
}
.gw-combat-log > div:last-child { border-bottom: 0; }
.gw-combat-log time { align-self: stretch; display: flex; align-items: center; padding: 10px 13px; color: #77777d; border-right: 1px solid var(--line); font-size: 8px; }
.gw-combat-log p { margin: 0; padding: 10px 14px; color: #aaaab0; font-size: 9px; line-height: 1.55; }
.gw-combat-log .is-unjustified,
.gw-combat-log .is-justified { display: inline-block; margin-left: 5px; padding: 3px 5px; font-size: 7px; }
.gw-combat-log .is-unjustified { color: #e25b65; background: rgba(213,42,53,.08); }
.gw-combat-log .is-justified { color: #58c887; background: rgba(74,220,132,.06); }

.gw-signature-panel > summary {
	cursor: pointer;
	list-style: none;
}
.gw-signature-panel > summary::-webkit-details-marker { display: none; }
.gw-signature-panel > summary > span { color: #a55b61; font-size: 8px; font-weight: 700; }
.gw-signature-panel[open] > summary > span { color: #77777d; }
.gw-signature-panel__body { display: grid; justify-items: center; gap: 18px; padding: 20px; }
.gw-signature-panel__body > img { max-width: 100%; border: 1px solid #38383d; }
.gw-signature-links { display: grid; gap: 9px; width: 100%; }
.gw-signature-links label { display: grid; grid-template-columns: 110px minmax(0, 1fr); align-items: center; gap: 10px; }
.gw-signature-links label > span { color: #77777d; font-size: 8px; }
.gw-signature-links input { width: 100%; min-width: 0; height: 36px; color: #8f8f95; font: 8px/1 Consolas, monospace; }

.gw-account-character-list form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto 64px;
	align-items: center;
	gap: 14px;
	min-height: 61px;
	margin: 0;
	padding: 10px 14px;
	border-bottom: 1px solid var(--line);
}
.gw-account-character-list form:last-child { border-bottom: 0; }
.gw-account-character-list form > div,
.gw-account-character-list strong,
.gw-account-character-list form > div > span { display: block; min-width: 0; }
.gw-account-character-list strong { overflow: hidden; color: #d1d1d5; font: 600 11px/1.3 var(--font-display); text-overflow: ellipsis; white-space: nowrap; }
.gw-account-character-list strong small { color: #d44c56; font-size: 7px; }
.gw-account-character-list form > div > span { margin-top: 5px; color: #707076; font-size: 8px; }

/* Character creator */
.gw-character-form {
	overflow: hidden;
	border: 1px solid #2b2b30;
	background:
		linear-gradient(135deg, rgba(139,15,23,.06), transparent 28%),
		#101012;
	box-shadow: 0 22px 55px rgba(0,0,0,.22);
}

.gw-character-form__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 74px;
	padding: 14px 22px;
	border-bottom: 1px solid #381116;
	background:
		linear-gradient(90deg, rgba(119,11,18,.2), transparent 55%),
		#121214;
}

.gw-character-form__top > div {
	display: flex;
	align-items: center;
	gap: 13px;
}

.gw-character-form__crest {
	display: grid;
	place-items: center;
	width: 37px;
	height: 43px;
	color: #fff;
	border: 1px solid #87131b;
	background: #180c0f;
	clip-path: polygon(50% 0, 93% 20%, 88% 75%, 50% 100%, 12% 75%, 7% 20%);
	font: 700 14px/1 var(--font-display);
}

.gw-character-form__top p,
.gw-character-form__top small,
.gw-character-form__top strong {
	display: block;
	margin: 0;
}

.gw-character-form__top small {
	margin-bottom: 5px;
	color: #8e5a5f;
	font-size: 7px;
	font-weight: 700;
	letter-spacing: .16em;
}

.gw-character-form__top strong {
	color: #e4e4e7;
	font: 600 13px/1.2 var(--font-display);
}

.gw-character-form__progress {
	padding: 7px 10px;
	color: #6f6f75;
	border: 1px solid #2b2b30;
	background: rgba(0,0,0,.16);
	font-size: 7px;
	font-weight: 700;
	letter-spacing: .1em;
}

.gw-character-form__progress b { color: var(--red-bright); }

.gw-character-block {
	padding: 24px 22px;
	border-bottom: 1px solid var(--line);
}

.gw-character-block__head {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	margin-bottom: 19px;
}

.gw-character-block__head > span {
	display: grid;
	place-items: center;
	width: 31px;
	height: 31px;
	color: #d82531;
	border: 1px solid #651017;
	background: #180d0f;
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
	font: 700 8px/1 var(--font-display);
}

.gw-character-block__head p,
.gw-character-block__head h3 {
	margin: 0;
}

.gw-character-block__head p {
	margin-bottom: 4px;
	color: #87575b;
	font-size: 7px;
	font-weight: 700;
	letter-spacing: .17em;
}

.gw-character-block__head h3 {
	color: #e5e5e8;
	font: 600 16px/1.2 var(--font-display);
}

.gw-character-identity {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(210px, .8fr);
	align-items: start;
	gap: 22px;
}

.gw-character-name { margin: 0; }
.gw-character-name input {
	width: 100%;
	min-height: 48px;
	padding-inline: 14px;
}

.gw-character-name small { display: block; padding-top: 5px; }

.gw-character-gender {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.gw-character-gender legend {
	margin-bottom: 7px;
	color: #aaaab0;
	font-size: 10px;
	font-weight: 600;
}

.gw-character-gender > div {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.gw-character-gender label,
.gw-vocation-card,
.gw-town-card {
	position: relative;
	display: block;
	cursor: pointer;
}

.gw-character-gender input,
.gw-vocation-card input,
.gw-town-card input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.gw-character-gender label > span {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 48px;
	padding: 9px 11px;
	color: #8b8b91;
	border: 1px solid #303035;
	background: #0c0c0e;
	font-size: 9px;
	transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.gw-character-gender label i {
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	color: #696970;
	border: 1px solid #44444a;
	font: 700 7px/1 var(--font-display);
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.gw-character-gender input:checked + span {
	color: #fff;
	border-color: #8c151d;
	background: linear-gradient(90deg, rgba(183,19,29,.18), #111113);
}

.gw-character-gender input:checked + span i {
	color: #fff;
	border-color: #d62a35;
	background: #8e1119;
	box-shadow: 0 0 10px rgba(214,42,53,.24);
}

.gw-character-rule {
	margin: 15px 0 0;
	padding-top: 12px;
	color: #6f6f75;
	border-top: 1px solid rgba(255,255,255,.045);
	font-size: 8px;
}

.gw-character-rule span { margin-right: 6px; color: #7f151c; font-size: 6px; }
.gw-character-rule a { color: #b78864; }

.gw-vocation-picker {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px;
}

.gw-vocation-card > span {
	display: grid;
	grid-template-columns: 35px minmax(0, 1fr) 24px;
	align-items: center;
	gap: 12px;
	min-height: 66px;
	padding: 10px 13px;
	color: #aaaab0;
	border: 1px solid #2d2d32;
	background:
		linear-gradient(110deg, rgba(255,255,255,.018), transparent 55%),
		#0d0d0f;
	transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.gw-vocation-card:hover > span {
	color: #dedee1;
	border-color: #48484e;
	transform: translateY(-1px);
}

.gw-vocation-card__number {
	display: grid;
	place-items: center;
	width: 31px;
	height: 31px;
	color: #7a7a80;
	border: 1px solid #3c3c42;
	background: #121214;
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
	font: 700 8px/1 var(--font-display);
}

.gw-vocation-card__copy,
.gw-vocation-card__copy b,
.gw-vocation-card__copy small {
	display: block;
	min-width: 0;
}

.gw-vocation-card__copy b {
	overflow: hidden;
	color: inherit;
	font: 600 11px/1.3 var(--font-display);
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gw-vocation-card__copy small {
	margin-top: 5px;
	color: #69696f;
	font-size: 7px;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.gw-vocation-card__check {
	display: grid;
	place-items: center;
	width: 19px;
	height: 19px;
	color: transparent;
	border: 1px solid #3b3b41;
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
	font: 700 9px/1 var(--font-body);
}

.gw-vocation-card input:checked + span {
	color: #fff;
	border-color: #9c161f;
	background:
		linear-gradient(105deg, rgba(186,19,29,.19), transparent 60%),
		#111113;
	box-shadow: inset 3px 0 #c51e29;
}

.gw-vocation-card input:checked + span .gw-vocation-card__number {
	color: #f0c4c7;
	border-color: #9c161f;
	background: #4d0d12;
}

.gw-vocation-card input:checked + span .gw-vocation-card__check {
	color: #fff;
	border-color: #d52a35;
	background: #a8131d;
}

.gw-town-picker {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 9px;
}

.gw-town-card > span {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	align-items: center;
	min-height: 59px;
	padding: 11px 13px;
	color: #929298;
	border: 1px solid #2d2d32;
	background: #0d0d0f;
	transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.gw-town-card i {
	grid-row: 1 / 3;
	color: #641117;
	font-size: 8px;
}

.gw-town-card b {
	overflow: hidden;
	font: 600 10px/1.25 var(--font-display);
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gw-town-card small {
	margin-top: 3px;
	color: #626268;
	font-size: 7px;
	text-transform: uppercase;
}

.gw-town-card input:checked + span {
	color: #fff;
	border-color: #8f151d;
	background: linear-gradient(110deg, rgba(183,19,29,.18), #111113);
}

.gw-town-card input:checked + span i { color: var(--red-bright); }

.gw-character-gender input:focus-visible + span,
.gw-vocation-card input:focus-visible + span,
.gw-town-card input:focus-visible + span {
	outline: 2px solid rgba(240,56,69,.42);
	outline-offset: 2px;
}

.gw-character-form__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 17px 22px;
	background: rgba(0,0,0,.2);
}

.gw-character-form__footer p {
	margin: 0;
	color: #68686e;
	font-size: 8px;
}

.gw-character-form__footer p span {
	margin-right: 6px;
	color: #7c151c;
	font-size: 6px;
}

.gw-character-form__footer > div {
	display: flex;
	gap: 10px;
}

.gw-character-form__footer .form-button,
.gw-character-form__footer .gw-button-secondary {
	min-width: 128px;
	min-height: 40px;
}

/* Registration and password strength */
.gw-registration {
	width: 100%;
	max-width: 1050px;
	margin: 0 auto;
}

.gw-register-layout {
	display: grid;
	grid-template-columns: 255px minmax(0, 1fr);
	align-items: start;
	gap: 18px;
}

.gw-register-aside {
	position: sticky;
	top: 18px;
	overflow: hidden;
	padding: 25px 21px;
	border: 1px solid #361116;
	background:
		radial-gradient(circle at 15% 5%, rgba(177,20,29,.18), transparent 25%),
		linear-gradient(155deg, rgba(116,11,18,.15), transparent 45%),
		#101012;
}

.gw-register-aside__crest {
	display: grid;
	place-items: center;
	width: 45px;
	height: 52px;
	margin-bottom: 21px;
	color: #fff;
	border: 1px solid #94151e;
	background: #180c0f;
	clip-path: polygon(50% 0,93% 20%,88% 75%,50% 100%,12% 75%,7% 20%);
	font: 700 16px/1 var(--font-display);
}

.gw-register-aside h2 {
	margin: 7px 0 0;
	color: #ededf0;
	font: 600 22px/1.15 var(--font-display);
}

.gw-register-aside > div:first-child > p:not(.gw-kicker) {
	margin: 12px 0 0;
	color: #85858b;
	font-size: 9px;
	line-height: 1.65;
}

.gw-register-steps {
	display: grid;
	gap: 0;
	margin: 25px 0 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--line);
}

.gw-register-steps li {
	position: relative;
	display: grid;
	grid-template-columns: 27px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	min-height: 62px;
	padding: 9px 0;
	border-bottom: 1px solid var(--line);
}

.gw-register-steps li > span {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	color: #626268;
	border: 1px solid #39393f;
	background: #0c0c0e;
	clip-path: polygon(50% 0,100% 50%,50% 100%,0 50%);
	font: 700 6px/1 var(--font-display);
}

.gw-register-steps strong,
.gw-register-steps small { display: block; }
.gw-register-steps strong { color: #aaaab0; font-size: 9px; }
.gw-register-steps small { margin-top: 4px; color: #606066; font-size: 7px; line-height: 1.35; }
.gw-register-steps li.is-active > span { color: #fff; border-color: #bd1b26; background: #831018; }
.gw-register-steps li.is-active strong { color: #fff; }
.gw-register-steps li.is-active small { color: #87575b; }

.gw-register-aside__security {
	display: grid;
	grid-template-columns: 25px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	margin-top: 18px;
	padding: 12px;
	border: 1px solid rgba(199,170,120,.18);
	background: rgba(199,170,120,.035);
}
.gw-register-aside__security > span { color: #c6a665; font-size: 8px; text-align: center; }
.gw-register-aside__security p { margin: 0; }
.gw-register-aside__security strong,
.gw-register-aside__security small { display: block; }
.gw-register-aside__security strong { color: #b8b8bd; font-size: 8px; }
.gw-register-aside__security small { margin-top: 4px; color: #69696f; font-size: 7px; line-height: 1.4; }

.gw-register-login {
	margin: 18px 0 0;
	color: #6f6f75;
	font-size: 8px;
}
.gw-register-login a { color: #d16970; font-weight: 700; }

.gw-register-form { min-width: 0; }
.gw-register-form__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	min-height: 48px;
	padding: 11px 18px;
	border-bottom: 1px solid #371116;
	background: linear-gradient(90deg, rgba(127,12,19,.15), transparent 55%);
}
.gw-register-form__bar span { color: #87575b; font-size: 7px; font-weight: 700; letter-spacing: .14em; }
.gw-register-form__bar strong { color: #c9c9cd; font: 600 9px/1 var(--font-display); }
.gw-register-form .gw-form-section__head h3 { font-size: 18px; }
.gw-register-form .gw-form-section { padding: 25px; }
.gw-register-form .gw-form-section--account {
	background: linear-gradient(120deg, rgba(133,15,22,.035), transparent 42%);
}

.gw-registration .gw-form-stack {
	max-width: none;
}

.gw-registration-choices {
	display: grid;
	gap: 18px;
	margin-top: 20px;
}

.gw-form-hint {
	margin: -7px 0 0;
	color: #77777d;
	font-size: 9px;
}

.gw-form-hint::before {
	content: "◆";
	margin-right: 7px;
	color: #7e171e;
	font-size: 6px;
}

#SuggestAccountNumber {
	min-height: 0;
	margin-left: 5px;
	color: #6f6f75;
	font-weight: 400;
}

#SuggestAccountNumber a { color: #b36c72; }
#SuggestAccountNumber a:hover { color: #f0a0a6; }

.gw-form-section--rules {
	background: linear-gradient(90deg, rgba(142,20,27,.075), transparent 72%);
}

.gw-rules-check {
	position: relative;
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	align-items: center;
	gap: 11px;
	color: #a9a9ae;
	cursor: pointer;
	font-size: 10px;
	line-height: 1.55;
}

.gw-rules-check input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.gw-rules-check::before {
	content: "";
	display: block;
	width: 13px;
	height: 13px;
	border: 1px solid #55555b;
	background: #0b0b0d;
	transform: rotate(45deg);
	transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.gw-rules-check:has(input:checked)::before {
	border-color: var(--red-bright);
	background: var(--red);
	box-shadow: 0 0 10px rgba(217,31,43,.38);
}

.gw-rules-check:has(input:focus-visible)::before {
	outline: 2px solid rgba(240,56,69,.4);
	outline-offset: 3px;
}

.gw-rules-check a { color: #d5b77f; }

.gw-password-strength {
	margin-top: -2px;
	padding: 13px 14px;
	border: 1px solid #29292e;
	background:
		linear-gradient(100deg, rgba(150,19,27,.055), transparent 48%),
		#0e0e10;
}

.gw-password-strength__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 9px;
	color: #74747a;
	font-size: 8px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
}

.gw-password-strength__head strong {
	color: #77777d;
	font: 700 9px/1 var(--font-body);
	letter-spacing: .07em;
	transition: color .2s ease;
}

.gw-password-strength__track {
	height: 4px;
	overflow: hidden;
	background: #242428;
}

.gw-password-strength__track i {
	display: block;
	width: 0;
	height: 100%;
	background: #4c4c52;
	box-shadow: 0 0 10px currentColor;
	transition: width .25s ease, background .25s ease;
}

.gw-password-strength[data-score="1"] .gw-password-strength__track i { width: 25%; background: #b41420; }
.gw-password-strength[data-score="2"] .gw-password-strength__track i { width: 50%; background: #ce682c; }
.gw-password-strength[data-score="3"] .gw-password-strength__track i { width: 75%; background: #c19d52; }
.gw-password-strength[data-score="4"] .gw-password-strength__track i { width: 100%; background: #3aad6d; }
.gw-password-strength[data-score="1"] .gw-password-strength__head strong { color: #e3545e; }
.gw-password-strength[data-score="2"] .gw-password-strength__head strong { color: #e48a4f; }
.gw-password-strength[data-score="3"] .gw-password-strength__head strong { color: #d5b77f; }
.gw-password-strength[data-score="4"] .gw-password-strength__head strong { color: #65d693; }

.gw-password-strength__rules {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 7px 16px;
	margin-top: 12px;
}

.gw-password-strength__rules span {
	position: relative;
	padding-left: 16px;
	color: #69696f;
	font-size: 8px;
	line-height: 1.35;
	transition: color .18s ease;
}

.gw-password-strength__rules span::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 2px;
	width: 6px;
	height: 6px;
	border: 1px solid #48484e;
	background: #111113;
	transform: rotate(45deg);
	transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.gw-password-strength__rules span.is-passed { color: #aaaab0; }
.gw-password-strength__rules span.is-passed::before {
	border-color: #3aad6d;
	background: #278652;
	box-shadow: 0 0 7px rgba(58,173,109,.35);
}

/* Registration visibility */
.gw-register-hint {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	width: 100%;
	max-width: 1050px;
	margin: 0 auto 26px;
	padding: 20px 22px;
	color: #bdbdc3;
	border: 1px solid #4a2529;
	border-left: 3px solid #bd1b26;
	background:
		linear-gradient(100deg, rgba(151,18,27,.13), transparent 62%),
		#121214;
	box-shadow: inset 0 1px rgba(255,255,255,.025);
}

.gw-register-hint__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	color: #fff;
	border: 1px solid #b51b25;
	background: #541016;
	font: 700 15px/1 var(--font-display);
	transform: rotate(45deg);
}

.gw-register-hint__icon::before {
	content: "i";
	display: block;
	transform: rotate(-45deg);
}

.gw-register-hint .gw-kicker {
	margin: 0 0 5px;
	color: #c17b80;
	font-size: 9px;
}

.gw-register-hint h2 {
	margin: 0;
	color: #f0f0f2;
	font: 600 20px/1.25 var(--font-display);
}

.gw-register-hint p:last-child {
	max-width: 820px;
	margin: 7px 0 0;
	color: #b1b1b7;
	font-size: 11px;
	line-height: 1.65;
}

.gw-register-hint strong { color: #ededf0; }

.gw-register-layout {
	grid-template-columns: 285px minmax(0, 1fr);
	gap: 22px;
}

.gw-register-aside {
	padding: 29px 25px;
	border-color: #4b171d;
	box-shadow: inset 0 1px rgba(255,255,255,.025);
}

.gw-register-aside h2 {
	font-size: 25px;
	line-height: 1.2;
}

.gw-register-aside > div:first-child > p:not(.gw-kicker) {
	color: #aaaab0;
	font-size: 11px;
	line-height: 1.65;
}

.gw-register-steps li {
	grid-template-columns: 30px minmax(0, 1fr);
	gap: 12px;
	min-height: 70px;
}

.gw-register-steps li > span {
	width: 28px;
	height: 28px;
	color: #85858b;
	border-color: #4a4a50;
	font-size: 8px;
}

.gw-register-steps strong {
	color: #c2c2c7;
	font-size: 11px;
}

.gw-register-steps small {
	margin-top: 5px;
	color: #8d8d93;
	font-size: 9px;
	line-height: 1.45;
}

.gw-register-steps li.is-active small { color: #ba7c81; }

.gw-register-aside__security {
	grid-template-columns: 30px minmax(0, 1fr);
	gap: 12px;
	padding: 15px;
	border-color: rgba(199,170,120,.3);
	background: rgba(199,170,120,.055);
}

.gw-register-aside__security > span {
	color: #d5b77f;
	font-size: 11px;
}

.gw-register-aside__security strong {
	color: #d0d0d4;
	font-size: 10px;
}

.gw-register-aside__security small {
	margin-top: 5px;
	color: #929298;
	font-size: 8.5px;
	line-height: 1.5;
}

.gw-register-login {
	color: #98989e;
	font-size: 9.5px;
}

.gw-register-login a { color: #e17a82; }

.gw-register-form {
	border-color: #39393f;
	box-shadow: inset 0 1px rgba(255,255,255,.02);
}

.gw-register-form__bar {
	min-height: 55px;
	padding: 13px 21px;
	border-bottom-color: #52151b;
}

.gw-register-form__bar span {
	color: #b46d72;
	font-size: 8px;
}

.gw-register-form__bar strong {
	color: #e1e1e4;
	font-size: 11px;
}

.gw-register-form .gw-form-section {
	padding: 29px 27px;
	border-bottom-color: #303035;
}

.gw-register-form .gw-form-section__head {
	margin-bottom: 24px;
}

.gw-register-form .gw-form-section__head h3 {
	font-size: 20px;
}

.gw-register-form .gw-form-section__head p {
	margin-top: 5px;
	color: #a0a0a6;
	font-size: 10px;
	line-height: 1.5;
}

.gw-registration .gw-field > span,
.gw-registration .gw-choice-field legend {
	color: #c9c9ce;
	font-size: 11px;
}

.gw-registration .gw-form-stack {
	gap: 18px;
}

.gw-registration .gw-form-stack input,
.gw-registration .gw-form-stack select,
.gw-registration .gw-input-status input {
	min-height: 48px;
	color: #ededf0;
	border-color: #424248;
	background: #09090b;
	font-size: 12px;
}

.gw-registration input::placeholder { color: #74747a; opacity: 1; }

.gw-registration .gw-field small {
	color: #dc7b82;
	font-size: 9.5px;
	line-height: 1.45;
}

.gw-registration .gw-input-status {
	grid-template-columns: minmax(0, 1fr) 28px;
	gap: 10px;
}

.gw-registration .gw-choice > span {
	min-height: 48px;
	color: #bcbcc2;
	border-color: #37373d;
	font-size: 11px;
}

.gw-form-hint {
	color: #a0a0a6;
	font-size: 10px;
	line-height: 1.5;
}

.gw-password-strength {
	padding: 16px;
	border-color: #39393f;
}

.gw-password-strength__head {
	color: #a3a3a9;
	font-size: 9px;
}

.gw-password-strength__head strong {
	color: #b1b1b7;
	font-size: 10px;
}

.gw-password-strength__track { height: 5px; }

.gw-password-strength__rules {
	gap: 9px 18px;
	margin-top: 14px;
}

.gw-password-strength__rules span {
	color: #919197;
	font-size: 9px;
	line-height: 1.45;
}

.gw-password-strength__rules span.is-passed { color: #c5c5ca; }

.gw-rules-check {
	color: #c4c4c9;
	font-size: 11px;
}

/* Custom form validation */
.gw-field input.has-error,
.gw-field select.has-error {
	border-color: #d52a35 !important;
	background:
		linear-gradient(90deg, rgba(213,42,53,.07), transparent 35%),
		#0b0b0d !important;
	box-shadow: 0 0 0 3px rgba(213,42,53,.09), inset 0 2px 9px rgba(0,0,0,.4) !important;
}

.gw-field-feedback {
	position: relative;
	display: none;
	align-items: center;
	min-height: 34px;
	margin-top: 2px;
	padding: 8px 11px 8px 34px;
	color: #e7a1a6 !important;
	border: 1px solid rgba(213,42,53,.28);
	background: linear-gradient(90deg, rgba(213,42,53,.12), rgba(15,15,17,.94));
	font-size: 9px !important;
	line-height: 1.45;
}

.gw-field-feedback::before {
	content: "!";
	position: absolute;
	left: 11px;
	display: grid;
	place-items: center;
	width: 14px;
	height: 14px;
	color: #fff;
	background: var(--red);
	font: 700 9px/1 var(--font-body);
	transform: rotate(45deg);
}

.gw-field-feedback.is-visible {
	display: flex;
	animation: gw-feedback-in .2s ease both;
}

@keyframes gw-feedback-in {
	from { opacity: 0; transform: translateY(-5px); }
	to { opacity: 1; transform: translateY(0); }
}

.gw-toast-stack {
	position: fixed;
	z-index: 10000;
	top: 86px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: min(360px, calc(100vw - 28px));
	pointer-events: none;
}

.gw-toast {
	position: relative;
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-height: 72px;
	padding: 13px 16px;
	overflow: hidden;
	color: #e8e8eb;
	border: 1px solid rgba(213,42,53,.45);
	background:
		linear-gradient(90deg, rgba(130,9,17,.24), transparent 55%),
		rgba(15,15,17,.98);
	box-shadow: 0 18px 55px rgba(0,0,0,.55), inset 0 1px rgba(255,255,255,.035);
	opacity: 0;
	transform: translateX(28px);
	transition: opacity .22s ease, transform .22s ease;
}

.gw-toast::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--red-bright), transparent);
	animation: gw-toast-life 4.2s linear both;
}

.gw-toast.is-visible { opacity: 1; transform: translateX(0); }
.gw-toast > span {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	color: #fff;
	border: 1px solid #d22a35;
	background: #8d1018;
	font: 700 13px/1 var(--font-display);
	clip-path: polygon(50% 0,100% 50%,50% 100%,0 50%);
}
.gw-toast strong, .gw-toast small { display: block; }
.gw-toast strong { color: #f0f0f2; font: 600 12px/1.35 var(--font-display); }
.gw-toast small { margin-top: 4px; color: #99999f; font-size: 9px; }

@keyframes gw-toast-life {
	from { transform: scaleX(1); transform-origin: left; }
	to { transform: scaleX(0); transform-origin: left; }
}

.footer {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 20px;
	width: min(1370px, calc(100% - 48px));
	margin: auto;
	padding: 30px 0 45px;
	color: #65656b;
	border-top: 1px solid var(--line);
	font-size: 10px;
}

.footer > div { display: flex; align-items: center; gap: 18px; }
.footer .mini-brand { transform: scale(.85); transform-origin: left; }
.footer p { margin: 0; }
.footer nav { display: flex; gap: 22px; }
.footer nav a { color: #77777d; }
.footer nav a:hover { color: #ddd; }

@media (max-width: 1120px) {
	.layout { grid-template-columns: 205px minmax(0, 1fr); }
	.sidebar--right {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.discord-card { min-height: 76px; }
	.gw-stat-grid { grid-template-columns: repeat(2, 1fr); }
	.gw-guild-grid { grid-template-columns: 1fr; }
	.gw-account { grid-template-columns: 165px minmax(0, 1fr); gap: 18px; }
}

@media (max-width: 780px) {
	.topbar { height: 62px; }
	.topbar__inner { width: calc(100% - 28px); grid-template-columns: 1fr auto; }
	.topbar__status, .topbar__actions { display: none; }
	.nav-toggle { display: block; }
	.mobile-menu {
		position: fixed;
		z-index: 25;
		top: 62px;
		right: 0;
		bottom: 0;
		left: 0;
		padding: 24px;
		overflow-y: auto;
		background: rgba(7,7,8,.98);
	}
	.mobile-menu.is-open { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
	.mobile-menu.is-open .language-switcher--mobile {
		display: flex;
		grid-column: 1 / -1;
		justify-content: space-between;
		width: 100%;
		height: 46px;
	}
	.language-switcher--mobile select { min-width: 170px; }
	.mobile-menu h2 { margin: 0 0 10px; color: #eee; font: 600 13px/1 var(--font-display); }
	.mobile-menu a { display: flex; align-items: center; min-height: 44px; padding: 8px 0; color: #aaaab0; border-bottom: 1px solid var(--line); }
	body.menu-open { overflow: hidden; }

	.hero { height: 430px; }
	.hero__art { background-position: 52% center; }
	.hero__logo::before, .hero__logo::after { display: none; }
	.hero__eyebrow { letter-spacing: .25em; }

	.layout {
		display: block;
		width: calc(100% - 28px);
		margin-top: -24px;
	}
	.sidebar--left { display: none; }
	.sidebar--right { display: grid; grid-template-columns: 1fr 1fr; margin-top: 16px; }
	.sidebar--right > .discord-card { grid-column: 1 / -1; }
	.quote-card { display: none; }
	.content-card__body { padding: 20px 16px; }
	.gw-auth { grid-template-columns: 1fr; }
	.gw-auth__intro { min-height: 285px; padding: 30px; border-right: 0; border-bottom: 1px solid var(--line-red); }
	.gw-auth__intro ul { display: none; }
	.gw-auth__form { padding: 32px 28px; }
	.gw-search { grid-template-columns: 1fr; }
	.gw-search > button { width: 100%; }
	.gw-filter-bar { grid-template-columns: 1fr 1fr; }
	.gw-filter-bar__meta { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; padding: 8px 0 0; border-top: 1px solid var(--line); text-align: left; }
	.gw-filter-bar__meta strong { font-size: 16px; }
	.gw-changelog-toolbar { grid-template-columns: 1fr; }
	.gw-changelog-filters { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.gw-team-grid { grid-template-columns: 1fr; }
	.gw-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gw-gallery-view footer { grid-template-columns: 1fr 1fr; }
	.gw-gallery-view footer > a { grid-column: 1 / -1; width: 100%; }
	.gw-forum-board { grid-template-columns: 44px minmax(0, 1fr) 125px; }
	.gw-forum-board__last { grid-column: 2 / 4; padding: 10px 0 0; border-top: 1px solid var(--line); border-left: 0; }
	.gw-forum-thread { grid-template-columns: 38px minmax(0, 1fr) 135px; }
	.gw-forum-thread__last { grid-column: 2 / 4; padding: 10px 0 0; border-top: 1px solid var(--line); border-left: 0; }
	.gw-forum-editor { grid-template-columns: 1fr; }
	.gw-forum-editor__help { border-top: 1px solid var(--line-red); border-left: 0; }
	.gw-forum-editor__help code { display: inline-block; margin-right: 4px; }
	.gw-vocations { grid-template-columns: repeat(2, 1fr); }
	.gw-recovery { grid-template-columns: 1fr; }
	.gw-recovery-aside { position: static; }
	.gw-recovery-aside ol { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.gw-recovery-aside li { align-content: start; border-right: 1px solid var(--line); }
	.gw-recovery-aside li:last-child { border-right: 0; }
	.gw-command-search { grid-template-columns: 1fr 1fr; }
	.gw-command-search > div:first-child { grid-column: 1 / -1; }
	.gw-command-search > div:last-child { align-self: end; min-height: 43px; padding-top: 7px; border: 1px solid var(--line); background: #0d0d0f; }
	.gw-bestiary-search,
	.gw-spell-filter { grid-template-columns: 1fr 1fr; }
	.gw-bestiary-search > div,
	.gw-spell-filter > div { grid-column: 1 / -1; }
	.gw-monster-hero { grid-template-columns: 100px minmax(0, 1fr); padding: 22px; }
	.gw-monster-hero__image { width: 88px; height: 88px; }
	.gw-monster-hero__image img { max-width: 68px; max-height: 68px; }
	.gw-monster-hero > .gw-button-secondary { grid-column: 1 / -1; width: 100%; }
	.gw-monster-columns { grid-template-columns: 1fr; }
	.gw-spell-filter .form-button { width: 100%; }
	.gw-ban-row.has-details,
	.gw-ban-row.is-simple { grid-template-columns: 38px minmax(0, 1fr) minmax(105px, .72fr); }
	.gw-ban-row__number { grid-row: 1 / 4; }
	.gw-ban-row__player { grid-column: 2; grid-row: 1; }
	.gw-ban-row__meta { grid-column: 2; grid-row: 2; }
	.gw-ban-row__reason { grid-column: 2; grid-row: 3; }
	.gw-ban-row__expires { grid-column: 3; grid-row: 1; }
	.gw-ban-row__admin { grid-column: 3; grid-row: 2 / 4; }
	.gw-ban-row__comment { grid-column: 2 / 4; }
	.gw-ban-row.is-simple .gw-ban-row__player { grid-row: 1 / 3; }
	.gw-ban-row.is-simple .gw-ban-row__admin { grid-row: 2; }
	.gw-death-row { grid-template-columns: 38px 50px minmax(0, 1fr) auto; gap: 9px; padding-right: 12px; padding-left: 12px; }
	.gw-death-row__world { display: none; }
	.gw-account { grid-template-columns: 1fr; }
	.gw-register-layout { grid-template-columns: 1fr; }
	.gw-register-aside { position: static; }
	.gw-register-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.gw-register-steps li { align-content: start; border-right: 1px solid var(--line); }
	.gw-register-steps li:last-child { border-right: 0; }
	.gw-account--form-page .gw-account-nav { position: static; }
	.gw-account-nav nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gw-account-nav nav .gw-account-nav__logout { margin: 0; border-top: 0; }
	.gw-profile-columns { grid-template-columns: 1fr; }
	.gw-house-view { grid-template-columns: 1fr; }
	.gw-house-view__image { min-height: 270px; border-right: 0; border-bottom: 1px solid var(--line); }
	.gw-server-layout { grid-template-columns: 1fr; }
	.gw-server-tech-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gw-system-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gw-guild-hero { grid-template-columns: 92px minmax(0, 1fr); padding: 22px; }
	.gw-guild-hero__logo { width: 82px; height: 82px; }
	.gw-guild-hero__logo img { width: 59px; height: 59px; }
	.gw-guild-hero__manage { grid-column: 1 / -1; width: 100%; }
	.gw-guild-manager-grid { grid-template-columns: 1fr; }
	.gw-guild-permissions { grid-template-columns: 1fr; }
	.gw-guild-permissions > .gw-kicker { grid-column: 1; }
	#account-manage {
		padding: 0;
	}
	#account-manage #one {
		float: none;
		width: 100%;
		padding: 0;
	}
	#account-manage #two {
		margin: 18px 0 0;
		padding: 18px 0 0;
		border-top: 1px solid var(--line);
		border-left: 0;
	}
	#account-manage .vertical-menu {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	#account-manage .vertical-menu a {
		border-right: 1px solid var(--line);
	}
	.footer { width: calc(100% - 28px); grid-template-columns: 1fr; }
	.footer > div { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 520px) {
	.hero { height: 400px; }
	.hero__buttons { width: calc(100% - 36px); flex-direction: column; gap: 8px; }
	.button { width: 100%; height: 44px; }
	.hero__logo { font-size: 48px; }
	.hero__tagline { font-size: 11px; }
	.mobile-menu.is-open { grid-template-columns: 1fr; }
	.sidebar--right { grid-template-columns: 1fr; }
	.sidebar--right > .discord-card { grid-column: auto; }
	.ticker-card { grid-template-columns: 1fr; }
	.ticker-card > strong { padding: 10px; border-right: 0; border-bottom: 1px solid var(--line-red); }
	.featured-card { grid-template-columns: 1fr; }
	.content-card__header { padding: 14px 16px; }
	.content-card__header::after { display: none; }
	.gw-section-heading { align-items: flex-start; flex-direction: column; }
	.gw-stat-grid { grid-template-columns: 1fr; }
	.gw-recovery-aside { padding: 21px 17px; }
	.gw-recovery-aside ol { grid-template-columns: 1fr; }
	.gw-recovery-aside li { border-right: 0; }
	.gw-recovery-form { padding: 20px 17px; }
	.gw-recovery-actions { align-items: stretch; flex-direction: column-reverse; margin-right: -17px; margin-bottom: -20px; margin-left: -17px; padding: 15px 17px; }
	.gw-recovery-actions a,
	.gw-recovery-actions button { width: 100%; }
	.gw-recovery-alert { margin-right: 16px; margin-left: 16px; }
	.gw-command-search { grid-template-columns: 1fr 62px; }
	.gw-command-search > div:first-child { grid-column: 1 / -1; }
	.gw-command-content .myaac-table { min-width: 520px; }
	.gw-command-notice,
	.gw-stage-notice { grid-template-columns: 30px minmax(0, 1fr); }
	.gw-stage-status { grid-template-columns: 42px minmax(0, 1fr); }
	.gw-stage-status > strong { grid-column: 1 / -1; padding-top: 12px; border-top: 1px solid var(--line); text-align: center; }
	.gw-stage-summary { grid-template-columns: 1fr; }
	.gw-stage-row { grid-template-columns: 38px minmax(0, 1fr) auto; gap: 11px; padding: 12px; }
	.gw-stage-row > i { display: none; }
	.gw-bestiary-search,
	.gw-spell-filter { grid-template-columns: 1fr; }
	.gw-bestiary-search > div,
	.gw-spell-filter > div { grid-column: 1; }
	.gw-bestiary-search nav { display: grid; grid-template-columns: 1fr 1fr; }
	.gw-monster-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gw-monster-card { grid-template-rows: 105px minmax(0, 1fr); min-height: 220px; }
	.gw-monster-card__image img { max-width: 82px; max-height: 82px; }
	.gw-monster-card dl { grid-template-columns: 1fr 1fr; }
	.gw-monster-card dl > div:last-child { grid-column: 1 / -1; }
	.gw-monster-hero { grid-template-columns: 1fr; text-align: center; }
	.gw-monster-hero__image { margin: 8px auto; }
	.gw-monster-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gw-spell-search { grid-template-columns: 1fr 58px; }
	.gw-spell-tabs > label { grid-template-columns: 1fr; justify-items: center; padding: 10px 5px; text-align: center; }
	.gw-spell-tabs > label > span { grid-row: auto; margin-bottom: 5px; }
	.gw-spell-tabs > label small { display: none; }
	.gw-ban-summary { grid-template-columns: 1fr; }
	.gw-ban-summary > div { border-right: 0; border-bottom: 1px solid var(--line); }
	.gw-ban-summary > div:last-child { border-bottom: 0; }
	.gw-ban-row.has-details,
	.gw-ban-row.is-simple { display: grid; grid-template-columns: 1fr; gap: 13px; padding: 18px; }
	.gw-ban-row > * { grid-column: 1 !important; grid-row: auto !important; }
	.gw-ban-row__number { display: none; }
	.gw-ban-row__expires,
	.gw-ban-row__admin { padding: 10px 0 0; border-top: 1px solid var(--line); border-left: 0; }
	.gw-ban-row__comment { margin-top: 0; }
	.gw-ban-notice { grid-template-columns: 32px minmax(0, 1fr); }
	.gw-ban-notice .gw-button-secondary { grid-column: 1 / -1; width: 100%; }
	.gw-death-summary { grid-template-columns: 1fr; }
	.gw-death-summary > div { border-right: 0; border-bottom: 1px solid var(--line); }
	.gw-death-summary > div:last-child { border-bottom: 0; }
	.gw-death-row { grid-template-columns: 44px minmax(0, 1fr) auto; min-height: 84px; }
	.gw-death-row__number { display: none; }
	.gw-death-row__event { font-size: 10px; }
	.gw-death-row time { min-width: 65px; padding-left: 8px; }
	.gw-death-row time strong { font-size: 8px; }
	.gw-death-notice { grid-template-columns: 32px minmax(0, 1fr); }
	.gw-panel { padding: 16px; }
	.gw-guild-card { grid-template-columns: 72px 1fr; }
	.gw-guild-card__content { padding: 16px; }
	.gw-guild-card__logo { padding-top: 20px; }
	.gw-cta-strip { align-items: stretch; flex-direction: column; }
	.gw-cta-strip > a { width: 100%; }
	.NewsHeadlineBackground { padding: 13px 14px; }
	.NewsHeadlineText { font-size: 16px; }
	.NewsContent { padding: 18px 15px 22px; }
	.NewsFooter { align-items: stretch; flex-direction: column; }
	.NewsFooter > a { justify-content: center; min-height: 34px; }
	.gw-news-feed__archive { justify-content: stretch; }
	.gw-news-feed__archive > a { width: 100%; text-align: center; }
	.gw-news-archive-search { grid-template-columns: minmax(0, 1fr) 62px; }
	.gw-news-row { grid-template-columns: 30px 1fr 18px; }
	.gw-news-row time { display: none; }
	.gw-changelog-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gw-changelog::before { left: 17px; }
	.gw-changelog-entry { grid-template-columns: 36px minmax(0, 1fr); gap: 9px; }
	.gw-changelog-date { grid-column: 2; grid-row: 1; display: flex; align-items: baseline; gap: 6px; padding: 0 0 2px; text-align: left; }
	.gw-changelog-date strong { font-size: 14px; }
	.gw-changelog-date span { margin-top: 0; }
	.gw-changelog-marker { grid-column: 1; grid-row: 1 / 3; width: 30px; height: 30px; margin-top: 5px; }
	.gw-changelog-copy { grid-column: 2; grid-row: 2; padding: 14px; }
	.gw-changelog-copy header { align-items: flex-start; flex-direction: column; gap: 7px; }
	.gw-faq-form form { grid-template-columns: 1fr; padding: 15px; }
	.gw-faq-form form > div { grid-column: 1; align-items: stretch; flex-direction: column-reverse; }
	.gw-faq-form form > div > * { width: 100%; }
	.gw-faq-toolbar { align-items: stretch; flex-direction: column; }
	.gw-faq-toolbar button { width: 100%; }
	.gw-faq-item summary { grid-template-columns: 30px minmax(0, 1fr) 22px; gap: 9px; padding: 10px 12px; }
	.gw-faq-item summary small { grid-column: 2; }
	.gw-faq-item summary i { grid-column: 3; grid-row: 1 / 3; }
	.gw-faq-answer { padding: 16px 14px; }
	.gw-faq-admin { padding: 10px 14px; }
	.gw-team-summary { grid-template-columns: 1fr; }
	.gw-team-card { grid-template-columns: 82px minmax(0, 1fr); }
	.gw-team-card__visual img { width: 78px; height: 78px; }
	.gw-gallery-form form { grid-template-columns: 1fr; padding: 15px; }
	.gw-gallery-form__comment,
	.gw-gallery-form__actions { grid-column: 1; }
	.gw-gallery-form__actions { align-items: stretch; flex-direction: column-reverse; }
	.gw-gallery-form__actions > * { width: 100%; }
	.gw-gallery-toolbar { align-items: flex-start; flex-direction: column; }
	.gw-gallery-grid { grid-template-columns: 1fr; }
	.gw-gallery-navigation { grid-template-columns: 1fr 1fr; }
	.gw-gallery-navigation .is-back { grid-column: 1 / -1; grid-row: 1; width: 100%; text-align: center; }
	.gw-gallery-navigation a:not(.is-back) { grid-row: 2; }
	.gw-gallery-view__image { min-height: 230px; padding: 10px; }
	.gw-gallery-view footer { grid-template-columns: 1fr; gap: 13px; }
	.gw-gallery-view footer > a { grid-column: 1; }
	.gw-forum-summary { grid-template-columns: 1fr; }
	.gw-forum-board-form > form { grid-template-columns: 1fr; padding: 14px; }
	.gw-forum-board-form .is-wide,
	.gw-forum-board-form .gw-forum-form-actions { grid-column: 1; }
	.gw-forum-board { grid-template-columns: 35px minmax(0, 1fr); gap: 10px; padding: 13px; }
	.gw-forum-board__icon { width: 29px; height: 29px; font-size: 8px; }
	.gw-forum-board dl { grid-column: 1 / -1; }
	.gw-forum-board__last { grid-column: 1 / -1; }
	.gw-forum-board-toolbar { align-items: stretch; flex-direction: column; }
	.gw-forum-board-toolbar > a { width: 100%; text-align: center; }
	.gw-forum-thread { grid-template-columns: 31px minmax(0, 1fr); gap: 9px; padding: 13px; }
	.gw-forum-thread__icon { width: 26px; height: 26px; }
	.gw-forum-thread dl,
	.gw-forum-thread__last { grid-column: 1 / -1; }
	.gw-forum-thread-hero { align-items: stretch; flex-direction: column; padding: 17px; }
	.gw-forum-thread-hero > a { width: 100%; text-align: center; }
	.gw-forum-post { grid-template-columns: 1fr; }
	.gw-forum-post__author { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 7px 13px; border-right: 0; border-bottom: 1px solid var(--line-red); text-align: left; }
	.gw-forum-post__author h3 { grid-column: 2; margin: 3px 0 0; }
	.gw-forum-post__outfit { grid-column: 1; grid-row: 1 / 5; width: 70px; height: 70px; margin: 0; }
	.gw-forum-post__outfit img { width: 70px; height: 70px; }
	.gw-forum-post__author > strong,
	.gw-forum-post__author dl,
	.gw-forum-post__author > p { grid-column: 2; }
	.gw-forum-post__content { min-height: 100px; padding: 16px 14px; }
	.gw-forum-post__main > footer { align-items: flex-start; flex-direction: column; }
	.gw-forum-editor__fields { padding: 15px; }
	.gw-forum-post-form > .gw-forum-form-actions,
	.gw-forum-form-actions { align-items: stretch; flex-direction: column-reverse; }
	.gw-forum-form-actions > * { width: 100%; }
	.gw-forum-recent article { grid-template-columns: 1fr; gap: 6px; }
	.gw-forum-move > dl { grid-template-columns: 1fr; }
	.gw-forum-move > form { grid-template-columns: 1fr; }
	.gw-forum-lightbox { padding: 52px 10px 10px; }
	.gw-records-summary { grid-template-columns: 1fr; }
	.gw-records-list > header { display: none; }
	.gw-record-row { grid-template-columns: 48px minmax(0, 1fr) auto; }
	.gw-record-rank { margin-left: 10px; }
	.gw-record-row time { padding-right: 10px; padding-left: 10px; }
	.gw-error-page { padding: 40px 15px; }
	.gw-error-page__code { width: 68px; height: 68px; }
	.gw-error-page nav { align-items: stretch; flex-direction: column; }
	.gw-error-page nav > a { width: 100%; }
	.gw-auth__links { align-items: flex-start; flex-direction: column; }
	.gw-alert { grid-template-columns: 38px 1fr; padding: 16px; }
	.gw-alert__icon { width: 34px; height: 34px; }
	.gw-security-callout { grid-template-columns: 36px 1fr; }
	.gw-security-callout__icon { width: 32px; height: 32px; }
	.gw-security-callout form { grid-column: 1 / -1; }
	.gw-security-callout form .form-button { width: 100%; }
	.gw-details > div, .gw-details--compact > div { grid-template-columns: 1fr; }
	.gw-details dt { padding-bottom: 2px; border-right: 0; }
	.gw-details dd { padding-top: 4px; }
	.gw-account-nav nav { grid-template-columns: 1fr; }
	.gw-register-aside { padding: 21px 17px; }
	.gw-register-aside__crest { margin-bottom: 16px; }
	.gw-register-steps { grid-template-columns: 1fr; margin-top: 19px; }
	.gw-register-steps li { min-height: 55px; border-right: 0; }
	.gw-register-form .gw-form-section { padding: 19px 17px; }
	.gw-form-grid--two,
	.gw-choice-grid,
	.gw-choice-grid--cards { grid-template-columns: 1fr; }
	.gw-guild-hero { grid-template-columns: 1fr; text-align: center; }
	.gw-guild-hero__logo { margin: 8px auto; }
	.gw-guild-invites { grid-template-columns: 1fr; }
	.gw-guild-actions,
	.gw-guild-form__actions,
	.gw-guild-panel__actions,
	.gw-guild-action__buttons { align-items: stretch; flex-direction: column; }
	.gw-guild-actions a,
	.gw-guild-form__actions a,
	.gw-guild-form__actions button,
	.gw-guild-panel__actions a,
	.gw-guild-panel__actions button,
	.gw-guild-action__buttons a,
	.gw-guild-action__buttons button { width: 100%; }
	.gw-guild-inline-form { grid-template-columns: 1fr; }
	.gw-guild-inline-form .form-button { width: 100%; }
	.gw-guild-logo-form { grid-template-columns: 1fr; }
	.gw-guild-logo-form > img { margin: 0 auto; }
	.gw-guild-choice-list { grid-template-columns: 1fr; }
	.gw-server-hero { grid-template-columns: 1fr; padding: 24px 18px; }
	.gw-server-address { min-height: 125px; }
	.gw-server-hero__links { align-items: stretch; flex-direction: column; }
	.gw-server-hero__links .form-button,
	.gw-server-hero__links .gw-button-secondary { width: 100%; }
	.gw-server-facts,
	.gw-rate-grid,
	.gw-server-tech-grid,
	.gw-system-list,
	.gw-skull-overview,
	.gw-frag-limits { grid-template-columns: 1fr; }
	.gw-server-facts > div,
	.gw-skull-overview > div { border-right: 0; border-bottom: 1px solid var(--line); }
	.gw-server-facts > div:last-child,
	.gw-skull-overview > div:last-child { border-bottom: 0; }
	.gw-server-rules { grid-template-columns: 38px minmax(0, 1fr); }
	.gw-server-rules .gw-button-secondary { grid-column: 1 / -1; width: 100%; }
	.gw-house-search__grid,
	.gw-house-filter--towns > div { grid-template-columns: 1fr; }
	.gw-house-search__actions { align-items: stretch; flex-direction: column; }
	.gw-house-search__actions .form-button { width: 100%; }
	.gw-house-view__content { padding: 22px 17px; }
	.gw-house-view__metrics { grid-template-columns: 1fr; }
	.gw-house-view__metrics > div { border-right: 0; border-bottom: 1px solid var(--line); }
	.gw-house-view__metrics > div:last-child { border-bottom: 0; }
	.gw-profile-hero { grid-template-columns: minmax(0, 1fr) 105px; min-height: 160px; padding: 24px 18px; }
	.gw-profile-outfit { width: 100px; height: 100px; }
	.gw-profile-outfit img { width: 100px; height: 100px; transform: translate(-15px, -15px) scale(1.06); }
	.gw-profile-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gw-profile-metrics > div:nth-child(2) { border-right: 0; }
	.gw-profile-metrics > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
	.gw-profile-details { grid-template-columns: 1fr; }
	.gw-profile-details > div,
	.gw-profile-details > div:nth-child(even) { border-right: 0; }
	.gw-quest-grid { grid-template-columns: 1fr; }
	.gw-combat-log > div { grid-template-columns: 1fr; }
	.gw-combat-log time { padding-bottom: 3px; border-right: 0; }
	.gw-combat-log p { padding-top: 3px; }
	.gw-signature-links label { grid-template-columns: 1fr; gap: 5px; }
	.gw-account-character-list form { grid-template-columns: minmax(0, 1fr) auto; }
	.gw-account-character-list form .gw-inline-action { grid-column: 1 / -1; width: 100%; }
	.gw-character-form__top { padding: 13px 16px; }
	.gw-character-form__progress { display: none; }
	.gw-character-block { padding: 20px 16px; }
	.gw-character-identity,
	.gw-vocation-picker,
	.gw-town-picker { grid-template-columns: 1fr; }
	.gw-character-form__footer {
		align-items: stretch;
		flex-direction: column;
		padding: 16px;
	}
	.gw-character-form__footer > div { flex-direction: column-reverse; }
	.gw-character-form__footer .form-button,
	.gw-character-form__footer .gw-button-secondary { width: 100%; }
	.gw-form-section { padding: 17px; }
	.gw-form-actions { align-items: stretch; flex-direction: column-reverse; padding: 15px 17px; }
	.gw-form-actions .form-button,
	.gw-button-secondary { width: 100%; }
	.gw-password-strength__rules { grid-template-columns: 1fr; }
	#account-manage .vertical-menu { grid-template-columns: 1fr; }
	.footer nav { flex-wrap: wrap; }
	input[type="text"],
	input:not([type]),
	input[type="password"],
	input[type="email"],
	input[type="number"],
	input[type="search"],
	select,
	textarea { font-size: 16px; }
}

@media (max-width: 380px) {
	.topbar__inner,
	.layout,
	.footer { width: calc(100% - 18px); }
	.mini-brand { font-size: 15px; }
	.mini-brand__mark { width: 31px; height: 34px; }
	.mobile-menu { padding: 18px; }
	.hero { height: 370px; }
	.hero__content { padding-right: 12px; padding-left: 12px; }
	.hero__eyebrow { font-size: 8px; letter-spacing: .2em; }
	.hero__logo { font-size: 40px; }
	.hero__tagline { font-size: 10px; }
	.content-card__header { gap: 13px; padding: 13px 12px; }
	.content-card__rune { width: 32px; height: 32px; }
	.content-card__header h1 { font-size: 18px; }
	.content-card__body { padding: 16px 12px; }
	.gw-section-heading h2 { font-size: 21px; }
	.gw-panel { padding: 13px; }
	.gw-monster-grid { grid-template-columns: 1fr; }
	.gw-news-archive-search { grid-template-columns: 1fr; }
	.gw-news-archive-search > div { min-height: 54px; }
	.gw-news-row { gap: 9px; padding: 10px 11px; }
	.NewsHeadlineMark { flex-basis: 28px; width: 28px; height: 28px; }
	.NewsHeadlineText { font-size: 15px; }
	.gw-profile-hero { grid-template-columns: 1fr; text-align: center; }
	.gw-profile-outfit { margin: 8px auto 0; }
	.gw-profile-hero__subtitle { justify-content: center; flex-wrap: wrap; }
	.gw-pagination { gap: 7px; }
	.gw-pagination a { padding: 8px; }
	.gw-toast-stack { right: 8px; bottom: 8px; width: calc(100vw - 16px); }
	.footer { padding-bottom: 28px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}
