:root {
	--bg: #080608;
	--panel: rgba(13, 12, 13, 0.88);
	--panel-strong: rgba(22, 18, 17, 0.94);
	--line: #7a5832;
	--line-soft: rgba(188, 139, 70, 0.35);
	--gold: #d7b46a;
	--gold-bright: #f3d98f;
	--text: #f5efe3;
	--muted: #b9ad9b;
	--red: #b43d35;
	--green: #66c27a;
	--cyan: #57c7d4;
	--shadow: rgba(0, 0, 0, 0.55);
}

* {
	box-sizing: border-box;
}

html,
body {
	min-height: 100%;
	margin: 0;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.45;
	letter-spacing: 0;
	min-height: 100vh;
	overflow-x: hidden;
	isolation: isolate;
}

a {
	color: var(--cyan);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--gold-bright);
	text-decoration: underline;
}

#background-video {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.44) contrast(1.14) saturate(1.16);
	transform: scale(1.025);
	transform-origin: center;
	z-index: -2;
}

#ambient-embers {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
	mix-blend-mode: screen;
	opacity: 0.72;
}

body.panel-login #background-video,
body.panel-register #background-video {
	filter: brightness(0.5) contrast(1.18) saturate(1.24);
}

body.panel-inside #background-video,
body.panel-password #background-video,
body.panel-rename #background-video,
body.panel-heroes #background-video {
	filter: brightness(0.36) contrast(1.12) saturate(1.08);
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(12, 3, 3, 0.28) 34%, rgba(0, 0, 0, 0.82) 100%),
		radial-gradient(ellipse at 50% 6%, rgba(243, 217, 143, 0.16), transparent 31%),
		radial-gradient(ellipse at 52% 32%, rgba(180, 61, 53, 0.29), transparent 46%),
		radial-gradient(ellipse at 86% 50%, rgba(0, 0, 0, 0.58), transparent 45%),
		radial-gradient(ellipse at 12% 50%, rgba(0, 0, 0, 0.62), transparent 47%);
	z-index: -1;
	pointer-events: none;
}

body.panel-login::before,
body.panel-register::before {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(12, 3, 3, 0.18) 36%, rgba(0, 0, 0, 0.78) 100%),
		radial-gradient(ellipse at 50% 8%, rgba(243, 217, 143, 0.2), transparent 30%),
		radial-gradient(ellipse at 52% 36%, rgba(180, 61, 53, 0.34), transparent 48%),
		radial-gradient(ellipse at 88% 50%, rgba(0, 0, 0, 0.52), transparent 45%),
		radial-gradient(ellipse at 10% 50%, rgba(0, 0, 0, 0.58), transparent 48%);
}

body.panel-inside::before,
body.panel-password::before,
body.panel-rename::before,
body.panel-heroes::before {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.68) 0%, rgba(6, 3, 4, 0.42) 38%, rgba(0, 0, 0, 0.86) 100%),
		radial-gradient(ellipse at 50% 2%, rgba(215, 180, 106, 0.12), transparent 28%),
		radial-gradient(ellipse at 52% 32%, rgba(180, 61, 53, 0.22), transparent 44%),
		radial-gradient(ellipse at 90% 50%, rgba(0, 0, 0, 0.68), transparent 46%),
		radial-gradient(ellipse at 8% 50%, rgba(0, 0, 0, 0.7), transparent 48%);
}

body::after {
	content: "";
	position: fixed;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.58)),
		radial-gradient(ellipse at 50% 50%, transparent 42%, rgba(0, 0, 0, 0.66) 100%);
	z-index: 0;
	pointer-events: none;
	mix-blend-mode: multiply;
}

.auth-shell,
.heroes-shell,
.dashboard-shell {
	position: relative;
	z-index: 1;
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	padding: 32px 0;
}

.auth-shell {
	min-height: 100vh;
	display: grid;
	align-content: center;
	gap: 18px;
}

.wide-shell {
	width: min(1380px, calc(100% - 32px));
}

.panel-card {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(24, 20, 18, 0.9), rgba(8, 7, 8, 0.92)),
		radial-gradient(circle at 50% 0%, rgba(215, 180, 106, 0.12), transparent 50%);
	border: 1px solid var(--line-soft);
	border-radius: 8px;
	box-shadow:
		0 18px 52px rgba(0, 0, 0, 0.62),
		inset 0 1px 0 rgba(243, 217, 143, 0.06);
	backdrop-filter: blur(10px);
	padding: 24px;
}

.panel-card > * {
	position: relative;
	z-index: 1;
}

.auth-card {
	width: min(520px, 100%);
	margin: 0 auto;
}

.panel-login .auth-card {
	background:
		linear-gradient(180deg, rgba(27, 22, 19, 0.94), rgba(8, 7, 8, 0.91)),
		radial-gradient(circle at 50% -8%, rgba(243, 217, 143, 0.2), transparent 46%);
	border-color: rgba(215, 180, 106, 0.48);
	box-shadow:
		0 20px 58px rgba(0, 0, 0, 0.68),
		0 0 54px rgba(180, 61, 53, 0.16);
}

.form-card {
	width: min(460px, 100%);
	margin: 0 auto;
}

.heroes-card {
	width: 100%;
}

.compact-card {
	padding: 20px;
}

.server-card-mini {
	padding: 14px 20px;
}

.server-card-mini .metric-row {
	padding: 8px 0;
}

.dashboard-side {
	display: grid;
	gap: 14px;
	align-content: start;
	grid-column: 2;
}

.launcher-panel {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 6px;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.48);
	line-height: 0;
}

h1,
h2 {
	margin: 0 0 10px;
	color: var(--gold-bright);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 700;
	letter-spacing: 0;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

h1 {
	font-size: 2.5rem;
	line-height: 1.08;
}

.auth-card h1 {
	font-size: 2.8rem;
	white-space: nowrap;
}

h2 {
	font-size: 1.35rem;
}

.muted {
	color: var(--muted);
	margin: 0 0 20px;
}

.status-strip {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(18, 10, 8, 0.7), rgba(0, 0, 0, 0.78));
	border: 1px solid var(--line-soft);
	border-radius: 8px;
	padding: 12px 16px;
	box-shadow:
		0 10px 34px var(--shadow),
		inset 0 1px 0 rgba(243, 217, 143, 0.06);
	backdrop-filter: blur(8px);
}

.panel-login .status-strip {
	width: min(620px, 100%);
	margin: 0 auto;
	padding: 10px 14px;
}

.status-strip > div {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.status-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	display: inline-block;
	background: var(--red);
	box-shadow: 0 0 10px currentColor;
}

.status-dot.is-online {
	background: var(--green);
}

.status-dot.is-offline {
	background: var(--red);
}

.stack-form {
	display: grid;
	gap: 11px;
}

.compact-form {
	gap: 8px;
}

label {
	color: var(--gold);
	font-weight: 600;
}

.field-copy {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-top: 2px;
}

.field-copy span {
	color: var(--muted);
	font-size: 0.78rem;
	text-align: right;
}

.form-note {
	display: grid;
	gap: 4px;
	margin: 14px 0 18px;
	padding: 13px 14px;
	border: 1px solid rgba(215, 180, 106, 0.28);
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(215, 180, 106, 0.14), rgba(87, 199, 212, 0.05)),
		rgba(0, 0, 0, 0.3);
	box-shadow: inset 3px 0 0 rgba(215, 180, 106, 0.65);
}

.form-note strong {
	color: var(--gold-bright);
	font-size: 0.95rem;
}

.form-note span {
	color: var(--muted);
	font-size: 0.9rem;
}

.compact-note {
	margin: 10px 0 14px;
	padding: 11px 12px;
}

input,
select {
	width: 100%;
	min-height: 44px;
	border: 1px solid rgba(188, 139, 70, 0.64);
	border-radius: 6px;
	background:
		linear-gradient(180deg, rgba(22, 18, 15, 0.86), rgba(5, 5, 6, 0.84)),
		radial-gradient(circle at 12px 50%, rgba(215, 180, 106, 0.11), transparent 34px);
	color: var(--text);
	padding: 10px 12px;
	font: inherit;
	box-shadow:
		inset 0 1px 0 rgba(243, 217, 143, 0.06),
		0 0 0 1px rgba(0, 0, 0, 0.22);
	transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

input::placeholder {
	color: rgba(185, 173, 155, 0.76);
}

input:focus,
select:focus {
	outline: 2px solid rgba(87, 199, 212, 0.45);
	outline-offset: 1px;
	border-color: var(--cyan);
	box-shadow:
		0 0 0 3px rgba(87, 199, 212, 0.12),
		0 0 24px rgba(87, 199, 212, 0.16),
		inset 0 1px 0 rgba(243, 217, 143, 0.08);
}

.password-row {
	display: grid;
	grid-template-columns: 1fr 74px;
	gap: 8px;
}

button,
.primary-button,
.secondary-button,
.ghost-button {
	min-height: 42px;
	border-radius: 6px;
	border: 1px solid transparent;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	letter-spacing: 0;
}

.primary-button {
	background: linear-gradient(180deg, #d1a85b, #8a5427);
	border-color: #f0cd83;
	color: #170d09;
	margin-top: 8px;
}

.primary-button:hover,
.primary-button:focus {
	background: linear-gradient(180deg, #f0c977, #a3612c);
}

.secondary-button {
	background: rgba(87, 199, 212, 0.16);
	border-color: rgba(87, 199, 212, 0.5);
	color: var(--text);
}

.ghost-button {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
	border-color: rgba(215, 180, 106, 0.24);
	color: var(--text);
}

.ghost-button:hover,
.ghost-button:focus {
	border-color: rgba(243, 217, 143, 0.55);
	background: rgba(215, 180, 106, 0.14);
}

.notice {
	border-radius: 6px;
	padding: 11px 12px;
	margin: 10px 0;
	border: 1px solid var(--line-soft);
	background: rgba(255, 255, 255, 0.08);
	color: var(--text);
}

.notice-error {
	border-color: rgba(180, 61, 53, 0.65);
	background: rgba(180, 61, 53, 0.18);
}

.notice-success {
	border-color: rgba(102, 194, 122, 0.65);
	background: rgba(102, 194, 122, 0.16);
}

.notice-info {
	border-color: rgba(87, 199, 212, 0.55);
	background: rgba(87, 199, 212, 0.13);
}

.link-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 18px;
	margin-top: 18px;
}

.link-grid.single {
	justify-content: flex-start;
}

.captcha-row {
	display: flex;
	justify-content: center;
	min-height: 78px;
	padding: 4px 0;
	overflow: hidden;
}

.ssn-box {
	display: grid;
	gap: 4px;
	padding: 16px;
	border: 1px solid var(--gold);
	border-radius: 6px;
	background: rgba(215, 180, 106, 0.12);
}

.ssn-box span {
	color: var(--muted);
}

.ssn-box strong {
	font-size: 1.6rem;
	color: var(--gold-bright);
}

.panel-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 18px;
	background: rgba(0, 0, 0, 0.68);
	border: 1px solid var(--line-soft);
	border-radius: 8px;
	padding: 10px;
}

.panel-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 6px 12px;
	border-radius: 6px;
	color: var(--text);
}

.panel-nav a:hover,
.panel-nav a:focus {
	background: rgba(215, 180, 106, 0.16);
	text-decoration: none;
}

.dashboard-grid,
.rename-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
	gap: 18px;
	align-items: start;
}

.dashboard-main {
	display: grid;
	gap: 18px;
	min-width: 0;
}

.builder-rename-grid {
	grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 1.22fr) minmax(260px, 0.74fr);
}

.standard-rename-grid {
	grid-template-columns: minmax(580px, 0.95fr) minmax(360px, 1.05fr);
	max-width: 1040px;
	margin: 0 auto;
}

.rename-card h1 {
	font-size: 2.35rem;
	white-space: nowrap;
}

.rules-card {
	min-height: 100%;
}

.action-list {
	display: grid;
	gap: 10px;
}

.action-list a {
	display: grid;
	gap: 3px;
	min-height: 44px;
	padding: 10px 12px;
	background:
		linear-gradient(90deg, rgba(215, 180, 106, 0.12), rgba(255, 255, 255, 0.05)),
		rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(215, 180, 106, 0.18);
	border-radius: 6px;
	color: var(--text);
}

.action-list a:hover,
.action-list a:focus {
	border-color: var(--gold);
	background:
		linear-gradient(90deg, rgba(215, 180, 106, 0.2), rgba(87, 199, 212, 0.08)),
		rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

.action-list strong {
	color: var(--gold-bright);
}

.action-list span {
	color: var(--muted);
	font-size: 0.88rem;
}

.account-downloads {
	padding: 18px;
}

.account-downloads h2 {
	margin-bottom: 10px;
	font-size: 1.35rem;
}

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

.download-card {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2px 10px;
	min-height: 62px;
	padding: 10px 12px;
	border: 1px solid rgba(215, 180, 106, 0.18);
	border-radius: 6px;
	background:
		linear-gradient(120deg, rgba(215, 180, 106, 0.13), rgba(87, 199, 212, 0.05)),
		rgba(0, 0, 0, 0.2);
	color: var(--text);
}

.download-card:hover,
.download-card:focus {
	border-color: var(--gold);
	background:
		linear-gradient(120deg, rgba(215, 180, 106, 0.22), rgba(87, 199, 212, 0.08)),
		rgba(0, 0, 0, 0.22);
	text-decoration: none;
}

.download-card strong {
	min-width: 0;
	color: var(--gold-bright);
	overflow-wrap: anywhere;
}

.download-card span {
	grid-column: 1;
	grid-row: 2;
	color: var(--muted);
	font-size: 0.85rem;
}

.download-card em {
	grid-column: 2;
	grid-row: 1;
	align-self: start;
	justify-self: end;
	color: var(--cyan);
	font-size: 0.82rem;
	font-style: normal;
	font-weight: 700;
	text-align: right;
	white-space: nowrap;
}

.download-card small {
	grid-column: 2;
	grid-row: 2;
	align-self: start;
	justify-self: end;
	color: var(--gold);
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: right;
	text-transform: uppercase;
	white-space: nowrap;
}

.metric-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 11px 0;
}

.metric-row:last-child {
	border-bottom: 0;
}

.launcher-download-art {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 720 / 822;
	object-fit: cover;
	border: 0;
}

.launcher-download-hotspot {
	position: absolute;
	left: 8%;
	right: 8%;
	bottom: 3.5%;
	height: 26.5%;
	border-radius: 8px;
	cursor: pointer;
}

.launcher-download-hotspot::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: 0 0 0 1px rgba(255, 226, 141, 0), 0 0 26px rgba(255, 190, 65, 0);
	transition: box-shadow 150ms ease, background 150ms ease;
}

.launcher-download-hotspot:hover::after,
.launcher-download-hotspot:focus::after {
	background: rgba(255, 205, 79, 0.05);
	box-shadow: 0 0 0 1px rgba(255, 226, 141, 0.62), 0 0 26px rgba(255, 190, 65, 0.28);
}

.cookie-consent {
	position: fixed;
	left: 50%;
	right: auto;
	bottom: 16px;
	z-index: 30;
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	width: min(920px, calc(100% - 28px));
	padding: 14px 16px;
	border: 1px solid rgba(215, 180, 106, 0.34);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(24, 20, 18, 0.96), rgba(7, 6, 7, 0.96)),
		radial-gradient(circle at 0% 0%, rgba(215, 180, 106, 0.16), transparent 38%);
	box-shadow:
		0 18px 48px rgba(0, 0, 0, 0.64),
		inset 0 1px 0 rgba(243, 217, 143, 0.08);
	transform: translateX(-50%);
	backdrop-filter: blur(10px);
}

.cookie-consent[hidden] {
	display: none;
}

.cookie-icon {
	position: relative;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(215, 180, 106, 0.18);
	border: 1px solid rgba(243, 217, 143, 0.48);
	box-shadow: 0 0 22px rgba(215, 180, 106, 0.16);
}

.cookie-icon::before,
.cookie-icon::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: var(--gold-bright);
}

.cookie-icon::before {
	width: 7px;
	height: 7px;
	left: 9px;
	top: 9px;
	box-shadow:
		11px 3px 0 rgba(243, 217, 143, 0.9),
		6px 16px 0 rgba(243, 217, 143, 0.72);
}

.cookie-icon::after {
	width: 5px;
	height: 5px;
	right: 8px;
	bottom: 8px;
}

.cookie-copy {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.cookie-copy strong {
	color: var(--gold-bright);
}

.cookie-copy span {
	color: var(--muted);
	font-size: 0.92rem;
}

.cookie-copy a {
	font-size: 0.88rem;
}

.cookie-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.cookie-actions button {
	min-height: 38px;
	padding: 8px 13px;
	white-space: nowrap;
}

.cookie-actions .primary-button {
	margin-top: 0;
}

.good {
	color: var(--green);
}

.bad {
	color: var(--red);
}

.character-summary {
	display: grid;
	gap: 6px;
	margin: 14px 0;
	padding: 12px;
	border: 1px solid var(--line-soft);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.06);
}

.rule-list {
	margin: 0;
	padding-left: 18px;
	color: var(--muted);
}

.rule-list li {
	margin: 8px 0;
}

.table-wrap {
	overflow-x: auto;
	border: 1px solid var(--line-soft);
	border-radius: 8px;
}

.data-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 680px;
}

.data-table th,
.data-table td {
	padding: 12px 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	text-align: left;
}

.data-table th {
	background: rgba(215, 180, 106, 0.15);
	color: var(--gold-bright);
}

.data-table tr:hover td {
	background: rgba(87, 199, 212, 0.08);
}

@media (max-width: 920px) {
	.dashboard-grid,
	.rename-grid {
		grid-template-columns: 1fr;
		max-width: none;
	}

	.dashboard-side {
		grid-column: auto;
	}

	.rename-card h1 {
		white-space: normal;
	}

	.status-strip {
		flex-direction: column;
		align-items: stretch;
	}
}

@media (max-width: 560px) {
	.auth-shell,
	.heroes-shell,
	.dashboard-shell {
		width: min(100% - 20px, 1120px);
		padding: 16px 0;
	}

	.panel-card {
		padding: 18px;
	}

	.password-row {
		grid-template-columns: 1fr;
	}

	.field-copy {
		align-items: flex-start;
		flex-direction: column;
		gap: 2px;
	}

	.field-copy span {
		text-align: left;
	}

	.auth-card h1 {
		font-size: 2.15rem;
	}

	.panel-nav {
		justify-content: stretch;
	}

	.panel-nav a {
		flex: 1 1 42%;
	}

	.download-grid,
	.download-card {
		grid-template-columns: 1fr;
	}

	.download-card em {
		grid-row: auto;
	}

	.cookie-consent {
		grid-template-columns: 34px 1fr;
		align-items: start;
		bottom: 10px;
		padding: 12px;
	}

	.cookie-actions {
		grid-column: 1 / -1;
	}

	.cookie-actions button {
		flex: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	#ambient-embers {
		display: none;
	}
}
body.panel-register-success #background-video {
	display: none;
}

body.panel-register-success::before {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(10, 4, 3, 0.3) 40%, rgba(0, 0, 0, 0.82) 100%),
		radial-gradient(ellipse at 50% 22%, rgba(243, 217, 143, 0.22), transparent 34%),
		radial-gradient(ellipse at 50% 54%, rgba(180, 61, 53, 0.28), transparent 52%),
		url("../img/ready-to-battle.jpg") center center / cover no-repeat;
	filter: saturate(1.15) contrast(1.08);
}

body.panel-register-success::after {
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.65), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.65)),
		radial-gradient(ellipse at 50% 48%, transparent 36%, rgba(0, 0, 0, 0.7) 100%);
}

body.panel-register-success #ambient-embers {
	opacity: 0.9;
}

.panel-register-success .auth-card {
	width: min(620px, 100%);
	background:
		linear-gradient(180deg, rgba(28, 22, 18, 0.9), rgba(6, 5, 6, 0.88)),
		radial-gradient(circle at 50% -10%, rgba(243, 217, 143, 0.22), transparent 46%);
	border-color: rgba(243, 217, 143, 0.58);
	box-shadow:
		0 22px 68px rgba(0, 0, 0, 0.72),
		0 0 68px rgba(180, 61, 53, 0.2),
		inset 0 1px 0 rgba(243, 217, 143, 0.12);
}

.register-success-panel {
	display: grid;
	gap: 14px;
	padding: 18px;
	border: 1px solid rgba(243, 217, 143, 0.42);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.52)),
		rgba(215, 180, 106, 0.08);
}

.register-success-panel h2 {
	font-size: 1.65rem;
	margin-bottom: 0;
}

.register-success-panel p {
	margin: 0;
	color: var(--muted);
}

.success-kicker {
	color: var(--green);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
}

.account-summary {
	display: grid;
	gap: 10px;
}

.account-summary > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.34);
}

.account-summary span {
	color: var(--muted);
}

.account-summary strong {
	color: var(--gold-bright);
	font-size: 1.05rem;
	text-align: right;
	word-break: break-word;
}

.success-actions {
	justify-content: center;
}

@media (max-width: 560px) {
	.account-summary > div {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.account-summary strong {
		text-align: left;
	}
}

