:root {
	--f2-bg: #070806;
	--f2-panel: rgba(17, 19, 15, 0.92);
	--f2-panel-strong: rgba(24, 26, 20, 0.96);
	--f2-line: rgba(199, 163, 90, 0.22);
	--f2-line-strong: rgba(226, 210, 170, 0.48);
	--f2-gold: #c7a35a;
	--f2-orange: #d48732;
	--f2-red: #843c3c;
	--f2-ink: #f2eee4;
	--f2-muted: #a6a293;
	--f2-ember: rgba(212, 135, 50, 0.18);
	--f2-jade: #71927a;
	--f2-champagne: #e2d2aa;
	--f2-serif: "Cinzel", Georgia, serif;
}

body {
	margin: 0;
	background:
		linear-gradient(180deg, rgba(7, 5, 4, 0.76), var(--f2-bg) 48%, #030202 100%),
		radial-gradient(circle at 18% 0%, rgba(166, 58, 40, 0.26), transparent 28%),
		var(--f2-bg);
	color: var(--f2-ink);
	font-family: Inter, Arial, sans-serif;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	background:
		linear-gradient(rgba(245, 204, 115, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(245, 204, 115, 0.024) 1px, transparent 1px);
	background-size: 46px 46px;
	mask-image: linear-gradient(180deg, black, transparent 72%);
}

a {
	color: inherit;
	text-decoration: none;
}

.f2-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 13px clamp(18px, 4vw, 58px);
	border-bottom: 1px solid rgba(220, 164, 62, 0.16);
	background:
		linear-gradient(90deg, rgba(242, 150, 46, 0.07), transparent 18%, transparent 82%, rgba(242, 150, 46, 0.07)),
		rgba(5, 4, 3, 0.86);
	backdrop-filter: blur(20px) saturate(130%);
	box-shadow: 0 18px 54px rgba(0, 0, 0, 0.42);
}

.f2-header::before {
	content: "";
	position: absolute;
	inset: auto clamp(24px, 10vw, 160px) 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 217, 139, 0.85), transparent);
}

.f2-header::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -22px;
	width: min(620px, 58vw);
	height: 44px;
	transform: translateX(-50%);
	background: radial-gradient(ellipse at center, rgba(242, 150, 46, 0.22), transparent 70%);
	pointer-events: none;
}

.f2-nav {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.5vw, 23px);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.f2-nav a {
	position: relative;
	color: #d9cbb8;
	padding: 8px 2px;
	transition: color 180ms ease, transform 180ms ease;
}

.f2-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 1px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--f2-gold), transparent);
	opacity: 0;
	transform: scaleX(0.4);
	transition: opacity 180ms ease, transform 180ms ease;
}

.f2-nav a:hover,
.f2-text-link:hover {
	color: var(--f2-gold);
}

.f2-nav a:hover {
	transform: translateY(-1px);
}

.f2-nav a:hover::after {
	opacity: 1;
	transform: scaleX(1);
}

.f2-nav .f2-nav-cta {
	min-height: 30px;
	height: 30px;
	padding: 0 15px;
	border: 1px solid rgba(255, 222, 142, 0.55);
	border-radius: 0;
	background:
		linear-gradient(180deg, rgba(255, 222, 142, 0.09), rgba(242, 150, 46, 0.035)),
		rgba(9, 6, 4, 0.78);
	color: #f4d489;
	box-shadow:
		0 8px 18px rgba(0, 0, 0, 0.34),
		inset 0 1px 0 rgba(255, 244, 194, 0.16);
	line-height: 1;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.55);
	transform: none;
}

.f2-nav .f2-nav-cta::after {
	inset: 3px;
	height: auto;
	border: 1px solid rgba(255, 244, 194, 0.34);
	background: transparent;
	opacity: 1;
	transform: none;
}

.f2-nav .f2-nav-cta:hover {
	color: #ffe2a0;
	transform: none;
	border-color: rgba(255, 231, 164, 0.82);
	background:
		linear-gradient(180deg, rgba(255, 222, 142, 0.14), rgba(242, 150, 46, 0.07)),
		rgba(13, 8, 5, 0.9);
	box-shadow:
		0 10px 24px rgba(0, 0, 0, 0.42),
		0 0 16px rgba(242, 150, 46, 0.16),
		inset 0 1px 0 rgba(255, 244, 194, 0.24);
}

.f2-language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	min-height: 30px;
	padding: 3px;
	border: 1px solid rgba(220, 164, 62, 0.28);
	background: rgba(9, 6, 4, 0.68);
}

.f2-language-switcher a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	min-height: 24px;
	padding: 0 7px;
	color: #bcae98;
	font-size: 0.68rem;
	line-height: 1;
}

.f2-language-switcher a::after {
	display: none;
}

.f2-language-switcher a.is-active {
	background: linear-gradient(135deg, rgba(163, 53, 46, 0.9), rgba(242, 150, 46, 0.9));
	color: #130a05;
	box-shadow: inset 0 1px 0 rgba(255, 244, 194, 0.42);
}

.f2-nav .f2-nav-cta::before {
	top: 0;
	left: -80%;
	width: 42%;
	height: 100%;
	transform: skewX(-18deg);
	background: linear-gradient(90deg, transparent, rgba(255, 240, 185, 0.42), transparent);
}

.f2-nav-cta,
.f2-btn,
.f2-login-form button,
.btn,
.btn-login {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border: 1px solid var(--f2-line-strong);
	background: rgba(10, 7, 5, 0.68);
	color: var(--f2-ink);
	padding: 11px 16px;
	font-size: 0.78rem;
	font-weight: 950;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.f2-nav-cta::before,
.f2-btn::before,
.f2-login-form button::before,
.btn::before,
.btn-login::before {
	content: "";
	position: absolute;
	top: -40%;
	left: -36%;
	width: 28%;
	height: 180%;
	transform: skewX(-18deg);
	background: linear-gradient(90deg, transparent, rgba(255, 238, 176, 0.32), transparent);
	opacity: 0;
	pointer-events: none;
}

.f2-nav-cta,
.f2-btn-primary,
.f2-login-form button,
.btn-login {
	background: linear-gradient(135deg, var(--f2-red), var(--f2-orange) 56%, var(--f2-gold));
	color: #130a05;
	box-shadow: 0 14px 30px rgba(242, 150, 46, 0.22), inset 0 1px 0 rgba(255, 244, 194, 0.55);
}

.f2-itemshop-link {
	color: #d9cbb8;
}

.f2-vote-panel {
	display: grid;
	gap: 18px;
}

.f2-vote-summary,
.f2-vote-balance,
.f2-vote-step {
	border: 1px solid var(--f2-line);
	background:
		linear-gradient(180deg, rgba(255, 222, 142, 0.055), rgba(10, 7, 5, 0.72)),
		rgba(15, 10, 7, 0.82);
	box-shadow: inset 0 1px 0 rgba(255, 244, 194, 0.09);
}

.f2-vote-summary,
.f2-vote-balance {
	padding: 18px;
}

.f2-vote-summary span,
.f2-vote-balance span {
	display: block;
	color: var(--f2-muted);
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.f2-vote-summary strong,
.f2-vote-balance strong {
	display: block;
	margin-top: 5px;
	color: var(--f2-gold);
	font-size: 1.45rem;
}

.f2-vote-summary small,
.f2-vote-balance small {
	display: block;
	margin-top: 6px;
	color: var(--f2-muted);
}

.f2-vote-steps {
	display: grid;
	gap: 14px;
}

.f2-vote-step {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 14px;
	padding: 16px;
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.f2-vote-step:hover {
	border-color: var(--f2-line-strong);
	transform: translateY(-1px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.f2-vote-step > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--f2-line-strong);
	color: #130a05;
	background: linear-gradient(135deg, var(--f2-red), var(--f2-orange), var(--f2-gold));
	font-weight: 950;
}

.f2-vote-step h3 {
	margin: 0;
	color: var(--f2-ink);
	font-size: 1.05rem;
}

.f2-vote-step p {
	margin: 0 0 13px;
	color: var(--f2-muted);
	line-height: 1.55;
}

.f2-vote-step form {
	margin: 0;
}

.f2-vote-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.f2-vote-card-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 7px;
}

.f2-vote-card-head small {
	border: 1px solid var(--f2-line);
	padding: 4px 8px;
	color: var(--f2-muted);
	text-transform: uppercase;
	font-size: 0.68rem;
	font-weight: 900;
}

.f2-vote-card-head small.is-ready {
	color: #9fea9b;
	border-color: rgba(159, 234, 155, 0.38);
}

.f2-vote-card-head small.is-waiting {
	color: #ffd27c;
	border-color: rgba(255, 210, 124, 0.38);
}

.f2-vote-reward-line {
	display: inline-flex;
	margin-bottom: 9px;
	border: 1px solid rgba(242, 204, 115, 0.28);
	padding: 6px 9px;
	color: var(--f2-gold);
	background: rgba(242, 150, 46, 0.07);
	font-size: 0.78rem;
	font-weight: 950;
	text-transform: uppercase;
}

.f2-vote-step .btn[disabled] {
	cursor: not-allowed;
	filter: grayscale(0.65);
	opacity: 0.62;
}

.admin-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--f2-line);
	padding-bottom: 12px;
}

.admin-tabs a {
	border: 1px solid var(--f2-line);
	padding: 9px 13px;
	color: var(--f2-muted);
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.admin-tabs a.is-active,
.admin-tabs a:hover {
	border-color: var(--f2-line-strong);
	color: var(--f2-gold);
	background: rgba(242, 150, 46, 0.08);
}

.admin-inline-form {
	margin-top: 18px;
	border-top: 1px solid var(--f2-line);
	padding-top: 18px;
}

.admin-log-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
}

.admin-log-actions form {
	margin: 0;
}

.f2-admin-tool,
.f2-rules-intro,
.f2-rule-card,
.f2-user-card {
	border: 1px solid var(--f2-line);
	background:
		linear-gradient(180deg, rgba(255, 222, 142, 0.05), rgba(10, 7, 5, 0.76)),
		rgba(15, 10, 7, 0.84);
	box-shadow: inset 0 1px 0 rgba(255, 244, 194, 0.08);
}

.f2-admin-tool {
	padding: 18px;
}

.f2-admin-tool h2 {
	margin: 0 0 8px;
	color: var(--f2-gold);
}

.f2-rules-page {
	display: grid;
	gap: 18px;
}

.f2-rules-intro {
	padding: 20px;
}

.f2-rules-intro span,
.f2-user-card span {
	display: block;
	color: var(--f2-muted);
	font-size: 0.74rem;
	font-weight: 900;
	text-transform: uppercase;
}

.f2-rules-intro strong {
	display: block;
	margin-top: 5px;
	color: var(--f2-gold);
	font-size: 1.55rem;
}

.f2-rules-intro p {
	margin: 8px 0 0;
	color: var(--f2-muted);
}

.f2-rules-intro small {
	display: inline-flex;
	margin-top: 14px;
	border: 1px solid var(--f2-line);
	padding: 6px 9px;
	color: var(--f2-gold);
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.f2-rules-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.f2-rules-nav a {
	border: 1px solid var(--f2-line);
	padding: 8px 10px;
	color: var(--f2-muted);
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
}

.f2-rules-nav a:hover {
	border-color: var(--f2-line-strong);
	color: var(--f2-gold);
	background: rgba(242, 150, 46, 0.08);
}

.f2-rules-grid,
.f2-user-overview {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.f2-rule-card {
	position: relative;
	padding: 18px;
}

.f2-rule-index {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--f2-line-strong);
	color: #130a05;
	background: linear-gradient(135deg, var(--f2-red), var(--f2-orange), var(--f2-gold));
	font-weight: 950;
}

.f2-rule-severity {
	float: right;
	border: 1px solid var(--f2-line);
	padding: 5px 8px;
	color: var(--f2-muted);
	font-size: 0.68rem;
	font-weight: 900;
	text-transform: uppercase;
}

.f2-rule-card h3 {
	margin: 13px 0 10px;
	color: var(--f2-gold);
}

.f2-rule-card ul {
	margin: 0;
	padding-left: 18px;
	color: var(--f2-muted);
	line-height: 1.55;
}

.f2-user-overview {
	margin-bottom: 18px;
}

.f2-user-card {
	padding: 15px;
	min-height: 86px;
}

.f2-user-card strong {
	display: block;
	margin-top: 6px;
	color: var(--f2-gold);
	font-size: 1.45rem;
}

.f2-user-card--identity strong {
	font-size: 1.15rem;
	color: var(--f2-ink);
}

.f2-user-card small {
	display: block;
	margin-top: 4px;
	color: var(--f2-muted);
}

.f2-btn:hover,
.f2-login-form button:hover,
.f2-nav-cta:hover,
.btn:hover,
.btn-login:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 222, 142, 0.78);
	box-shadow: 0 18px 38px rgba(242, 150, 46, 0.24);
}

.f2-btn:hover::before,
.f2-login-form button:hover::before,
.f2-nav-cta:hover::before,
.btn:hover::before,
.btn-login:hover::before {
	animation: f2-button-shine 0.85s ease-out;
}

.f2-nav .f2-nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	height: 30px;
	padding: 1px 15px 0;
	line-height: 1;
	vertical-align: middle;
	text-align: center;
	background:
		linear-gradient(180deg, rgba(255, 222, 142, 0.09), rgba(242, 150, 46, 0.035)),
		rgba(9, 6, 4, 0.78);
	color: #f4d489;
	box-shadow:
		0 8px 18px rgba(0, 0, 0, 0.34),
		inset 0 1px 0 rgba(255, 244, 194, 0.16);
}

.f2-nav .f2-nav-cta::after {
	inset: 4px;
}

.f2-nav .f2-nav-cta:hover {
	transform: none;
	background:
		linear-gradient(180deg, rgba(255, 222, 142, 0.14), rgba(242, 150, 46, 0.07)),
		rgba(13, 8, 5, 0.9);
	color: #ffe2a0;
}

.f2-shell {
	overflow: hidden;
}

.f2-hero {
	position: relative;
	min-height: 760px;
	display: grid;
	align-items: center;
	padding: 112px clamp(18px, 5vw, 76px) 62px;
}

.f2-hero-bg {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 20% 34%, rgba(242, 204, 115, 0.15), transparent 18%),
		radial-gradient(circle at 73% 42%, rgba(163, 53, 46, 0.18), transparent 20%),
		linear-gradient(90deg, rgba(7, 5, 4, 0.97) 0%, rgba(7, 5, 4, 0.7) 48%, rgba(7, 5, 4, 0.24) 100%),
		linear-gradient(0deg, var(--f2-bg) 0%, rgba(7, 5, 4, 0.18) 38%),
		url("../img/bg.jpg");
	background-position: center;
	background-size: cover;
	transform: scale(1.02);
	animation: f2-hero-drift 14s ease-in-out infinite alternate;
}

.f2-mist {
	position: absolute;
	inset: 0;
	z-index: 2;
	overflow: hidden;
	pointer-events: none;
	mix-blend-mode: screen;
	opacity: 0.38;
}

.f2-mist span {
	position: absolute;
	left: -18%;
	width: 62%;
	height: 42%;
	border-radius: 50%;
	background:
		radial-gradient(ellipse at center, rgba(214, 205, 184, 0.18), rgba(214, 205, 184, 0.06) 38%, transparent 70%);
	filter: blur(22px);
	animation: f2-mist-drift 24s linear infinite;
}

.f2-mist span:first-child {
	top: 26%;
}

.f2-mist span:last-child {
	top: 48%;
	left: 46%;
	width: 74%;
	height: 36%;
	opacity: 0.7;
	animation-duration: 32s;
	animation-direction: reverse;
}

.f2-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 220px;
	background: linear-gradient(180deg, transparent, var(--f2-bg));
	pointer-events: none;
}

.f2-hero::before {
	content: "";
	position: absolute;
	inset: 72px 0 auto;
	height: 240px;
	z-index: 1;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 28% 60%, rgba(242, 204, 115, 0.18), transparent 58%),
		radial-gradient(ellipse at 68% 52%, rgba(242, 120, 36, 0.13), transparent 62%);
	filter: blur(8px);
	animation: f2-ember-breathe 4.8s ease-in-out infinite;
}

.f2-particles {
	position: absolute;
	inset: 0;
	z-index: 2;
	overflow: hidden;
	pointer-events: none;
}

.f2-particles span {
	position: absolute;
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 999px;
	background: radial-gradient(circle, #fff3b5 0%, #f2cc73 34%, rgba(242, 150, 46, 0.1) 72%, transparent 100%);
	box-shadow: 0 0 16px rgba(242, 204, 115, 0.72), 0 0 30px rgba(242, 150, 46, 0.32);
	opacity: 0;
	animation: f2-particle-rise 8s linear infinite;
}

.f2-particles span:nth-child(1) { left: 7%; top: 84%; animation-delay: 0s; animation-duration: 9s; }
.f2-particles span:nth-child(2) { left: 14%; top: 72%; animation-delay: 1.2s; animation-duration: 7s; transform: scale(0.7); }
.f2-particles span:nth-child(3) { left: 24%; top: 90%; animation-delay: 2.1s; animation-duration: 8.8s; transform: scale(1.3); }
.f2-particles span:nth-child(4) { left: 36%; top: 78%; animation-delay: 0.6s; animation-duration: 10s; transform: scale(0.8); }
.f2-particles span:nth-child(5) { left: 48%; top: 86%; animation-delay: 3.2s; animation-duration: 7.6s; }
.f2-particles span:nth-child(6) { left: 58%; top: 76%; animation-delay: 1.8s; animation-duration: 9.4s; transform: scale(1.15); }
.f2-particles span:nth-child(7) { left: 68%; top: 89%; animation-delay: 0.9s; animation-duration: 8.2s; transform: scale(0.72); }
.f2-particles span:nth-child(8) { left: 78%; top: 74%; animation-delay: 2.8s; animation-duration: 9.8s; }
.f2-particles span:nth-child(9) { left: 88%; top: 82%; animation-delay: 1.5s; animation-duration: 8.5s; transform: scale(1.25); }
.f2-particles span:nth-child(10) { left: 93%; top: 92%; animation-delay: 3.7s; animation-duration: 7.4s; transform: scale(0.65); }
.f2-particles span:nth-child(11) { left: 31%; top: 66%; animation-delay: 4.3s; animation-duration: 11s; transform: scale(0.55); }
.f2-particles span:nth-child(12) { left: 63%; top: 68%; animation-delay: 5.1s; animation-duration: 10.5s; transform: scale(0.85); }

.f2-hero-inner {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
	gap: clamp(28px, 5vw, 74px);
	align-items: center;
}

.f2-logo-stage {
	position: relative;
	display: block;
	width: min(540px, 72vw);
	height: auto;
	margin: 0 0 24px -12px;
	filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.72)) drop-shadow(0 0 22px rgba(242, 150, 46, 0.2));
	animation: f2-logo-drift 6.2s ease-in-out infinite;
}

.f2-logo {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	animation: f2-logo-parallax 6.2s ease-in-out infinite, f2-logo-glow 3.6s ease-in-out infinite;
}

.f2-logo-shine {
	display: none;
}

.f2-logo-spark {
	position: absolute;
	width: 5px;
	height: 5px;
	border-radius: 1px;
	background: linear-gradient(135deg, #fff1a6, #d68b2c);
	opacity: 0;
	animation: f2-logo-fragment 3.8s linear infinite;
}

.f2-logo-spark.s1 { left: 11%; top: 72%; animation-delay: 0.2s; }
.f2-logo-spark.s2 { left: 31%; top: 20%; animation-delay: 1.1s; transform: scale(0.75) rotate(18deg); }
.f2-logo-spark.s3 { left: 68%; top: 66%; animation-delay: 2s; transform: scale(0.9) rotate(-22deg); }
.f2-logo-spark.s4 { left: 84%; top: 30%; animation-delay: 2.7s; transform: scale(0.65) rotate(45deg); }

.f2-logo-stage::before,
.f2-logo-stage::after {
	content: "";
	position: absolute;
	left: 6%;
	right: 16%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 224, 138, 0.85), transparent);
	transform-origin: center;
}

.f2-logo-stage::before {
	bottom: 18px;
	animation: f2-logo-line 3.4s ease-in-out infinite;
}

.f2-logo-stage::after {
	bottom: 12px;
	opacity: 0.5;
	animation: f2-logo-line 3.4s ease-in-out infinite reverse;
}

.f2-kicker {
	margin: 0 0 12px;
	color: var(--f2-gold);
	font-size: 0.78rem;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.f2-hero h1,
.f2-account-panel h2,
.f2-section-head h2,
.f2-widget h3,
.page-title {
	font-family: Georgia, "Times New Roman", serif;
	line-height: 1.04;
}

.f2-hero h1 {
	max-width: 11ch;
	margin: 0 0 18px;
	font-size: clamp(3rem, 6.6vw, 6.4rem);
	text-shadow: 0 16px 44px rgba(0, 0, 0, 0.72), 0 0 26px rgba(242, 204, 115, 0.08);
}

.f2-hero p {
	max-width: 650px;
	color: #dfd0ba;
	font-size: clamp(1rem, 1.4vw, 1.18rem);
	line-height: 1.75;
}

.f2-actions,
.f2-panel-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.f2-account-panel,
.f2-content-panel,
.f2-widget {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--f2-line);
	background:
		linear-gradient(145deg, rgba(255, 229, 164, 0.055), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
		var(--f2-panel);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.52);
	backdrop-filter: blur(14px);
}

.f2-account-panel .f2-corner,
.f2-content-panel .f2-corner,
.f2-widget .f2-corner {
	display: none;
}

.f2-account-panel::before,
.f2-content-panel::before,
.f2-widget::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 222, 142, 0.85), transparent);
}

.f2-account-panel::after,
.f2-content-panel::after,
.f2-widget::after {
	content: "";
	position: absolute;
	inset: auto 18px 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(242, 150, 46, 0.45), transparent);
}

.f2-content-panel,
.f2-widget,
.f2-account-panel,
.news-item,
.preview-card {
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, opacity 420ms ease;
}

#f2-main-content {
	scroll-margin-top: 96px;
}

.f2-content-panel:hover,
.f2-widget:hover,
.f2-account-panel:hover {
	border-color: rgba(255, 222, 142, 0.58);
	box-shadow: 0 26px 76px rgba(0, 0, 0, 0.58), inset 0 0 0 1px rgba(255, 231, 164, 0.04);
}

.f2-account-panel {
	padding: 26px;
	background:
		linear-gradient(145deg, rgba(255, 229, 164, 0.09), transparent 28%),
		radial-gradient(circle at 24% 18%, rgba(242, 204, 115, 0.1), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
		linear-gradient(180deg, rgba(29, 22, 15, 0.94), rgba(8, 6, 4, 0.92));
	box-shadow:
		0 26px 72px rgba(0, 0, 0, 0.62),
		inset 0 0 0 1px rgba(255, 239, 184, 0.035),
		inset 0 28px 80px rgba(242, 150, 46, 0.045);
}

.f2-account-panel .f2-kicker {
	position: relative;
	margin-top: 10px;
	padding-top: 18px;
}

.f2-account-panel .f2-kicker::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 150px;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 222, 142, 0.95), rgba(242, 150, 46, 0.3), transparent);
}

.f2-panel-crest {
	position: relative;
	width: 112px;
	height: 20px;
	margin-bottom: 18px;
}

.f2-panel-crest::before,
.f2-panel-crest::after,
.f2-panel-crest span::before,
.f2-panel-crest span::after {
	content: "";
	position: absolute;
	top: 9px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 222, 142, 0.95), transparent);
}

.f2-panel-crest::before {
	left: 0;
	width: 42px;
}

.f2-panel-crest::after {
	right: 0;
	width: 42px;
}

.f2-panel-crest span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 12px;
	height: 12px;
	transform: translate(-50%, -50%) rotate(45deg);
	border: 1px solid rgba(255, 222, 142, 0.9);
	background: linear-gradient(135deg, rgba(255, 214, 121, 0.9), rgba(242, 150, 46, 0.28));
	box-shadow: 0 0 22px rgba(242, 204, 115, 0.28);
}

.f2-panel-crest span::before,
.f2-panel-crest span::after {
	top: 5px;
	width: 18px;
}

.f2-panel-crest span::before {
	right: 18px;
}

.f2-panel-crest span::after {
	left: 18px;
}

.f2-account-panel h2 {
	margin: 0 0 16px;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	text-shadow: 0 14px 38px rgba(0, 0, 0, 0.64), 0 0 18px rgba(242, 204, 115, 0.08);
}

.f2-login-form {
	display: grid;
	gap: 12px;
	position: relative;
	padding-top: 2px;
}

.f2-login-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.form-input,
.form textarea,
.form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]) {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--f2-line);
	background: rgba(7, 5, 4, 0.76);
	color: var(--f2-ink);
	padding: 12px;
	transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.f2-login-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):focus,
.form-input:focus,
.form textarea:focus,
.form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):focus {
	outline: 0;
	border-color: rgba(255, 222, 142, 0.72);
	background: rgba(10, 7, 5, 0.92);
	box-shadow: 0 0 0 3px rgba(242, 150, 46, 0.11);
}

.terms-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--clr-text-soft);
}

.terms-label input[type="checkbox"] {
	appearance: none;
	position: relative;
	width: 14px;
	height: 14px;
	border: 1px solid var(--clr-accent-border-mid);
	border-radius: 2px;
	background: var(--clr-checkbox-bg);
	cursor: pointer;
	transition: all .2s;
}

.terms-label input[type="checkbox"]:hover {
	border-color: var(--clr-accent-border-strong);
}

.terms-label input[type="checkbox"]:checked::after {
	content: "ÃƒÆ’Ã‚Â¢Ãƒâ€¦Ã¢â‚¬Å“ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
	position: absolute;
	top: -1px;
	left: 2px;
	color: var(--clr-text-strong);
	font-size: 10px;
}

.terms-label {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	margin: 8px 0 4px;
	color: #d8c8b2;
	font-size: 0.86rem;
	line-height: 1.45;
}

.form input[type="checkbox"],
.terms-label input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 18px;
	height: 18px;
	min-width: 18px;
	min-height: 18px;
	margin: 0;
	border: 1px solid rgba(255, 222, 142, 0.62);
	background:
		linear-gradient(145deg, rgba(255, 222, 142, 0.09), transparent 45%),
		rgba(7, 5, 4, 0.82);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.34);
	cursor: pointer;
	transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.form input[type="checkbox"]:hover,
.form input[type="checkbox"]:focus-visible,
.terms-label input[type="checkbox"]:hover,
.terms-label input[type="checkbox"]:focus-visible {
	border-color: rgba(255, 231, 164, 0.9);
	box-shadow: 0 0 0 3px rgba(242, 150, 46, 0.12);
	outline: 0;
}

.form input[type="checkbox"]:checked,
.terms-label input[type="checkbox"]:checked {
	background:
		linear-gradient(135deg, var(--f2-red), var(--f2-orange) 62%, var(--f2-gold));
	border-color: rgba(255, 236, 172, 0.92);
}

.form input[type="checkbox"]:checked::after,
.terms-label input[type="checkbox"]:checked::after {
	content: "";
	width: 6px;
	height: 10px;
	margin-top: -2px;
	border-right: 2px solid #170b05;
	border-bottom: 2px solid #170b05;
	transform: rotate(42deg);
}

.f2-panel-links a {
	border: 1px solid var(--f2-line);
	padding: 11px 13px;
	color: var(--f2-muted);
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
	transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.f2-panel-links a:hover {
	border-color: var(--f2-line-strong);
	background: rgba(242, 150, 46, 0.08);
	color: var(--f2-gold);
}

.f2-account-panel .f2-panel-links {
	padding-top: 8px;
	border-top: 1px solid rgba(220, 164, 62, 0.16);
}

.f2-stats {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: min(1180px, calc(100% - 32px));
	margin: -42px auto 0;
	border: 1px solid var(--f2-line);
	background:
		linear-gradient(90deg, rgba(242, 150, 46, 0.05), transparent 50%, rgba(242, 204, 115, 0.035)),
		var(--f2-panel-strong);
	box-shadow: 0 20px 58px rgba(0, 0, 0, 0.48);
}

.f2-stats div {
	padding: 18px;
	border-right: 1px solid var(--f2-line);
}

.f2-stats div:last-child {
	border-right: 0;
}

.f2-stats span,
.f2-muted {
	color: var(--f2-muted);
}

.f2-stats div:first-child {
	text-align: center;
}

.f2-stats strong {
	display: block;
	margin-top: 6px;
	color: var(--f2-gold);
	font-size: 1.1rem;
}

.f2-stats div:first-child strong {
	position: relative;
	display: block;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	animation: f2-status-pulse 2.2s ease-in-out infinite;
}

.f2-stats div:first-child strong::after {
	content: "";
	position: absolute;
	right: -15px;
	top: 50%;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	transform: translateY(-50%);
	background: var(--f2-gold);
	animation: f2-status-dot 2.2s ease-in-out infinite;
}

.f2-content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
	align-items: start;
	gap: clamp(18px, 3vw, 34px);
	width: min(1180px, calc(100% - 32px));
	margin: 34px auto 78px;
}

/* Inner pages should end with their content instead of stretching to the sidebar. */
.f2-content-panel { align-self: start; }

.f2-content-panel .news-list {
	max-height: none;
	overflow: visible;
	padding-right: 0;
}

.f2-register-layout {
	display: grid;
	grid-template-columns: minmax(320px, 1.08fr) minmax(300px, .92fr);
	gap: 0;
	max-width: none;
	align-items: stretch;
	border: 1px solid rgba(220, 164, 62, .25);
	background: rgba(7, 5, 4, .28);
}

.f2-register-layout .auth-form {
	padding: clamp(28px, 4vw, 42px);
	border: 0;
	border-right: 1px solid rgba(220, 164, 62, .2);
	background: linear-gradient(145deg, rgba(255,229,164,.035), transparent 42%);
}

.f2-register-layout .form-group { margin-bottom: 17px; }
.f2-register-layout .form-input { min-height: 52px; }
.f2-register-layout .btn { min-width: 150px; margin-top: 9px; }

.f2-account-checklist {
	margin-top: 30px;
	padding: 18px;
	border: 1px solid rgba(220,164,62,.18);
	background: linear-gradient(135deg, rgba(242,150,46,.055), transparent 58%), rgba(0,0,0,.16);
}

.f2-account-checklist-head { display: grid; gap: 4px; padding-bottom: 13px; border-bottom: 1px solid rgba(220,164,62,.16); }
.f2-account-checklist-head span { color: var(--f2-orange); font-size: .66rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.f2-account-checklist-head strong { color: var(--f2-gold); font-family: Georgia, serif; font-size: 1.15rem; }
.f2-account-checklist ul { display: grid; gap: 9px; margin: 15px 0; padding: 0; list-style: none; }
.f2-account-checklist li { position: relative; padding-left: 18px; color: var(--f2-muted); font-size: .76rem; line-height: 1.45; }
.f2-account-checklist li::before { content: ""; position: absolute; left: 1px; top: .42em; width: 7px; height: 7px; transform: rotate(45deg); border: 1px solid var(--f2-orange); background: rgba(242,150,46,.18); }
.f2-account-login { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 13px; border-top: 1px solid rgba(220,164,62,.16); }
.f2-account-login span { color: var(--f2-muted); font-size: .73rem; }
.f2-account-login a { color: var(--f2-gold); font-size: .7rem; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.f2-account-login a:hover { color: #fff0b7; }

.f2-register-guide {
	position: relative;
	padding: clamp(28px, 4vw, 42px);
	border: 0;
	background: linear-gradient(145deg, rgba(255,229,164,.075), transparent 35%), radial-gradient(circle at 85% 12%, rgba(242,150,46,.13), transparent 26%), rgba(12,8,5,.64);
	box-shadow: inset 0 1px 0 rgba(255,244,194,.08);
}

.f2-register-kicker {
	margin: 0 0 8px;
	color: var(--f2-orange);
	font-size: .7rem;
	font-weight: 900;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.f2-register-guide h3 { margin: 0 0 12px; color: var(--f2-gold); font-size: clamp(1.6rem, 2.5vw, 2.2rem); line-height: 1.12; }
.f2-register-guide > p:not(.f2-register-kicker) { margin: 0; color: var(--f2-muted); line-height: 1.7; }

.f2-register-steps { display: grid; gap: 8px; margin: 22px 0; padding: 0; list-style: none; }
.f2-register-steps li { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; padding: 10px 12px; border: 1px solid rgba(220,164,62,.17); background: rgba(0,0,0,.18); }
.f2-register-steps li > span { color: var(--f2-orange); font-weight: 950; font-size: 1rem; }
.f2-register-steps strong, .f2-register-steps small { display: block; }
.f2-register-steps strong { color: var(--f2-ink); font-size: .84rem; }
.f2-register-steps small { margin-top: 2px; color: var(--f2-muted); line-height: 1.35; }

.f2-register-note { display: grid; gap: 4px; padding: 14px 16px; border-left: 2px solid var(--f2-orange); background: rgba(242,150,46,.07); }
.f2-register-note strong { color: var(--f2-gold); font-size: .78rem; text-transform: uppercase; }
.f2-register-note span { color: var(--f2-muted); font-size: .78rem; }
.f2-register-links { display: flex; flex-wrap: nowrap; gap: 8px; margin-top: 16px; }
.f2-register-links a { padding: 10px 13px; border: 1px solid var(--f2-line); color: var(--f2-gold); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.f2-register-links a:hover { border-color: var(--f2-line-strong); color: #fff0b7; }

.f2-download-page { display: grid; gap: 20px; }
.f2-download-intro { display: grid; grid-template-columns: minmax(260px,1fr) minmax(300px,1.15fr); gap: clamp(28px,5vw,54px); align-items: center; padding: 10px 0 24px; border-bottom: 1px solid var(--f2-line); }
.f2-download-kicker { margin: 0 0 6px; color: var(--f2-orange); font-size: .68rem; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
.f2-download-intro h3 { margin: 0; color: var(--f2-gold); font-size: clamp(1.65rem,2.5vw,2.35rem); line-height: 1.12; }
.f2-download-intro > p { margin: 0; color: var(--f2-muted); line-height: 1.7; }

.f2-download-cards { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.f2-download-card { position: relative; display: flex; flex-direction: column; min-height: 275px; padding: 28px; border: 1px solid rgba(220,164,62,.22); background: linear-gradient(145deg,rgba(255,229,164,.045),transparent 42%),rgba(6,4,3,.4); overflow: hidden; }
.f2-download-card.is-primary { border-color: rgba(245,211,135,.45); background: linear-gradient(145deg,rgba(242,150,46,.12),transparent 48%),rgba(10,6,4,.5); }
.f2-download-card::after { content: ""; position: absolute; right: -35px; top: -35px; width: 120px; height: 120px; border: 1px solid rgba(242,204,115,.12); transform: rotate(45deg); }
.f2-download-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 26px; border: 1px solid var(--f2-line-strong); color: var(--f2-gold); font-size: 1.45rem; background: rgba(242,150,46,.06); }
.f2-download-card > span { color: var(--f2-orange); font-size: .65rem; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
.f2-download-card h4 { margin: 8px 0 12px; color: var(--f2-ink); font: 700 clamp(1.3rem,2.2vw,1.8rem)/1.1 Georgia,serif; }
.f2-download-card p { margin: 0 0 26px; color: var(--f2-muted); line-height: 1.65; }
.f2-download-card .btn { align-self: flex-start; margin-top: auto; }

.f2-install-guide { display: grid; grid-template-columns: .72fr 1.28fr; gap: 32px; padding: 28px; border: 1px solid rgba(220,164,62,.2); background: rgba(0,0,0,.17); }
.f2-install-heading span { color: var(--f2-orange); font-size: .65rem; font-weight: 950; letter-spacing: .15em; text-transform: uppercase; }
.f2-install-heading h3 { margin: 7px 0 0; color: var(--f2-gold); font-size: 1.6rem; }
.f2-install-guide ol { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.f2-install-guide li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; color: var(--f2-muted); font-size: .78rem; line-height: 1.5; }
.f2-install-guide li strong { color: var(--f2-orange); }
.f2-download-help { grid-column: 1/-1; display: flex; justify-content: space-between; gap: 16px; padding-top: 16px; border-top: 1px solid rgba(220,164,62,.16); color: var(--f2-muted); font-size: .75rem; }
.f2-download-help a { color: var(--f2-gold); font-weight: 900; text-transform: uppercase; }

.f2-login-page { display: grid; grid-template-columns: minmax(300px,.9fr) minmax(320px,1.1fr); max-width: none; border: 1px solid rgba(220,164,62,.25); background: rgba(7,5,4,.28); }
.f2-login-card { padding: clamp(28px,4vw,44px); border-right: 1px solid rgba(220,164,62,.2); }
.f2-login-card-head { margin-bottom: 25px; }
.f2-login-card-head span, .f2-login-kicker { color: var(--f2-orange); font-size: .68rem; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
.f2-login-card-head h3, .f2-login-aside h3 { margin: 8px 0 10px; color: var(--f2-gold); font-size: clamp(1.75rem,3vw,2.55rem); line-height: 1.12; }
.f2-login-card-head p, .f2-login-aside > p:not(.f2-login-kicker) { margin: 0; color: var(--f2-muted); line-height: 1.65; }
.f2-login-card .form-group { margin-bottom: 18px; }
.f2-login-card .form-input { min-height: 52px; }
.f2-login-card .btn { min-width: 150px; margin-top: 5px; }
.f2-login-links { display: flex; justify-content: space-between; gap: 14px; margin-top: 22px; padding-top: 17px; border-top: 1px solid rgba(220,164,62,.16); }
.f2-login-links a { color: var(--f2-gold); font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.f2-login-aside { padding: clamp(30px,5vw,52px); background: linear-gradient(145deg,rgba(255,229,164,.075),transparent 36%),radial-gradient(circle at 90% 10%,rgba(242,150,46,.13),transparent 30%),rgba(12,8,5,.62); }
.f2-login-features { display: grid; gap: 10px; margin: 28px 0; }
.f2-login-features div { padding: 14px 16px; border: 1px solid rgba(220,164,62,.17); background: rgba(0,0,0,.17); }
.f2-login-features strong, .f2-login-features span { display: block; }
.f2-login-features strong { color: var(--f2-ink); font-size: .82rem; }
.f2-login-features span { margin-top: 4px; color: var(--f2-muted); font-size: .75rem; line-height: 1.45; }
.f2-login-discord { display: inline-flex; padding: 11px 14px; border: 1px solid rgba(133,153,255,.4); color: #cbd3ff; font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.f2-recovery-page { display: grid; grid-template-columns: minmax(300px,.95fr) minmax(320px,1.05fr); max-width: none; border: 1px solid rgba(220,164,62,.25); background: rgba(7,5,4,.28); }
.f2-recovery-card { padding: clamp(28px,4vw,44px); border-right: 1px solid rgba(220,164,62,.2); }
.f2-recovery-head { margin-bottom: 25px; }
.f2-recovery-head span, .f2-recovery-kicker { color: var(--f2-orange); font-size: .68rem; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
.f2-recovery-head h3, .f2-recovery-aside h3 { margin: 8px 0 10px; color: var(--f2-gold); font-size: clamp(1.7rem,3vw,2.4rem); line-height: 1.12; }
.f2-recovery-head p, .f2-recovery-aside > p:not(.f2-recovery-kicker) { margin: 0; color: var(--f2-muted); line-height: 1.65; }
.f2-recovery-card .form-group { margin-bottom: 18px; }
.f2-recovery-card .form-input { min-height: 52px; }
.f2-recovery-card .btn { min-width: 160px; }
.f2-recovery-back { display: inline-flex; margin-left: 14px; color: var(--f2-gold); font-size: .7rem; font-weight: 900; text-transform: uppercase; }
.f2-recovery-aside { padding: clamp(30px,5vw,50px); background: linear-gradient(145deg,rgba(255,229,164,.07),transparent 36%),radial-gradient(circle at 90% 12%,rgba(242,150,46,.13),transparent 29%),rgba(12,8,5,.62); }
.f2-recovery-points { display: grid; gap: 10px; margin: 27px 0; }
.f2-recovery-points div { display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding: 13px; border: 1px solid rgba(220,164,62,.17); background: rgba(0,0,0,.16); }
.f2-recovery-points strong { color: var(--f2-orange); }
.f2-recovery-points span { color: var(--f2-muted); font-size: .77rem; line-height: 1.45; }
.f2-recovery-help { display: grid; gap: 7px; padding: 15px; border-left: 2px solid var(--f2-orange); background: rgba(242,150,46,.065); }
.f2-recovery-help span { color: var(--f2-muted); font-size: .76rem; }
.f2-recovery-help a { color: var(--f2-gold); font-size: .7rem; font-weight: 950; text-transform: uppercase; }

.f2-panel-welcome { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-bottom: 18px; padding: 24px; border: 1px solid rgba(220,164,62,.25); background: linear-gradient(135deg,rgba(242,150,46,.08),transparent 45%),rgba(7,5,4,.38); }
.f2-panel-welcome span { color: var(--f2-orange); font-size: .67rem; font-weight: 950; letter-spacing: .15em; text-transform: uppercase; }
.f2-panel-welcome h3 { margin: 7px 0 6px; color: var(--f2-gold); font-size: clamp(1.45rem,2.5vw,2rem); }
.f2-panel-welcome p { margin: 0; color: var(--f2-muted); line-height: 1.5; }
.f2-panel-quick-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.f2-panel-quick-links a { padding: 9px 11px; border: 1px solid var(--f2-line); color: var(--f2-gold); font-size: .66rem; font-weight: 900; text-transform: uppercase; }
.f2-user-overview { grid-template-columns: 1.4fr repeat(2,minmax(0,.8fr)); }
.f2-user-card { position: relative; min-height: 105px; padding: 20px; overflow: hidden; }
.f2-user-card::after { content: ""; position: absolute; right: -25px; bottom: -25px; width: 72px; height: 72px; transform: rotate(45deg); border: 1px solid rgba(242,204,115,.1); }
.panel-section-wrapper { display: grid; gap: 8px; }
.panel-section { border: 1px solid rgba(220,164,62,.22); background: linear-gradient(90deg,rgba(242,150,46,.06),transparent 55%),rgba(7,5,4,.42); }
.panel-section-header { position: relative; padding-right: 46px !important; }
.panel-section-header::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--f2-gold); font-size: 1.2rem; }
.panel-section.active .panel-section-header::after { content: "-"; }
.panel-section-content { border: 1px solid rgba(220,164,62,.17); border-top: 0; background: rgba(4,3,2,.34); }

@media (max-width: 760px) {
	.f2-login-page { grid-template-columns: 1fr; }
	.f2-login-card { border-right: 0; border-bottom: 1px solid rgba(220,164,62,.2); }
	.f2-login-card, .f2-login-aside { padding: 20px; }
	.f2-panel-welcome { align-items: flex-start; flex-direction: column; padding: 18px; }
	.f2-panel-quick-links { justify-content: flex-start; }
	.f2-user-overview { grid-template-columns: 1fr; }
	.f2-recovery-page { grid-template-columns: 1fr; }
	.f2-recovery-card { border-right: 0; border-bottom: 1px solid rgba(220,164,62,.2); }
	.f2-recovery-card, .f2-recovery-aside { padding: 20px; }
	.f2-recovery-back { display: flex; margin: 14px 0 0; }
}

@media (max-width: 760px) {
	.f2-download-intro, .f2-download-cards, .f2-install-guide { grid-template-columns: 1fr; }
	.f2-download-intro { gap: 12px; }
	.f2-download-card { min-height: 240px; }
	.f2-download-help { grid-column: auto; flex-direction: column; }
}

@media (max-width: 760px) {
	.f2-register-layout { grid-template-columns: 1fr; }
	.f2-register-layout .auth-form { border-right: 0; border-bottom: 1px solid rgba(220,164,62,.2); }
	.f2-register-layout .auth-form, .f2-register-guide { padding: 20px; }
	.f2-register-links { flex-wrap: wrap; }
}

.f2-content-panel,
.f2-widget {
	padding: 24px;
}

.f2-section-head h2 {
	margin: 0 0 18px;
	font-size: clamp(2rem, 4vw, 4rem);
}

.f2-side {
	display: grid;
	gap: 16px;
	align-content: start;
}

.f2-widget h3 {
	margin: 0 0 16px;
	font-size: 2.1rem;
}

.f2-widget {
	padding: 0;
	background:
		linear-gradient(145deg, rgba(255, 229, 164, 0.08), transparent 30%),
		linear-gradient(180deg, rgba(39, 29, 18, 0.94), rgba(10, 7, 5, 0.92));
}

.f2-widget-title {
	position: relative;
	padding: 20px 24px 17px;
	border-bottom: 1px solid rgba(220, 164, 62, 0.24);
	background:
		linear-gradient(90deg, rgba(242, 150, 46, 0.14), transparent 74%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent);
}

.f2-widget-title::before,
.f2-widget-title::after {
	content: "";
	position: absolute;
	top: 18px;
	width: 10px;
	height: 10px;
	border-top: 1px solid rgba(255, 222, 142, 0.72);
}

.f2-widget-title::before {
	left: 14px;
	border-left: 1px solid rgba(255, 222, 142, 0.72);
}

.f2-widget-title::after {
	right: 14px;
	border-right: 1px solid rgba(255, 222, 142, 0.72);
}

.f2-widget-title span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 9px;
	color: var(--f2-gold);
	font-size: 0.74rem;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.f2-widget-title span::before {
	content: "";
	width: 14px;
	height: 14px;
	transform: rotate(45deg);
	border: 1px solid rgba(255, 222, 142, 0.78);
	background: linear-gradient(135deg, rgba(242, 204, 115, 0.8), rgba(242, 150, 46, 0.14));
	box-shadow: 0 0 18px rgba(242, 204, 115, 0.22);
}

.f2-widget-title h3 {
	margin-bottom: 0;
	font-size: 2rem;
	text-shadow: 0 12px 32px rgba(0, 0, 0, 0.58);
}

.f2-widget > a,
.f2-ranking-list li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 13px 0;
	border-top: 1px solid var(--f2-line);
	transition: color 160ms ease, padding-left 160ms ease;
}

.f2-widget > a:hover {
	color: var(--f2-gold);
	padding-left: 8px;
}

.f2-widget > p,
.f2-widget > .f2-text-link,
.f2-widget > .f2-ranking-list {
	margin-left: 24px;
	margin-right: 24px;
}

.f2-widget > p {
	margin-top: 20px;
}

.f2-widget > .f2-text-link {
	display: flex;
	margin-top: 18px;
	margin-bottom: 24px;
	padding: 13px 0;
	border-top: 1px solid rgba(220, 164, 62, 0.24);
}

.f2-link-slots {
	display: grid;
	padding: 18px;
	gap: 10px;
}

.f2-link-slots a {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 12px;
	min-height: 58px;
	padding: 13px 16px;
	border: 1px solid rgba(220, 164, 62, 0.28);
	background:
		linear-gradient(90deg, rgba(242, 150, 46, 0.1), transparent 68%),
		rgba(5, 4, 3, 0.48);
	transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.f2-link-slots a::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--f2-gold), var(--f2-orange));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 260ms ease;
}

.f2-link-slots a::before {
	content: "";
	width: 8px;
	height: 8px;
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	border: 1px solid rgba(255, 222, 142, 0.65);
}

.f2-link-slots a span {
	padding-left: 20px;
	color: var(--f2-ink);
	font-weight: 950;
	font-size: 0.86rem;
}

.f2-link-slots a small {
	color: var(--f2-muted);
	font-weight: 800;
	text-transform: uppercase;
	font-size: 0.68rem;
	letter-spacing: 0.05em;
}

.f2-link-slots a:hover {
	transform: translateX(4px);
	border-color: var(--f2-line-strong);
	background:
		linear-gradient(90deg, rgba(242, 150, 46, 0.18), transparent 68%),
		rgba(5, 4, 3, 0.6);
}

.f2-link-slots a:hover::after {
	transform: scaleX(1);
}

.f2-reveal {
	opacity: 0;
	transform: translateY(22px);
}

.f2-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.f2-ranking-list {
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
}

.f2-ranking-list strong,
.f2-text-link {
	color: var(--f2-gold);
	font-weight: 850;
}

.news-item {
	margin-bottom: 16px;
	padding: 22px;
	border: 1px solid var(--f2-line);
	background:
		linear-gradient(135deg, rgba(242, 150, 46, 0.06), transparent 36%),
		rgba(7, 5, 4, 0.42);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.news-item:hover {
	transform: translateY(-2px);
	border-color: var(--f2-line-strong);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

@keyframes f2-particle-rise {
	0% {
		opacity: 0;
		transform: translate3d(0, 0, 0) scale(0.6);
	}
	12% {
		opacity: 0.85;
	}
	70% {
		opacity: 0.55;
	}
	100% {
		opacity: 0;
		transform: translate3d(34px, -360px, 0) scale(1.25);
	}
}

@keyframes f2-ember-breathe {
	0%, 100% {
		opacity: 0.42;
		transform: scaleX(0.96);
	}
	50% {
		opacity: 0.88;
		transform: scaleX(1.04);
	}
}

@keyframes f2-hero-drift {
	0% {
		transform: scale(1.02) translate3d(0, 0, 0);
	}
	100% {
		transform: scale(1.055) translate3d(-10px, -4px, 0);
	}
}

@keyframes f2-mist-drift {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(42%, -6%, 0) scale(1.12);
	}
	100% {
		transform: translate3d(92%, 2%, 0) scale(1);
	}
}

@keyframes f2-logo-drift {
	0%, 100% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(6px, -2px, 0);
	}
}

@keyframes f2-logo-parallax {
	0%, 100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(-5px, 1px, 0) scale(1.01);
	}
}

@keyframes f2-logo-glow {
	0%, 100% {
		filter: brightness(1) saturate(1);
	}
	50% {
		filter: brightness(1.1) saturate(1.12);
	}
}

@keyframes f2-logo-shine {
	0%, 45% {
		left: -30%;
		opacity: 0;
	}
	55% {
		opacity: 1;
	}
	78%, 100% {
		left: 105%;
		opacity: 0;
	}
}

@keyframes f2-logo-fragment {
	0% {
		opacity: 0;
		transform: translate3d(0, 0, 0) scale(0.5) rotate(0deg);
	}
	18% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translate3d(64px, -34px, 0) scale(1.1) rotate(220deg);
	}
}

@keyframes f2-logo-line {
	0%, 100% {
		transform: scaleX(0.25);
		opacity: 0;
	}
	35%, 65% {
		transform: scaleX(1);
		opacity: 0.85;
	}
}

@keyframes f2-button-shine {
	0% {
		left: -36%;
		opacity: 0;
	}
	22% {
		opacity: 1;
	}
	100% {
		left: 112%;
		opacity: 0;
	}
}

@keyframes f2-status-pulse {
	0%, 100% {
		color: var(--f2-gold);
	}
	50% {
		color: #fff0b7;
	}
}

@keyframes f2-status-dot {
	0%, 100% {
		opacity: 0.35;
		transform: translateY(-50%) scale(0.82);
	}
	50% {
		opacity: 1;
		transform: translateY(-50%) scale(1.18);
	}
}

.news-item h2 {
	margin-top: 0;
	color: var(--f2-gold);
}

.ranking-table,
.download-table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--f2-line);
}

.ranking-table th,
.ranking-table td,
.download-table th,
.download-table td {
	padding: 13px;
	border-bottom: 1px solid var(--f2-line);
	text-align: left;
}

.ranking-table th,
.download-table th {
	color: var(--f2-gold);
	text-transform: uppercase;
	font-size: 0.78rem;
}

.f2-ranking-page {
	display: grid;
	gap: 18px;
}

.f2-ranking-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.f2-ranking-tabs a {
	border: 1px solid var(--f2-line);
	padding: 10px 14px;
	color: var(--f2-muted);
	font-size: 0.76rem;
	font-weight: 950;
	text-transform: uppercase;
}

.f2-ranking-tabs a.is-active,
.f2-ranking-tabs a:hover {
	border-color: var(--f2-line-strong);
	color: var(--f2-gold);
	background: rgba(242, 150, 46, 0.08);
}

.f2-ranking-hero,
.f2-podium-card {
	border: 1px solid var(--f2-line);
	background:
		linear-gradient(145deg, rgba(255, 222, 142, 0.07), transparent 38%),
		rgba(15, 10, 7, 0.78);
	box-shadow: inset 0 1px 0 rgba(255, 244, 194, 0.08);
}

.f2-ranking-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
	gap: 18px;
	align-items: end;
	padding: 20px;
}

.f2-ranking-hero span,
.f2-podium-card span,
.player-name-cell small {
	display: block;
	color: var(--f2-muted);
	font-size: 0.72rem;
	font-weight: 950;
	text-transform: uppercase;
}

.f2-ranking-hero strong {
	display: block;
	margin-top: 5px;
	color: var(--f2-gold);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1;
}

.f2-ranking-hero small {
	display: block;
	margin-top: 8px;
	color: var(--f2-muted);
}

.f2-ranking-filter {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 150px auto auto;
	gap: 9px;
}

.f2-ranking-filter input,
.f2-ranking-filter select {
	min-height: 44px;
	border: 1px solid var(--f2-line);
	background: rgba(7, 5, 4, 0.76);
	color: var(--f2-ink);
	padding: 10px 12px;
}

.f2-ranking-filter select {
	color: var(--f2-gold);
}

.f2-podium {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	align-items: stretch;
}

.f2-podium-card {
	position: relative;
	overflow: hidden;
	min-height: 116px;
	padding: 18px;
}

.f2-podium-card::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--f2-gold), var(--f2-orange));
}

.f2-podium-card.rank-1 {
	background:
		linear-gradient(145deg, rgba(242, 204, 115, 0.16), transparent 46%),
		rgba(22, 15, 9, 0.9);
	transform: translateY(-4px);
}

.f2-podium-card strong {
	display: block;
	margin: 9px 0 7px;
	color: var(--f2-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.55rem;
	line-height: 1.1;
}

.f2-podium-card small {
	color: var(--f2-gold);
	font-weight: 850;
}

.f2-ranking-table tbody tr {
	transition: background 160ms ease, transform 160ms ease;
}

.f2-ranking-table tbody tr:hover {
	background: rgba(242, 150, 46, 0.07);
}

.f2-rank-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid var(--f2-line-strong);
	color: var(--f2-gold);
	font-weight: 950;
	background: rgba(242, 150, 46, 0.08);
}

.player-name-cell strong {
	display: block;
	color: var(--f2-ink);
}

.kingdom-map-icon,
.kingdom-cell img {
	width: 36px;
	height: 36px;
	object-fit: cover;
	border: 1px solid var(--f2-line);
}

.alert,
.alert-banner {
	margin-bottom: 16px;
	padding: 13px 15px;
	border: 1px solid currentColor;
}

.alert-error {
	color: #ff8d7f;
}

.alert-success {
	color: #8fd18d;
}

.f2-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 28px clamp(18px, 5vw, 76px);
	border-top: 1px solid var(--f2-line);
	background: #030202;
}

.f2-footer-brand {
	display: grid;
	gap: 5px;
}

.f2-footer-brand strong {
	font-family: var(--f2-serif);
	font-size: 1.5rem;
	color: var(--f2-ivory);
}

.f2-footer-brand span {
	color: var(--f2-gold);
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.f2-footer-brand p {
	margin: 0;
	color: var(--f2-muted);
}

.f2-footer nav {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	color: var(--f2-gold);
}

.f2-footer nav a {
	position: relative;
	padding-bottom: 4px;
}

.f2-footer nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	opacity: .45;
	transform: scaleX(.35);
	transform-origin: left;
	transition: transform .25s ease, opacity .25s ease;
}

.f2-footer nav a:hover::after {
	opacity: 1;
	transform: scaleX(1);
}

@media (max-width: 980px) {
	.f2-nav {
		display: none;
	}

	.f2-header .f2-nav.mobile-active {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
		display: flex !important;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		width: min(82vw, 320px);
		height: 100vh;
		padding: 76px 18px 24px;
		border-right: 1px solid var(--f2-line);
		background:
			linear-gradient(180deg, rgba(242, 150, 46, 0.08), transparent 34%),
			rgba(7, 5, 4, 0.98);
		box-shadow: 18px 0 40px rgba(0, 0, 0, 0.52);
		backdrop-filter: blur(14px);
	}

	.f2-header .f2-nav.mobile-active a {
		display: flex;
		width: 100%;
		min-height: 46px;
		align-items: center;
		border-bottom: 1px solid rgba(220, 164, 62, 0.16);
		padding: 0 6px;
		text-align: left;
	}

	.f2-header .f2-nav.mobile-active .f2-language-switcher {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 6px;
		margin: 8px 0;
		padding: 4px;
	}

	.f2-header .f2-nav.mobile-active .f2-language-switcher a {
		justify-content: center;
		min-height: 38px;
		border-bottom: 0;
		padding: 0;
	}

	.f2-header .mobile-menu-toggle {
		display: flex;
	}

	.f2-header .hamburger-line {
		background: var(--f2-gold);
	}

	.f2-hero-inner,
	.f2-content-grid,
	.f2-rules-grid,
	.f2-user-overview,
	.f2-ranking-hero,
	.f2-podium {
		grid-template-columns: 1fr;
	}

	.f2-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.f2-hero {
		min-height: auto;
		padding-top: 98px;
	}
	.is-ranking-page .f2-hero {
		min-height: 220px;
		padding: 86px 16px 24px;
	}

	.is-ranking-page .f2-hero-inner {
		display: block;
	}

	.is-ranking-page .f2-logo-stage {
		width: min(310px, 88vw);
		height: auto;
		margin-bottom: 8px;
	}

	.is-ranking-page .f2-hero h1 {
		max-width: none;
		margin-bottom: 0;
		font-size: 2.1rem;
	}

	.is-ranking-page .f2-hero-copy > p:not(.f2-kicker),
	.is-ranking-page .f2-actions,
	.is-ranking-page .f2-account-panel,
	.is-ranking-page .f2-stats,
	.is-ranking-page .f2-side {
		display: none;
	}

	.is-ranking-page .f2-content-grid {
		display: block;
		width: min(100% - 20px, 1180px);
		margin-top: 12px;
	}

	.is-ranking-page .f2-content-panel {
		overflow: visible;
		padding: 16px 12px;
	}

	.is-ranking-page .f2-section-head h2 {
		font-size: 2.35rem;
	}

	.f2-logo-stage {
		width: min(360px, 94vw);
		height: auto;
		margin-left: 0;
	}

	.f2-hero h1 {
		font-size: 2.8rem;
	}

	.f2-stats {
		grid-template-columns: 1fr;
	}

	.f2-footer {
		flex-direction: column;
	}

	.admin-tabs {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.admin-tabs a {
		text-align: center;
	}

	.table-wrapper,
	.ranking-table-wrapper {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.admin-mobile-table,
	.ranking-table,
	.download-table {
		min-width: 0;
	}

	.admin-mobile-table thead {
		display: none;
	}

	.admin-mobile-table,
	.admin-mobile-table tbody,
	.admin-mobile-table tr,
	.admin-mobile-table td {
		display: block;
		width: 100%;
	}

	.admin-mobile-table tr {
		border: 1px solid var(--f2-line);
		margin-bottom: 10px;
		background: rgba(15, 10, 7, 0.7);
	}

	.admin-mobile-table td {
		display: flex;
		justify-content: space-between;
		gap: 12px;
		border-bottom: 1px solid rgba(220, 164, 62, 0.15);
	}

	.admin-mobile-table td::before {
		content: attr(data-label);
		color: var(--f2-gold);
		font-weight: 900;
		text-transform: uppercase;
		font-size: 0.68rem;
	}

	.f2-vote-step {
		grid-template-columns: 1fr;
	}

	.f2-vote-step > span {
		width: 34px;
		height: 34px;
	}

	.f2-vote-actions .btn,
	.f2-vote-actions form {
		width: 100%;
	}

	.f2-vote-actions form .btn {
		width: 100%;
	}

	.f2-ranking-filter {
		grid-template-columns: 1fr;
	}

	.f2-ranking-table thead {
		display: none;
	}

	.f2-ranking-table,
	.f2-ranking-table tbody,
	.f2-ranking-table tr,
	.f2-ranking-table td {
		display: block;
		width: 100%;
	}

	.f2-ranking-table tr {
		margin-bottom: 12px;
		border: 1px solid var(--f2-line);
		background: rgba(15, 10, 7, 0.74);
	}

	.f2-ranking-table td {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		border-bottom: 1px solid rgba(220, 164, 62, 0.15);
	}

	.f2-ranking-table td::before {
		content: attr(data-label);
		color: var(--f2-gold);
		font-size: 0.68rem;
		font-weight: 950;
		text-transform: uppercase;
	}

	.f2-podium-card.rank-1 {
		transform: none;
	}
}

@media (max-width: 620px) {
	body.is-ranking-page .f2-hero,
	body.is-ranking-page .f2-stats,
	body.is-ranking-page .f2-side {
		display: none !important;
	}

	body.is-ranking-page .f2-shell {
		overflow: visible !important;
		padding-top: 74px;
	}

	body.is-ranking-page .f2-content-grid {
		display: block !important;
		width: calc(100% - 16px) !important;
		margin: 0 auto 34px !important;
	}

	body.is-ranking-page .f2-content-panel {
		display: block !important;
		overflow: visible !important;
		min-height: 260px;
		padding: 16px 10px !important;
	}

	body.is-ranking-page .f2-section-head {
		display: block !important;
	}

	body.is-ranking-page .f2-section-head h2 {
		font-size: 2.25rem !important;
		margin-bottom: 14px !important;
	}

	body.is-ranking-page .f2-ranking-page,
	body.is-ranking-page .f2-ranking-hero,
	body.is-ranking-page .ranking-table-wrapper,
	body.is-ranking-page .f2-ranking-table,
	body.is-ranking-page .f2-ranking-table tbody,
	body.is-ranking-page .f2-ranking-table tr,
	body.is-ranking-page .f2-ranking-table td {
		visibility: visible !important;
		opacity: 1 !important;
	}
}
body.is-ranking-page .f2-content-panel,
body.is-ranking-page .f2-content-panel.f2-reveal,
body.is-ranking-page .f2-content-panel.f2-reveal.is-visible {
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
}

@media (max-width: 620px) {
	body.is-ranking-page main.f2-shell {
		min-height: 100vh;
	}

	body.is-ranking-page .f2-content-grid {
		position: relative !important;
		z-index: 5 !important;
	}
}
@media (max-width: 620px) {
	body.is-ranking-page .f2-podium {
		gap: 10px;
	}

	body.is-ranking-page .f2-podium-card {
		min-height: auto;
		padding: 14px 16px;
	}

	body.is-ranking-page .ranking-table-wrapper {
		overflow: visible !important;
	}

	body.is-ranking-page .f2-ranking-table {
		border: 0 !important;
		background: transparent !important;
	}

	body.is-ranking-page .f2-ranking-table tbody {
		display: grid !important;
		gap: 10px;
	}

	body.is-ranking-page .f2-ranking-table tr {
		display: grid !important;
		grid-template-columns: 52px minmax(0, 1fr) auto;
		grid-template-areas:
			"rank name kingdom"
			"rank level kingdom"
			"rank exp exp"
			"rank time time";
		gap: 5px 12px;
		align-items: center;
		margin: 0 !important;
		padding: 13px;
		border: 1px solid var(--f2-line) !important;
		background:
			linear-gradient(145deg, rgba(255, 222, 142, 0.06), transparent 42%),
			rgba(15, 10, 7, 0.86) !important;
		box-shadow: inset 0 1px 0 rgba(255, 244, 194, 0.07);
	}

	body.is-ranking-page .f2-ranking-table td {
		display: block !important;
		width: auto !important;
		padding: 0 !important;
		border: 0 !important;
		background: transparent !important;
		color: var(--f2-muted);
		text-align: left !important;
	}

	body.is-ranking-page .f2-ranking-table td::before {
		display: none !important;
	}

	body.is-ranking-page .f2-ranking-table td:nth-child(1) {
		grid-area: rank;
		align-self: stretch;
		display: flex !important;
		align-items: center;
		justify-content: center;
		border-right: 1px solid rgba(220, 164, 62, 0.18) !important;
	}

	body.is-ranking-page .f2-ranking-table td:nth-child(2) {
		grid-area: name;
	}

	body.is-ranking-page .f2-ranking-table td:nth-child(3) {
		grid-area: level;
		color: var(--f2-gold);
		font-weight: 900;
	}

	body.is-ranking-page .f2-ranking-table td:nth-child(4) {
		grid-area: exp;
		padding-top: 8px !important;
		border-top: 1px solid rgba(220, 164, 62, 0.13) !important;
		font-size: 0.82rem;
	}

	body.is-ranking-page .f2-ranking-table td:nth-child(4)::after {
		content: " EXP";
		color: var(--f2-gold);
		font-size: 0.68rem;
		font-weight: 950;
	}

	body.is-ranking-page .f2-ranking-table td:nth-child(5) {
		grid-area: time;
		font-size: 0.82rem;
	}

	body.is-ranking-page .f2-ranking-table td:nth-child(5)::after {
		content: " PLAY TIME";
		color: var(--f2-gold);
		font-size: 0.68rem;
		font-weight: 950;
	}

	body.is-ranking-page .f2-ranking-table td:nth-child(6) {
		grid-area: kingdom;
		align-self: center;
		justify-self: end;
	}

	body.is-ranking-page .f2-rank-badge {
		width: 34px;
		height: 34px;
		font-size: 0.95rem;
	}

	body.is-ranking-page .player-name-cell strong {
		font-size: 1.05rem;
		line-height: 1.1;
	}

	body.is-ranking-page .player-name-cell small {
		margin-top: 4px;
		font-size: 0.68rem;
	}

	body.is-ranking-page .kingdom-map-icon,
	body.is-ranking-page .kingdom-cell img {
		width: 34px;
		height: 34px;
	}
}
body.is-ranking-page .ranking-table-wrapper {
	overflow: visible;
}

body.is-ranking-page .f2-ranking-table {
	border: 0;
	background: transparent;
}

body.is-ranking-page .f2-ranking-table thead {
	display: none;
}

body.is-ranking-page .f2-ranking-table,
body.is-ranking-page .f2-ranking-table tbody {
	display: block;
	width: 100%;
}

body.is-ranking-page .f2-ranking-table tbody {
	display: grid;
	gap: 12px;
}

body.is-ranking-page .f2-ranking-table tr {
	display: grid;
	grid-template-columns: 72px minmax(190px, 1.4fr) 120px minmax(120px, 1fr) 120px 60px;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	border: 1px solid var(--f2-line);
	background:
		linear-gradient(145deg, rgba(255, 222, 142, 0.06), transparent 42%),
		rgba(15, 10, 7, 0.86);
	box-shadow: inset 0 1px 0 rgba(255, 244, 194, 0.07), 0 12px 28px rgba(0, 0, 0, 0.2);
	transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

body.is-ranking-page .f2-ranking-table tr:hover {
	transform: translateY(-1px);
	border-color: var(--f2-line-strong);
	background:
		linear-gradient(145deg, rgba(255, 222, 142, 0.09), transparent 42%),
		rgba(18, 12, 8, 0.92);
}

body.is-ranking-page .f2-ranking-table td {
	display: block;
	padding: 0;
	border: 0;
	color: var(--f2-muted);
	background: transparent;
}

body.is-ranking-page .f2-ranking-table td::before {
	display: block;
	margin-bottom: 4px;
	color: var(--f2-gold);
	font-size: 0.62rem;
	font-weight: 950;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

body.is-ranking-page .f2-ranking-table td:nth-child(1)::before {
	content: "Rank";
}

body.is-ranking-page .f2-ranking-table td:nth-child(2)::before {
	content: "Name";
}

body.is-ranking-page .f2-ranking-table td:nth-child(3)::before {
	content: "Level";
}

body.is-ranking-page .f2-ranking-table td:nth-child(4)::before {
	content: "Experience";
}

body.is-ranking-page .f2-ranking-table td:nth-child(5)::before {
	content: "Play time";
}

body.is-ranking-page .f2-ranking-table td:nth-child(6)::before {
	content: "Kingdom";
}

body.is-ranking-page .f2-ranking-table td:nth-child(1) {
	border-right: 1px solid rgba(220, 164, 62, 0.16);
	padding-right: 14px;
}

body.is-ranking-page .f2-rank-badge {
	width: 42px;
	height: 42px;
	font-size: 1rem;
}

body.is-ranking-page .player-name-cell strong {
	font-size: 1.08rem;
	line-height: 1.1;
}

body.is-ranking-page .player-name-cell small {
	margin-top: 5px;
}

body.is-ranking-page .level-cell,
body.is-ranking-page .playtime-cell {
	color: var(--f2-gold);
	font-weight: 900;
}

body.is-ranking-page .kingdom-cell {
	text-align: right;
}
@media (max-width: 620px) {
	body.is-ranking-page .f2-ranking-table tr {
		display: grid !important;
		grid-template-columns: 52px minmax(0, 1fr) auto !important;
		grid-template-areas:
			"rank name kingdom"
			"rank level kingdom"
			"rank exp exp"
			"rank time time" !important;
		gap: 5px 12px !important;
		padding: 13px !important;
	}

	body.is-ranking-page .f2-ranking-table tr:hover {
		transform: none !important;
	}

	body.is-ranking-page .f2-ranking-table td::before {
		display: none !important;
	}

	body.is-ranking-page .f2-ranking-table td:nth-child(1) { grid-area: rank !important; }
	body.is-ranking-page .f2-ranking-table td:nth-child(2) { grid-area: name !important; }
	body.is-ranking-page .f2-ranking-table td:nth-child(3) { grid-area: level !important; }
	body.is-ranking-page .f2-ranking-table td:nth-child(4) { grid-area: exp !important; }
	body.is-ranking-page .f2-ranking-table td:nth-child(5) { grid-area: time !important; }
	body.is-ranking-page .f2-ranking-table td:nth-child(6) { grid-area: kingdom !important; }

	body.is-ranking-page .f2-ranking-table td:nth-child(4)::after {
		content: " EXP" !important;
		display: inline !important;
	}

	body.is-ranking-page .f2-ranking-table td:nth-child(5)::after {
		content: " PLAY TIME" !important;
		display: inline !important;
	}
}
body.is-ranking-page .f2-content-panel {
	overflow: hidden;
}

body.is-ranking-page .f2-ranking-table tr {
	grid-template-columns: 62px minmax(140px, 1.25fr) minmax(74px, .65fr) minmax(104px, .9fr) minmax(84px, .75fr) 50px;
	gap: 10px;
	padding: 13px 12px;
}

body.is-ranking-page .f2-ranking-table td {
	min-width: 0;
	word-break: break-word;
}

body.is-ranking-page .f2-ranking-table td::before {
	font-size: 0.58rem;
}

body.is-ranking-page .player-name-cell strong {
	font-size: 1rem;
}

body.is-ranking-page .kingdom-map-icon,
body.is-ranking-page .kingdom-cell img {
	width: 32px;
	height: 32px;
}

@media (max-width: 1180px) and (min-width: 621px) {
	body.is-ranking-page .f2-ranking-table tr {
		grid-template-columns: 56px minmax(0, 1fr) 76px 42px;
		grid-template-areas:
			"rank name level kingdom"
			"rank exp time kingdom";
		gap: 8px 12px;
	}

	body.is-ranking-page .f2-ranking-table td:nth-child(1) { grid-area: rank; }
	body.is-ranking-page .f2-ranking-table td:nth-child(2) { grid-area: name; }
	body.is-ranking-page .f2-ranking-table td:nth-child(3) { grid-area: level; }
	body.is-ranking-page .f2-ranking-table td:nth-child(4) { grid-area: exp; }
	body.is-ranking-page .f2-ranking-table td:nth-child(5) { grid-area: time; }
	body.is-ranking-page .f2-ranking-table td:nth-child(6) { grid-area: kingdom; align-self: center; }
}

body.is-ranking-page .f2-ranking-filter {
	grid-template-columns: minmax(160px, 1fr) minmax(130px, 150px) auto auto;
}
body.is-ranking-page .f2-ranking-table tr {
	grid-template-columns: 62px minmax(140px, 1.2fr) minmax(74px, .6fr) minmax(104px, .85fr) minmax(84px, .7fr) 82px;
}

body.is-ranking-page .f2-ranking-table td:nth-child(6),
body.is-ranking-page .f2-ranking-table td:nth-child(6)::before {
	white-space: nowrap;
	text-align: center;
}

body.is-ranking-page .kingdom-cell {
	justify-self: center;
	text-align: center;
}

body.is-ranking-page .kingdom-map-icon,
body.is-ranking-page .kingdom-cell img {
	width: 42px;
	height: 42px;
	object-fit: cover;
	border: 1px solid rgba(255, 222, 142, 0.56);
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.34), 0 0 14px rgba(242, 150, 46, 0.16);
	filter: saturate(1.22) contrast(1.12) brightness(1.06);
	image-rendering: auto;
}

@media (max-width: 1180px) and (min-width: 621px) {
	body.is-ranking-page .f2-ranking-table tr {
		grid-template-columns: 56px minmax(0, 1fr) 76px 54px;
	}

	body.is-ranking-page .f2-ranking-table td:nth-child(6)::before {
		display: none;
	}
}

@media (max-width: 620px) {
	body.is-ranking-page .kingdom-map-icon,
	body.is-ranking-page .kingdom-cell img {
		width: 38px;
		height: 38px;
	}
}
body.is-ranking-page .kingdom-map-icon,
body.is-ranking-page .kingdom-cell img {
	width: 34px;
	height: 34px;
	border-color: rgba(255, 222, 142, 0.48);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.42), 0 0 10px rgba(242, 150, 46, 0.12);
}

@media (max-width: 620px) {
	body.is-ranking-page .kingdom-map-icon,
	body.is-ranking-page .kingdom-cell img {
		width: 34px;
		height: 34px;
	}
}
body.is-ranking-page .f2-ranking-filter {
	grid-template-columns: minmax(180px, 1fr) minmax(150px, 170px) minmax(92px, auto) minmax(92px, auto);
	align-items: stretch;
}

body.is-ranking-page .f2-ranking-filter .btn,
body.is-ranking-page .f2-ranking-filter button,
body.is-ranking-page .f2-ranking-filter a.btn {
	min-width: 92px;
	min-height: 44px;
	padding-left: 14px;
	padding-right: 14px;
	white-space: nowrap;
	font-size: 0.72rem;
}

@media (max-width: 1320px) and (min-width: 981px) {
	body.is-ranking-page .f2-ranking-hero {
		grid-template-columns: 1fr;
	}

	body.is-ranking-page .f2-ranking-filter {
		grid-template-columns: minmax(180px, 1fr) minmax(150px, 180px) minmax(96px, auto) minmax(96px, auto);
	}
}

@media (max-width: 760px) {
	body.is-ranking-page .f2-ranking-filter {
		grid-template-columns: 1fr 1fr;
	}

	body.is-ranking-page .f2-ranking-filter input,
	body.is-ranking-page .f2-ranking-filter select {
		grid-column: span 2;
	}

	body.is-ranking-page .f2-ranking-filter .btn,
	body.is-ranking-page .f2-ranking-filter button,
	body.is-ranking-page .f2-ranking-filter a.btn {
		width: 100%;
		min-width: 0;
	}
}
body.is-ranking-page .f2-ranking-filter {
	display: flex !important;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: stretch;
	gap: 9px;
	min-width: 0;
}

body.is-ranking-page .f2-ranking-filter input {
	flex: 1 1 180px;
	min-width: 0;
	max-width: 240px;
}

body.is-ranking-page .f2-ranking-filter select {
	flex: 0 1 160px;
	min-width: 140px;
}

body.is-ranking-page .f2-ranking-filter button,
body.is-ranking-page .f2-ranking-filter a.btn {
	flex: 0 0 auto;
	min-width: 96px;
	max-width: 120px;
	white-space: nowrap;
}

@media (max-width: 1320px) and (min-width: 981px) {
	body.is-ranking-page .f2-ranking-filter {
		justify-content: flex-start;
	}
}

@media (max-width: 620px) {
	body.is-ranking-page .f2-ranking-filter {
		display: grid !important;
		grid-template-columns: 1fr 1fr;
	}

	body.is-ranking-page .f2-ranking-filter input,
	body.is-ranking-page .f2-ranking-filter select {
		grid-column: span 2;
		max-width: none;
		width: 100%;
	}

	body.is-ranking-page .f2-ranking-filter button,
	body.is-ranking-page .f2-ranking-filter a.btn {
		max-width: none;
		width: 100%;
	}
}
.f2-ticket-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin: 0 0 18px;
}

.f2-ticket-stats div,
.f2-ticket-card,
.f2-ticket-mini,
.f2-ticket-create {
	border: 1px solid var(--f2-line);
	background: linear-gradient(145deg, rgba(255, 222, 142, 0.055), transparent 42%), rgba(15, 10, 7, 0.84);
	box-shadow: inset 0 1px 0 rgba(255, 244, 194, 0.07);
}

.f2-ticket-stats div {
	padding: 14px;
}

.f2-ticket-stats span,
.f2-ticket-head span,
.f2-ticket-mini header span,
.f2-ticket-message span {
	display: block;
	color: var(--f2-muted);
	font-size: 0.7rem;
	font-weight: 950;
	text-transform: uppercase;
}

.f2-ticket-stats strong {
	display: block;
	margin-top: 5px;
	color: var(--f2-gold);
	font-size: 1.55rem;
}

.f2-ticket-list {
	display: grid;
	gap: 14px;
}

.f2-ticket-card,
.f2-ticket-mini,
.f2-ticket-create {
	padding: 16px;
}

.f2-ticket-head {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: flex-start;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(220, 164, 62, 0.18);
}

.f2-ticket-head h3,
.f2-ticket-mini header strong {
	display: block;
	margin: 5px 0;
	color: var(--f2-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.35rem;
}

.f2-ticket-head strong {
	border: 1px solid var(--f2-line);
	padding: 6px 9px;
	color: var(--f2-gold);
	font-size: 0.72rem;
	text-transform: uppercase;
}

.f2-ticket-card--open .f2-ticket-head strong,
.f2-ticket-mini--open header small {
	color: #ffd27c;
}

.f2-ticket-card--answered .f2-ticket-head strong,
.f2-ticket-mini--answered header small {
	color: #9fea9b;
}

.f2-ticket-card--closed,
.f2-ticket-mini--closed {
	opacity: 0.74;
}

.f2-ticket-thread {
	display: grid;
	gap: 10px;
	margin: 14px 0;
}

.f2-ticket-message {
	border-left: 3px solid rgba(242, 204, 115, 0.34);
	padding: 10px 12px;
	background: rgba(7, 5, 4, 0.42);
}

.f2-ticket-message.is-admin {
	border-left-color: #9fea9b;
	background: rgba(38, 79, 40, 0.12);
}

.f2-ticket-message p {
	margin: 5px 0 0;
	color: #dfd0ba;
	line-height: 1.55;
}

.f2-ticket-reply {
	display: grid;
	gap: 10px;
	margin-top: 12px;
}

.f2-ticket-close-form {
	margin-top: 8px;
}

.f2-ticket-user-grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
	gap: 14px;
	align-items: start;
}

.f2-ticket-user-list {
	display: grid;
	gap: 12px;
}

.f2-ticket-mini header {
	border-bottom: 1px solid rgba(220, 164, 62, 0.15);
	padding-bottom: 10px;
}

.f2-ticket-mini header small {
	display: block;
	color: var(--f2-muted);
	font-size: 0.76rem;
	font-weight: 850;
	text-transform: uppercase;
}

.f2-ticket-thread--small {
	max-height: 320px;
	overflow: auto;
	padding-right: 4px;
}

@media (max-width: 980px) {
	.f2-ticket-stats,
	.f2-ticket-user-grid {
		grid-template-columns: 1fr;
	}

	.f2-ticket-head {
		display: grid;
	}
}
#support-tickets {
	scroll-margin-top: 92px;
}
.f2-support-link {
	position: relative;
	gap: 7px;
}

.f2-support-badge {
	display: inline-grid;
	place-items: center;
	min-width: 18px;
	height: 18px;
	margin-left: 6px;
	padding: 0 5px;
	border: 1px solid rgba(159, 234, 155, 0.64);
	background: rgba(37, 94, 44, 0.32);
	color: #b9f5ad;
	font-size: 11px;
	font-weight: 950;
	font-family: Arial, sans-serif;
	line-height: 18px;
	text-align: center;
	vertical-align: middle;
}
.f2-ticket-panel-content {
	border: 1px solid rgba(220, 164, 62, 0.24);
	background:
		linear-gradient(145deg, rgba(255, 222, 142, 0.045), transparent 38%),
		rgba(10, 7, 5, 0.78) !important;
	padding: 18px !important;
}

.f2-ticket-answer-notice {
	display: grid;
	gap: 4px;
	margin-bottom: 14px;
	border: 1px solid rgba(159, 234, 155, 0.35);
	background:
		linear-gradient(90deg, rgba(54, 135, 64, 0.18), transparent 70%),
		rgba(11, 18, 10, 0.82);
	padding: 13px 15px;
	box-shadow: inset 0 1px 0 rgba(220, 255, 207, 0.08);
}

.f2-ticket-answer-notice strong {
	color: #b9f5ad;
	font-size: 0.78rem;
	font-weight: 950;
	text-transform: uppercase;
}

.f2-ticket-answer-notice span {
	color: #d9ead0;
	line-height: 1.45;
}

.f2-ticket-user-grid {
	grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
	gap: 16px;
}

.f2-ticket-create {
	position: relative;
	overflow: hidden;
	padding: 18px !important;
	background:
		linear-gradient(145deg, rgba(255, 222, 142, 0.08), transparent 42%),
		rgba(12, 8, 5, 0.92) !important;
}

.f2-ticket-create::before,
.f2-ticket-mini::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 222, 142, 0.72), transparent);
}

.f2-ticket-create .panel-note {
	border-left: 3px solid rgba(242, 204, 115, 0.45);
	padding-left: 11px;
	color: #d8c8b2;
}

.f2-ticket-mini {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(145deg, rgba(255, 222, 142, 0.055), transparent 42%),
		rgba(12, 8, 5, 0.9) !important;
}

.f2-ticket-mini--answered {
	border-color: rgba(159, 234, 155, 0.38) !important;
	box-shadow: 0 0 0 1px rgba(159, 234, 155, 0.06), inset 0 1px 0 rgba(220, 255, 207, 0.08);
}

.f2-ticket-mini--answered header::after {
	content: "Staff reply";
	display: inline-flex;
	width: fit-content;
	margin-top: 8px;
	border: 1px solid rgba(159, 234, 155, 0.42);
	padding: 5px 8px;
	color: #b9f5ad;
	font-size: 0.68rem;
	font-weight: 950;
	text-transform: uppercase;
}

.f2-ticket-user-list > .f2-ticket-mini:first-child {
	min-height: 94px;
}

@media (max-width: 980px) {
	.f2-ticket-panel-content {
		padding: 12px !important;
	}
}
/* Premium support ticket notice and admin shortcut */
.f2-ticket-answer-notice {
	position: relative;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 8px 14px;
	padding: 16px 18px 16px 56px !important;
	border: 1px solid rgba(159, 234, 155, 0.46) !important;
	background:
		linear-gradient(135deg, rgba(20, 58, 29, 0.74), rgba(6, 14, 8, 0.88)),
		rgba(8, 18, 10, 0.92) !important;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.f2-ticket-answer-notice::before {
	content: "!";
	position: absolute;
	left: 18px;
	top: 50%;
	width: 24px;
	height: 24px;
	transform: translateY(-50%);
	display: grid;
	place-items: center;
	border: 1px solid rgba(185, 245, 173, 0.62);
	background: rgba(58, 128, 50, 0.34);
	color: #d9ffd1;
	font-size: 13px;
	font-weight: 900;
	font-family: Arial, sans-serif;
}

.f2-ticket-answer-notice strong {
	font-size: 13px !important;
	letter-spacing: 0.08em;
}

.f2-ticket-answer-notice span {
	font-size: 14px;
	line-height: 1.45;
}

.f2-admin-nav-premium {
	align-items: stretch;
}

.f2-admin-ticket-shortcut {
	position: relative;
	display: inline-grid !important;
	grid-template-columns: 1fr;
	gap: 3px;
	min-width: 156px;
	padding-top: 9px !important;
	padding-bottom: 9px !important;
	border-color: rgba(242, 204, 115, 0.62) !important;
	background: linear-gradient(135deg, rgba(87, 57, 18, 0.58), rgba(15, 10, 7, 0.9)) !important;
}

.f2-admin-ticket-shortcut span,
.f2-admin-ticket-shortcut strong {
	display: block;
	line-height: 1.15;
}

.f2-admin-ticket-shortcut strong {
	color: #b9f5ad;
	font-size: 11px;
	font-family: Arial, sans-serif;
	text-transform: uppercase;
}


.f2-admin-ticket-overview {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 18px;
	margin: 18px 0 22px;
	padding: 18px;
	border: 1px solid rgba(220, 164, 62, 0.34);
	background:
		linear-gradient(135deg, rgba(44, 30, 17, 0.82), rgba(10, 7, 5, 0.94)),
		rgba(10, 7, 5, 0.92);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.f2-admin-ticket-overview.has-tickets {
	border-color: rgba(159, 234, 155, 0.42);
	background:
		linear-gradient(135deg, rgba(31, 59, 28, 0.56), rgba(15, 9, 5, 0.95)),
		rgba(10, 7, 5, 0.92);
}

.f2-admin-ticket-overview span {
	display: block;
	margin-bottom: 6px;
	color: var(--f2-gold-soft);
	font-size: 12px;
	font-weight: 900;
	font-family: Arial, sans-serif;
	text-transform: uppercase;
}

.f2-admin-ticket-overview h3 {
	margin: 0 0 6px;
	color: var(--f2-cream);
	font-size: 28px;
}

.f2-admin-ticket-overview p {
	margin: 0;
	color: var(--f2-muted);
}

.f2-admin-ticket-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(72px, 1fr));
	gap: 8px;
}

.f2-admin-ticket-metrics a {
	padding: 12px 14px;
	border: 1px solid rgba(220, 164, 62, 0.26);
	background: rgba(0, 0, 0, 0.22);
	text-align: center;
	text-decoration: none;
}

.f2-admin-ticket-metrics a:hover {
	border-color: var(--f2-line-strong);
	background: rgba(220, 164, 62, 0.08);
}

.f2-admin-ticket-metrics span {
	margin: 0 0 5px;
	font-size: 10px;
}

.f2-admin-ticket-metrics strong {
	color: var(--f2-gold);
	font-size: 22px;
	font-family: Georgia, serif;
}

@media (max-width: 860px) {
	.f2-admin-ticket-overview {
		grid-template-columns: 1fr;
	}

	.f2-admin-ticket-metrics {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 560px) {
	.f2-ticket-answer-notice {
		grid-template-columns: 1fr;
		padding: 48px 14px 14px !important;
	}

	.f2-ticket-answer-notice::before {
		left: 14px;
		top: 14px;
		transform: none;
	}

	.f2-admin-ticket-metrics {
		grid-template-columns: 1fr;
	}
}

/* Staff reply marker also works on closed tickets */
.f2-ticket-mini--staff-replied {
	border-color: rgba(159, 234, 155, 0.48) !important;
	box-shadow: inset 0 0 0 1px rgba(159, 234, 155, 0.08), 0 14px 32px rgba(0, 0, 0, 0.18);
}

.f2-ticket-mini--staff-replied header::after {
	content: "Staff reply";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: max-content;
	margin-top: 10px;
	padding: 5px 9px;
	border: 1px solid rgba(159, 234, 155, 0.58);
	background: rgba(42, 106, 42, 0.18);
	color: #b9f5ad;
	font-size: 11px;
	font-weight: 900;
	font-family: Arial, sans-serif;
	text-transform: uppercase;
}


/* Support ticket priority, filters and reopen polish */
.f2-ticket-filters {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) 150px 150px auto auto auto;
	gap: 10px;
	align-items: center;
	margin: 18px 0;
}

.f2-ticket-filter-check {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 12px;
	border: 1px solid rgba(220, 164, 62, 0.28);
	background: rgba(0, 0, 0, 0.16);
	color: var(--f2-muted);
	font-size: 12px;
	font-weight: 800;
	font-family: Arial, sans-serif;
	text-transform: uppercase;
}

.f2-ticket-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	align-items: center;
	margin-top: 8px;
}

.f2-ticket-meta span {
	display: inline-flex !important;
	align-items: center;
	width: auto;
	padding: 4px 8px;
	border: 1px solid rgba(220, 164, 62, 0.22);
	background: rgba(0, 0, 0, 0.16);
	color: var(--f2-muted);
	font-size: 11px;
	font-weight: 800;
	font-family: Arial, sans-serif;
	text-transform: uppercase;
}

.f2-ticket-priority {
	color: var(--f2-cream) !important;
}

.f2-ticket-priority--low {
	border-color: rgba(156, 190, 211, 0.38) !important;
	color: #b7d4e5 !important;
}

.f2-ticket-priority--normal {
	border-color: rgba(220, 164, 62, 0.36) !important;
	color: var(--f2-gold-soft) !important;
}

.f2-ticket-priority--high {
	border-color: rgba(255, 183, 83, 0.56) !important;
	background: rgba(255, 160, 44, 0.1) !important;
	color: #ffd38a !important;
}

.f2-ticket-priority--urgent {
	border-color: rgba(255, 111, 88, 0.62) !important;
	background: rgba(148, 38, 24, 0.22) !important;
	color: #ffad9f !important;
}

.f2-ticket-card .f2-ticket-meta {
	margin-top: 10px;
}

@media (max-width: 980px) {
	.f2-ticket-filters {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 560px) {
	.f2-ticket-filters {
		grid-template-columns: 1fr;
	}
}

/* Support badge alignment and instant-read feedback */
.f2-support-link {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 7px;
	line-height: 1;
}

.f2-support-badge {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex: 0 0 auto;
	min-width: 18px !important;
	height: 18px !important;
	margin: 0 !important;
	padding: 0 5px !important;
	line-height: 18px !important;
	transform: translateY(-1px);
}

.f2-ticket-answer-notice {
	cursor: pointer;
	transition: opacity 0.16s ease, transform 0.16s ease, max-height 0.16s ease, margin 0.16s ease, padding 0.16s ease;
}

.f2-ticket-answer-notice.is-hiding {
	opacity: 0;
	transform: translateY(-4px);
	max-height: 0;
	margin: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	overflow: hidden;
}

.f2-ticket-mini[data-reading="1"] {
	border-color: rgba(220, 164, 62, 0.26) !important;
}

/* Admin tickets filters layout fix */
.f2-ticket-filters {
	display: flex !important;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 10px;
}

.f2-ticket-filters input[type="text"] {
	flex: 1 1 210px;
	min-width: 190px;
	max-width: 280px;
}

.f2-ticket-filters select {
	flex: 0 1 158px;
	min-width: 145px;
}

.f2-ticket-filter-check {
	flex: 0 0 132px;
	justify-content: center;
	white-space: nowrap;
}

.f2-ticket-filters .btn,
.f2-ticket-filters button,
.f2-ticket-filters a.btn {
	flex: 0 0 auto;
	min-width: 96px;
	max-width: none;
	min-height: 44px;
	padding-left: 15px !important;
	padding-right: 15px !important;
	white-space: nowrap;
	text-align: center;
}

@media (max-width: 760px) {
	.f2-ticket-filters input[type="text"],
	.f2-ticket-filters select,
	.f2-ticket-filter-check,
	.f2-ticket-filters .btn,
	.f2-ticket-filters button,
	.f2-ticket-filters a.btn {
		flex: 1 1 100%;
		width: 100%;
		max-width: none;
	}
}

/* Dedicated Support Center page */
.f2-user-support-shortcut {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	padding: 18px;
	border: 1px solid rgba(220, 164, 62, 0.28);
	background: linear-gradient(135deg, rgba(43, 30, 16, 0.9), rgba(8, 6, 4, 0.96));
}

.f2-user-support-shortcut strong {
	display: block;
	margin-bottom: 6px;
	color: var(--f2-cream);
	font-family: Georgia, serif;
	font-size: 22px;
}

.f2-user-support-shortcut span {
	display: block;
	max-width: 520px;
	color: var(--f2-muted);
	font-size: 13px;
	line-height: 1.55;
}

.f2-support-center {
	display: grid;
	gap: 22px;
}

.f2-support-hero-panel,
.f2-support-panel,
.f2-support-ticket-card,
.f2-support-help-grid article {
	border: 1px solid rgba(220, 164, 62, 0.28);
	background: linear-gradient(180deg, rgba(33, 23, 14, 0.9), rgba(9, 6, 4, 0.96));
	box-shadow: inset 0 1px 0 rgba(255, 224, 168, 0.04);
}

.f2-support-hero-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: end;
	padding: 28px;
}

.f2-support-hero-panel h2 {
	margin: 8px 0 8px;
	color: var(--f2-cream);
	font-family: Georgia, serif;
	font-size: clamp(36px, 5vw, 64px);
	line-height: 0.95;
}

.f2-support-hero-panel p {
	max-width: 620px;
	margin: 0;
	color: var(--f2-muted);
	font-size: 15px;
	line-height: 1.65;
}

.f2-support-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.f2-support-tabs .btn.is-active {
	background: linear-gradient(135deg, rgba(179, 113, 32, 0.9), rgba(255, 202, 99, 0.95));
	color: #120b05;
}

.f2-support-alert {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	padding: 16px 18px;
	border: 1px solid rgba(111, 220, 118, 0.42);
	background: linear-gradient(135deg, rgba(8, 38, 13, 0.82), rgba(5, 14, 7, 0.96));
	color: #dff7d8;
	cursor: pointer;
	transition: opacity 0.16s ease, transform 0.16s ease, max-height 0.16s ease, padding 0.16s ease, margin 0.16s ease;
}

.f2-support-alert.is-hiding {
	opacity: 0;
	transform: translateY(-4px);
	max-height: 0;
	margin: 0;
	padding-top: 0;
	padding-bottom: 0;
	overflow: hidden;
}

.f2-support-alert-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(159, 234, 155, 0.64);
	background: rgba(75, 155, 63, 0.2);
	font-weight: 900;
}

.f2-support-alert strong {
	display: block;
	margin-bottom: 3px;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.f2-support-alert p {
	margin: 0;
	color: #d9edd4;
	line-height: 1.45;
}

.f2-support-grid {
	display: grid;
	grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
	gap: 22px;
	align-items: start;
}

.f2-support-panel-head {
	padding: 20px 22px 14px;
	border-bottom: 1px solid rgba(220, 164, 62, 0.2);
}

.f2-support-panel-head h3,
.f2-support-ticket-card h3,
.f2-support-help-grid h3 {
	margin: 6px 0 0;
	color: var(--f2-cream);
	font-family: Georgia, serif;
	font-size: 28px;
	line-height: 1.05;
}

.f2-support-panel-body {
	padding: 20px 22px 22px;
}

.f2-support-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 16px;
}

.f2-support-categories span,
.f2-support-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 26px;
	padding: 5px 9px;
	border: 1px solid rgba(220, 164, 62, 0.26);
	background: rgba(0, 0, 0, 0.18);
	color: var(--f2-gold-soft);
	font-family: Arial, sans-serif;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.f2-support-pill.is-green {
	border-color: rgba(159, 234, 155, 0.55);
	background: rgba(42, 106, 42, 0.18);
	color: #b9f5ad;
}

.f2-support-pill.is-gold {
	border-color: rgba(255, 202, 99, 0.5);
	background: rgba(179, 113, 32, 0.16);
	color: #ffe19a;
}

.f2-support-form {
	display: grid;
	gap: 14px;
}

.f2-support-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.f2-support-ticket-list {
	display: grid;
	gap: 16px;
}

.f2-support-ticket-card {
	padding: 20px;
}

.f2-support-ticket-top {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	align-items: center;
	margin-bottom: 14px;
}

.f2-support-ticket-card p {
	margin: 8px 0 0;
	color: var(--f2-muted);
	line-height: 1.55;
}

.f2-support-thread {
	display: grid;
	gap: 10px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(220, 164, 62, 0.14);
}

.f2-support-bubble {
	padding: 13px 14px;
	border-left: 3px solid rgba(220, 164, 62, 0.46);
	background: rgba(0, 0, 0, 0.14);
}

.f2-support-bubble.is-staff {
	border-left-color: rgba(111, 220, 118, 0.72);
	background: rgba(48, 92, 38, 0.14);
}

.f2-support-bubble span {
	display: block;
	margin-bottom: 7px;
	color: var(--f2-muted);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.f2-support-bubble p {
	margin: 0;
	color: var(--f2-cream);
}

.f2-support-help-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.f2-support-help-grid article {
	padding: 20px;
}

.f2-support-help-grid h3 {
	font-size: 24px;
}

.f2-support-help-grid a {
	display: block;
	padding: 12px 0;
	border-top: 1px solid rgba(220, 164, 62, 0.14);
	color: var(--f2-muted);
	text-decoration: none;
}

.f2-support-help-grid a:hover {
	color: var(--f2-gold-soft);
}

.f2-support-known .f2-support-panel-body {
	display: grid;
	gap: 12px;
}

.f2-support-issue {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	padding: 14px;
	border: 1px solid rgba(220, 164, 62, 0.16);
	background: rgba(0, 0, 0, 0.12);
}

.f2-support-issue strong {
	display: block;
	color: var(--f2-cream);
	font-size: 15px;
}

.f2-support-issue p {
	margin: 4px 0 0;
	color: var(--f2-muted);
	line-height: 1.45;
}

@media (max-width: 980px) {
	.f2-support-hero-panel,
	.f2-support-grid,
	.f2-support-help-grid {
		grid-template-columns: 1fr;
	}

	.f2-support-tabs {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.f2-user-support-shortcut,
	.f2-support-alert,
	.f2-support-form-row,
	.f2-support-issue {
		grid-template-columns: 1fr;
	}

	.f2-user-support-shortcut .btn,
	.f2-support-alert .btn,
	.f2-support-tabs .btn {
		width: 100%;
	}

	.f2-support-hero-panel,
	.f2-support-panel-body,
	.f2-support-panel-head,
	.f2-support-ticket-card,
	.f2-support-help-grid article {
		padding: 16px;
	}
}

.panel-section-content.f2-ticket-panel-content:has(.f2-user-support-shortcut) {
	border-color: rgba(220, 164, 62, 0.28) !important;
	background: rgba(10, 7, 5, 0.86) !important;
}

@supports not selector(:has(*)) {
	.f2-ticket-panel-content .f2-user-support-shortcut {
		margin: -1px;
	}
}

/* Support Center premium revision */
.f2-support-hero-panel--premium {
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	align-items: stretch;
	padding: 30px;
}

.f2-support-hero-panel--premium .f2-support-tabs {
	grid-column: 1 / -1;
	justify-content: flex-start;
	padding-top: 18px;
	border-top: 1px solid rgba(220, 164, 62, 0.18);
}

.f2-support-hero-copy {
	display: flex;
	min-height: 210px;
	flex-direction: column;
	justify-content: center;
}

.f2-support-hero-copy h2 {
	max-width: 520px;
	font-size: clamp(46px, 6vw, 78px);
}

.f2-support-hero-copy p {
	max-width: 560px;
}

.f2-support-hero-stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.f2-support-hero-stats a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 62px;
	padding: 14px 16px;
	border: 1px solid rgba(220, 164, 62, 0.24);
	background: rgba(0, 0, 0, 0.18);
	text-decoration: none;
}

.f2-support-hero-stats span {
	color: var(--f2-muted);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.f2-support-hero-stats strong {
	color: var(--f2-gold-soft);
	font-family: Georgia, serif;
	font-size: 34px;
	line-height: 1;
}

.f2-support-help-grid .f2-support-empty-card {
	grid-column: 1 / -1;
}

.f2-support-help-grid article p {
	margin: 12px 0 0;
	color: var(--f2-muted);
	line-height: 1.65;
}

.f2-support-empty-state {
	padding: 18px;
	border: 1px solid rgba(159, 234, 155, 0.28);
	background: rgba(24, 55, 24, 0.14);
}

.f2-support-empty-state strong {
	display: block;
	color: #dff7d8;
	font-size: 16px;
}

.f2-support-empty-state p {
	margin: 6px 0 0;
	color: var(--f2-muted);
}

.f2-support-pill--stable {
	border-color: rgba(159, 234, 155, 0.55) !important;
	background: rgba(42, 106, 42, 0.18) !important;
	color: #b9f5ad !important;
}

.f2-support-pill--monitoring {
	border-color: rgba(255, 202, 99, 0.52) !important;
	background: rgba(179, 113, 32, 0.16) !important;
	color: #ffe19a !important;
}

.f2-support-pill--issue {
	border-color: rgba(255, 111, 88, 0.62) !important;
	background: rgba(148, 38, 24, 0.22) !important;
	color: #ffad9f !important;
}

.f2-support-pill--resolved {
	border-color: rgba(156, 190, 211, 0.42) !important;
	background: rgba(38, 74, 96, 0.18) !important;
	color: #b7d4e5 !important;
}

/* Admin support content management */
.f2-support-admin-box {
	margin-top: 18px;
}

.f2-support-admin-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(220, 164, 62, 0.18);
}

.f2-support-admin-head h3 {
	margin: 6px 0 6px;
	color: var(--f2-cream);
	font-family: Georgia, serif;
	font-size: 32px;
}

.f2-support-admin-head p {
	margin: 0;
	color: var(--f2-muted);
	line-height: 1.55;
}

.f2-support-admin-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 18px;
}

.f2-support-admin-panel {
	padding: 16px;
	border: 1px solid rgba(220, 164, 62, 0.22);
	background: rgba(0, 0, 0, 0.12);
}

.f2-support-admin-panel h4 {
	margin: 0 0 12px;
	color: var(--f2-gold-soft);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.f2-support-admin-form {
	display: grid;
	gap: 10px;
}

.f2-support-admin-check {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--f2-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.f2-support-admin-list {
	display: grid;
	gap: 12px;
	margin-top: 16px;
}

.f2-support-admin-item {
	display: grid;
	gap: 10px;
	padding: 12px;
	border: 1px solid rgba(220, 164, 62, 0.18);
	background: rgba(0, 0, 0, 0.16);
}

.f2-support-admin-item.is-hidden {
	opacity: 0.62;
}

.f2-support-admin-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.f2-support-admin-actions span {
	color: var(--f2-muted);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

@media (max-width: 980px) {
	.f2-support-hero-panel--premium,
	.f2-support-admin-grid {
		grid-template-columns: 1fr;
	}

	.f2-support-hero-copy {
		min-height: 0;
	}
}

@media (max-width: 640px) {
	.f2-support-admin-head {
		align-items: stretch;
		flex-direction: column;
	}

	.f2-support-hero-panel--premium .f2-support-tabs {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}

/* Codex premium server status */
.f2-server-status {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.22fr) minmax(320px, .78fr);
	gap: clamp(14px, 2vw, 22px);
	width: min(1180px, calc(100% - 32px));
	margin: -48px auto 0;
	padding: clamp(16px, 2vw, 24px);
	border: 1px solid rgba(245, 211, 135, 0.34);
	background:
		linear-gradient(135deg, rgba(245, 211, 135, 0.08), transparent 34%),
		linear-gradient(180deg, rgba(34, 22, 13, 0.92), rgba(9, 6, 4, 0.94));
	box-shadow:
		0 24px 70px rgba(0, 0, 0, 0.52),
		inset 0 1px 0 rgba(255, 244, 194, 0.08);
	overflow: hidden;
}

.f2-server-status::before {
	content: "";
	position: absolute;
	inset: 8px;
	pointer-events: none;
	border: 1px solid rgba(245, 211, 135, 0.12);
}

.f2-server-status::after {
	content: "";
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(245, 211, 135, 0.78), transparent);
}

.f2-server-status__main,
.f2-channel-board {
	position: relative;
	z-index: 1;
}

.f2-server-status__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(220, 164, 62, 0.22);
}

.f2-server-status__head h2 {
	margin: 0;
	color: var(--f2-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.75rem, 3vw, 3rem);
	line-height: .98;
	text-transform: uppercase;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.f2-server-status__head p:last-child {
	max-width: 640px;
	margin: 12px 0 0;
	color: var(--f2-muted);
	font-size: .94rem;
	line-height: 1.65;
}

.f2-server-pill {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid rgba(245, 211, 135, 0.3);
	background: rgba(0, 0, 0, 0.28);
	color: var(--f2-gold);
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.f2-server-pill i {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 0 currentColor;
	animation: f2-server-pulse 1.9s ease-out infinite;
}

.f2-server-pill.is-online {
	border-color: rgba(98, 216, 132, 0.45);
	background: rgba(18, 56, 30, 0.34);
	color: #7af09b;
}

.f2-server-pill.is-maintenance {
	border-color: rgba(242, 164, 75, 0.5);
	background: rgba(84, 48, 13, 0.34);
	color: #f2a44b;
}

.f2-server-pill.is-offline {
	border-color: rgba(198, 70, 55, 0.48);
	background: rgba(82, 22, 16, 0.32);
	color: #e46b5a;
}

@keyframes f2-server-pulse {
	70% { box-shadow: 0 0 0 9px rgba(122, 240, 155, 0); }
	100% { box-shadow: 0 0 0 0 rgba(122, 240, 155, 0); }
}

.f2-server-metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-top: 20px;
}

.f2-server-metrics div {
	min-height: 82px;
	display: grid;
	align-content: center;
	gap: 6px;
	padding: 13px;
	border: 1px solid rgba(220, 164, 62, 0.18);
	background:
		linear-gradient(180deg, rgba(245, 211, 135, 0.065), rgba(0, 0, 0, 0.18)),
		rgba(7, 5, 4, 0.26);
	text-align: center;
}

.f2-server-metrics strong {
	color: var(--f2-gold);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.2rem, 2.1vw, 1.75rem);
	line-height: 1;
}

.f2-server-metrics span {
	color: var(--f2-muted);
	font-size: .68rem;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.f2-channel-board {
	padding: 16px;
	border: 1px solid rgba(220, 164, 62, 0.22);
	background: rgba(0, 0, 0, 0.2);
}

.f2-channel-board__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 13px;
	border-bottom: 1px solid rgba(220, 164, 62, 0.22);
}

.f2-channel-board__title span {
	color: var(--f2-gold);
	font-size: .75rem;
	font-weight: 900;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.f2-channel-board__title small {
	color: var(--f2-muted);
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.f2-channel-list {
	display: grid;
	gap: 9px;
	margin-top: 14px;
}

.f2-channel-row {
	display: grid;
	grid-template-columns: 48px minmax(80px, 1fr) auto;
	align-items: center;
	gap: 10px;
	min-height: 42px;
	padding: 10px 11px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(255, 255, 255, 0.03);
}

.f2-channel-row strong {
	color: var(--f2-ink);
	font-size: .78rem;
	letter-spacing: .04em;
}

.f2-channel-load {
	display: block;
	height: 7px;
	overflow: hidden;
	border: 1px solid rgba(220, 164, 62, 0.14);
	background: rgba(0, 0, 0, 0.38);
}

.f2-channel-load i {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, #62d884, var(--f2-gold));
}

.f2-channel-row em {
	color: #73e895;
	font-size: .66rem;
	font-style: normal;
	font-weight: 900;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.f2-channel-row.is-standby em {
	color: #f2a44b;
}

.f2-channel-row.is-standby .f2-channel-load i {
	background: linear-gradient(90deg, rgba(242, 164, 75, 0.7), rgba(242, 196, 107, 0.3));
}

.f2-channel-row.is-offline em {
	color: #df6553;
}

.f2-channel-row.is-offline .f2-channel-load i {
	width: 0 !important;
}

@media (max-width: 980px) {
	.f2-server-status {
		grid-template-columns: 1fr;
		margin-top: -36px;
	}
}

@media (max-width: 680px) {
	.f2-server-status {
		width: min(100% - 20px, 1180px);
		padding: 14px;
	}

	.f2-server-status__head {
		display: grid;
	}

	.f2-server-metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.f2-channel-row {
		grid-template-columns: 42px minmax(70px, 1fr);
	}

	.f2-channel-row em {
		grid-column: 2;
	}
}

/* Codex CH4 premium status */
.f2-channel-row.is-premium {
	border-color: rgba(245, 211, 135, 0.34);
	background:
		linear-gradient(90deg, rgba(245, 211, 135, 0.08), rgba(163, 53, 46, 0.08)),
		rgba(255, 255, 255, 0.035);
}

.f2-channel-row.is-premium .f2-channel-load i {
	background: linear-gradient(90deg, #f2cc73, #fff0ba);
	box-shadow: 0 0 12px rgba(242, 204, 115, 0.22);
}

.f2-channel-row.is-premium em {
	color: #ffe4a3;
}

/* Codex fullsite modernization pack */
.f2-download-page--premium {
	display: grid;
	gap: 22px;
}

.f2-download-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
	gap: 16px;
	padding: clamp(18px, 3vw, 28px);
	border: 1px solid rgba(245, 211, 135, 0.32);
	background:
		linear-gradient(135deg, rgba(163, 53, 46, 0.24), rgba(242, 204, 115, 0.08)),
		rgba(0, 0, 0, 0.22);
	box-shadow: inset 0 1px 0 rgba(255, 244, 194, 0.08);
}

.f2-download-hero__copy h3,
.f2-new-player-guide h3,
.f2-account-modern-head h3 {
	margin: 0;
	color: var(--f2-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.45rem, 2.8vw, 2.45rem);
	line-height: 1;
	text-transform: uppercase;
	text-shadow: 0 4px 18px rgba(0, 0, 0, 0.64);
}

.f2-download-hero__copy p,
.f2-guide-head > p,
.f2-download-info-grid p {
	margin: 13px 0 0;
	color: var(--f2-muted);
	font-size: .94rem;
	line-height: 1.7;
}

.f2-download-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.btn--download-primary {
	border-color: rgba(255, 231, 164, 0.76);
	background: linear-gradient(90deg, #cf5739, #ffe2a3);
	color: #1a0904;
	box-shadow: 0 12px 30px rgba(207, 87, 57, 0.24);
}

.f2-download-package {
	display: grid;
	align-content: center;
	gap: 14px;
	padding: 18px;
	border: 1px solid rgba(245, 211, 135, 0.24);
	background: rgba(0, 0, 0, 0.24);
}

.f2-download-package > span,
.f2-download-info-grid article > span,
.f2-account-modern-head span,
.f2-character-card span {
	color: var(--f2-gold);
	font-size: .68rem;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.f2-download-package > strong {
	color: var(--f2-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.5rem, 2.6vw, 2.3rem);
	line-height: 1;
	text-transform: uppercase;
}

.f2-download-package__grid,
.f2-download-info-grid,
.f2-account-actions-grid,
.f2-character-card-grid {
	display: grid;
	gap: 10px;
}

.f2-download-package__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.f2-download-package__grid div,
.f2-download-info-grid article {
	padding: 13px;
	border: 1px solid rgba(220, 164, 62, 0.17);
	background: rgba(0, 0, 0, 0.22);
}

.f2-download-package__grid b {
	display: block;
	color: var(--f2-gold);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.2rem;
}

.f2-download-package__grid small {
	color: var(--f2-muted);
	font-size: .68rem;	
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.f2-install-guide--premium li span b {
	display: block;
	margin-bottom: 3px;
	color: var(--f2-ink);
	font-size: .78rem;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.f2-download-info-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.f2-download-info-grid h4 {
	margin: 8px 0 0;
	color: var(--f2-ink);
	font-size: .92rem;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.f2-download-mirrors {
	display: grid;
	gap: 14px;
}

.f2-new-player-guide {
	margin-bottom: 24px;
	padding: clamp(18px, 3vw, 28px);
	border: 1px solid rgba(245, 211, 135, 0.3);
	background:
		linear-gradient(135deg, rgba(242, 204, 115, 0.065), transparent 36%),
		rgba(0, 0, 0, 0.2);
}

.f2-guide-head {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(280px, 1fr);
	gap: 18px;
	align-items: end;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(220, 164, 62, 0.22);
}

.f2-guide-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.f2-guide-grid article {
	min-height: 185px;
	padding: 17px;
	border: 1px solid rgba(220, 164, 62, 0.18);
	background: rgba(0, 0, 0, 0.22);
}

.f2-guide-grid article span {
	display: inline-flex;
	margin-bottom: 13px;
	color: var(--f2-gold);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.8rem;
	line-height: 1;
}

.f2-guide-grid h4 {
	margin: 0 0 9px;
	color: var(--f2-ink);
	font-size: .88rem;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.f2-guide-grid p {
	margin: 0;
	color: var(--f2-muted);
	font-size: .86rem;
	line-height: 1.65;
}

.f2-account-modern-panel {
	margin: 18px 0 22px;
	padding: clamp(16px, 2.6vw, 24px);
	border: 1px solid rgba(245, 211, 135, 0.28);
	background:
		linear-gradient(135deg, rgba(245, 211, 135, 0.06), transparent 36%),
		rgba(0, 0, 0, 0.22);
}

.f2-account-modern-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(220, 164, 62, 0.2);
}

.f2-account-modern-head h3 {
	margin-top: 6px;
	font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.f2-account-status-pill {
	min-height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 13px;
	border: 1px solid rgba(98, 216, 132, 0.42);
	background: rgba(18, 56, 30, 0.28);
	color: #7af09b;
	font-size: .68rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.f2-account-actions-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 16px;
}

.f2-account-actions-grid a {
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border: 1px solid rgba(220, 164, 62, 0.22);
	background: rgba(0, 0, 0, 0.22);
	color: var(--f2-gold);
	font-size: .7rem;
	font-weight: 900;
	letter-spacing: .08em;
	text-align: center;
	text-transform: uppercase;
}

.f2-character-card-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 14px;
}

.f2-character-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px;
	border: 1px solid rgba(220, 164, 62, 0.18);
	background: rgba(0, 0, 0, 0.22);
}

.f2-character-card strong {
	display: block;
	margin-top: 5px;
	color: var(--f2-ink);
	font-size: 1rem;
}

.f2-character-card small {
	display: block;
	margin-top: 4px;
	color: var(--f2-muted);
	font-size: .76rem;
}

.f2-character-level {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 62px;
	min-height: 36px;
	border: 1px solid rgba(245, 211, 135, 0.34);
	background: rgba(242, 204, 115, 0.06);
	color: var(--f2-gold);
	font-weight: 900;
}

@media (max-width: 900px) {
	.f2-download-hero,
	.f2-guide-head {
		grid-template-columns: 1fr;
	}

	.f2-download-info-grid,
	.f2-guide-grid,
	.f2-account-actions-grid,
	.f2-character-card-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.f2-download-package__grid {
		grid-template-columns: 1fr;
	}

	.f2-account-modern-head,
	.f2-character-card {
		display: grid;
	}
}

/* Codex alignment and framing correction */
.f2-download-hero {
	align-items: stretch;
	grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
}

.f2-download-hero__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.f2-download-hero__copy h3 {
	max-width: 560px;
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: .96;
}

.f2-download-hero__copy p {
	max-width: 560px;
}

.f2-download-actions {
	align-items: center;
}

.f2-download-actions .btn {
	min-width: min(100%, 178px);
}

.f2-download-package {
	justify-items: start;
	align-content: center;
	min-height: 392px;
	padding: clamp(18px, 3vw, 28px);
}

.f2-download-package > strong {
	font-size: clamp(1.9rem, 3.5vw, 3rem);
	max-width: 360px;
	word-break: normal;
}

.f2-download-package__grid {
	width: 100%;
	max-width: 330px;
}

.f2-download-package__grid div {
	display: grid;
	place-items: center;
	min-height: 76px;
	text-align: center;
}

.f2-guide-head {
	display: block;
	padding-bottom: 20px;
}

.f2-new-player-guide h3 {
	max-width: 640px;
	font-size: clamp(2rem, 4.6vw, 3.5rem);
	line-height: .96;
}

.f2-guide-head > p {
	max-width: 760px;
	margin-top: 14px;
}

.f2-guide-grid article {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

@media (max-width: 980px) {
	.f2-download-hero {
		grid-template-columns: 1fr;
	}

	.f2-download-package {
		min-height: auto;
	}
}

@media (max-width: 640px) {
	.f2-download-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.f2-download-actions .btn {
		width: 100%;
	}

	.f2-download-package__grid {
		max-width: none;
	}
}

/* Codex download frame hard fix */
.f2-download-hero {
	grid-template-columns: minmax(0, 1fr) minmax(260px, 270px);
	gap: clamp(18px, 3vw, 28px);
	padding: clamp(18px, 2.6vw, 26px);
}

.f2-download-hero__copy h3 {
	max-width: 440px;
	font-size: clamp(2rem, 3.2vw, 3rem);
	line-height: .96;
	letter-spacing: 0;
}

.f2-download-hero__copy p {
	max-width: 430px;
}

.f2-download-package {
	width: 100%;
	min-width: 0;
	min-height: 0;
	align-content: center;
	justify-items: stretch;
	padding: 20px 18px;
}

.f2-download-package > span {
	text-align: left;
}

.f2-download-package > strong {
	display: block;
	max-width: 100%;
	font-size: clamp(1.55rem, 2.35vw, 2.15rem);
	line-height: .98;
	letter-spacing: 0;
	overflow-wrap: anywhere;
	word-break: normal;
}

.f2-download-package__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 100%;
	gap: 8px;
}

.f2-download-package__grid div {
	min-width: 0;
	min-height: 70px;
	padding: 10px 6px;
}

.f2-download-package__grid b {
	font-size: 1rem;
}

.f2-download-package__grid small {
	font-size: .58rem;
}

@media (max-width: 1100px) {
	.f2-download-hero {
		grid-template-columns: 1fr;
	}

	.f2-download-hero__copy h3,
	.f2-download-hero__copy p {
		max-width: none;
	}

	.f2-download-package > strong {
		font-size: clamp(1.7rem, 5vw, 2.8rem);
	}
}

/* Codex mail template panel */
.f2-mail-templates {
	margin: 26px 0;
	padding: 22px;
	border: 1px solid rgba(218, 169, 91, .34);
	border-radius: 8px;
	background:
		radial-gradient(circle at 18% 0%, rgba(202, 103, 43, .18), transparent 280px),
		linear-gradient(135deg, rgba(255, 217, 139, .08), rgba(17, 10, 7, .72)),
		rgba(10, 6, 4, .74);
	box-shadow: inset 0 1px rgba(255,255,255,.05), 0 20px 70px rgba(0,0,0,.25);
}

.f2-mail-templates__head {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(280px, 1fr);
	gap: 18px;
	align-items: end;
	margin-bottom: 18px;
}

.f2-mail-templates__head span {
	display: block;
	margin-bottom: 6px;
	color: #f0c77b;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.f2-mail-templates__head h2 {
	margin: 0;
	color: #fff2cf;
	font-family: Georgia, serif;
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1;
}

.f2-mail-templates__head p {
	margin: 0;
	color: rgba(241, 221, 194, .76);
	line-height: 1.6;
}

.f2-mail-template-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.f2-mail-template {
	min-height: 118px;
	padding: 16px;
	border: 1px solid rgba(218, 169, 91, .32);
	border-radius: 8px;
	text-align: left;
	cursor: pointer;
	background: rgba(5, 3, 2, .48);
	transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.f2-mail-template:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 214, 141, .66);
	background: rgba(61, 31, 18, .68);
}

.f2-mail-template strong,
.f2-mail-template span {
	display: block;
}

.f2-mail-template strong {
	margin-bottom: 10px;
	color: #ffe5a8;
	font-size: 15px;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.f2-mail-template span {
	color: rgba(241, 221, 194, .68);
	font-size: 13px;
	line-height: 1.45;
}

@media (max-width: 980px) {
	.f2-mail-template-grid,
	.f2-mail-templates__head {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.f2-mail-template-grid,
	.f2-mail-templates__head {
		grid-template-columns: 1fr;
	}
}
/* Codex launch mail preview dashboard */
.f2-launch-banner {
	position: relative;
	z-index: 30;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	padding: 16px clamp(18px, 4vw, 48px);
	border-bottom: 1px solid rgba(242, 204, 115, .35);
	background: linear-gradient(135deg, rgba(99, 42, 20, .94), rgba(13, 8, 6, .96));
	box-shadow: 0 18px 48px rgba(0,0,0,.34);
}

.f2-launch-banner span,
.f2-launch-banner small,
.f2-launch-banner em {
	display: block;
	color: #f2cc73;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.f2-launch-banner strong {
	display: block;
	margin: 4px 0;
	color: #fff3d2;
	font-family: Georgia, serif;
	font-size: clamp(20px, 3vw, 32px);
}

.f2-launch-banner p {
	margin: 0 0 4px;
	color: rgba(246, 226, 198, .82);
}

.f2-launch-banner em {
	padding: 10px 14px;
	border: 1px solid rgba(242, 204, 115, .42);
	border-radius: 8px;
	font-style: normal;
	background: rgba(0,0,0,.26);
}

.f2-mail-preview {
	margin: 18px 0 0;
	padding: 18px;
	border: 1px solid rgba(218, 169, 91, .32);
	border-radius: 8px;
	background: rgba(5, 3, 2, .42);
}

.f2-mail-preview__head {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: end;
	margin-bottom: 12px;
}

.f2-mail-preview__head span,
.f2-mail-preview__head strong {
	display: block;
}

.f2-mail-preview__head span {
	color: #f0c77b;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.f2-mail-preview__head strong {
	color: #fff2cf;
	font-size: 18px;
}

.f2-mail-preview iframe {
	width: 100%;
	min-height: 520px;
	border: 1px solid rgba(218, 169, 91, .28);
	border-radius: 8px;
	background: #1b120a;
}

.f2-admin-command-center {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin: 24px 0;
}

.f2-admin-command-card {
	min-height: 168px;
	padding: 18px;
	border: 1px solid rgba(218, 169, 91, .30);
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(255, 217, 139, .08), transparent), rgba(9, 5, 3, .64);
}

.f2-admin-command-card span,
.f2-admin-command-card small,
.f2-admin-command-card a {
	display: block;
}

.f2-admin-command-card span {
	color: #f0c77b;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.f2-admin-command-card strong {
	display: block;
	margin: 10px 0 8px;
	color: #fff2cf;
	font-family: Georgia, serif;
	font-size: 30px;
}

.f2-admin-command-card small {
	min-height: 38px;
	color: rgba(241, 221, 194, .72);
	line-height: 1.45;
}

.f2-admin-command-card a {
	margin-top: 14px;
	color: #f2cc73;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

@media (max-width: 1100px) {
	.f2-admin-command-center {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.f2-launch-banner,
	.f2-admin-command-center {
		grid-template-columns: 1fr;
	}
}
.f2-launch-banner b { display: block; font: 900 18px/1.1 Georgia, serif; color: #fff0c2; letter-spacing: 0; margin-bottom: 4px; }

/* Codex launch banner framing fix */
.f2-launch-banner {
	margin-top: 56px;
	min-height: 0;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	padding: 10px clamp(24px, 4vw, 64px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
}

.f2-launch-banner > div {
	max-width: 980px;
}

.f2-launch-banner strong {
	margin: 2px 0 6px;
	font-size: clamp(21px, 2vw, 28px);
	line-height: 1.05;
}

.f2-launch-banner p {
	margin: 0 0 5px;
	font-size: 14px;
	line-height: 1.35;
}

.f2-launch-banner em {
	min-width: 190px;
	padding: 8px 12px;
	text-align: center;
}

.f2-launch-banner b {
	font-size: 17px;
	line-height: 1;
}

@media (max-width: 760px) {
	.f2-launch-banner {
		grid-template-columns: 1fr;
		margin-top: 54px;
		padding: 12px 18px;
	}

	.f2-launch-banner em {
		width: 100%;
		min-width: 0;
	}
}
/* Codex download and launch polish */
.f2-admin-command-card {
	text-align: center;
	align-items: center;
}

.f2-admin-command-card small {
	min-height: 40px;
}

.f2-download-page--premium {
	max-width: 1180px;
	margin-inline: auto;
}

.f2-download-hero {
	grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
	align-items: stretch;
	padding: clamp(24px, 3.2vw, 38px);
}

.f2-download-hero__copy {
	justify-content: center;
}

.f2-download-hero__copy h3,
.f2-download-hero__copy p {
	max-width: 640px;
}

.f2-download-actions {
	margin-top: 22px;
}

.f2-download-package--centered {
	justify-items: center;
	text-align: center;
	padding: clamp(24px, 3vw, 34px);
	min-height: 0;
}

.f2-download-package--centered > span,
.f2-download-package--centered > strong {
	text-align: center;
}

.f2-download-package--centered > strong {
	max-width: 460px;
}

.f2-download-package--centered .f2-download-package__grid {
	width: 100%;
	max-width: 420px;
}

.f2-download-package__mirror {
	width: min(100%, 420px);
	justify-content: center;
	margin-top: 2px;
}

.f2-download-mirrors {
	display: none !important;
}

.f2-launch-banner {
	margin-top: 56px;
	padding: 0;
	border-bottom: 1px solid rgba(242, 204, 115, .34);
	background:
		linear-gradient(90deg, rgba(77, 24, 12, .88), rgba(28, 11, 7, .96) 44%, rgba(5, 3, 2, .92)),
		radial-gradient(circle at 16% 50%, rgba(242, 150, 46, .22), transparent 34%);
	box-shadow: 0 16px 36px rgba(0, 0, 0, .36);
}

.f2-launch-banner__inner {
	width: min(100% - 48px, 1790px);
	margin-inline: auto;
	min-height: 108px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(190px, auto);
	gap: clamp(18px, 4vw, 52px);
	align-items: center;
	padding: 16px 0;
}

.f2-launch-banner__copy {
	position: relative;
	padding-left: 18px;
}

.f2-launch-banner__copy::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	bottom: 7px;
	width: 2px;
	background: linear-gradient(180deg, transparent, rgba(255, 223, 145, .75), transparent);
}

.f2-launch-banner span,
.f2-launch-banner small {
	color: #f2cc73;
	font-size: 11px;
	font-weight: 950;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.f2-launch-banner strong {
	margin: 3px 0 6px;
	font-size: clamp(24px, 2.2vw, 34px);
	line-height: 1;
}

.f2-launch-banner p {
	max-width: 980px;
	margin: 0 0 7px;
	font-size: 14px;
	line-height: 1.45;
}

.f2-launch-banner__timer {
	min-width: 184px;
	padding: 13px 16px;
	border: 1px solid rgba(242, 204, 115, .42);
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(255, 216, 128, .08), rgba(0, 0, 0, .34));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 14px 30px rgba(0,0,0,.22);
	text-align: center;
}

.f2-launch-banner__timer b {
	display: block;
	margin-bottom: 5px;
	color: #fff0c2;
	font: 900 19px/1 Georgia, serif;
	letter-spacing: .02em;
}

.f2-launch-banner__timer small {
	display: block;
	font-size: 10px;
}

@media (max-width: 900px) {
	.f2-download-hero,
	.f2-launch-banner__inner {
		grid-template-columns: 1fr;
	}

	.f2-launch-banner__timer {
		width: 100%;
	}
}

@media (max-width: 640px) {
	.f2-launch-banner__inner {
		width: min(100% - 28px, 1790px);
	}
}
/* Codex final download framing */
.f2-content-panel:has(.f2-download-page--premium) {
	overflow: visible;
	padding: clamp(20px, 2.6vw, 30px);
}

.f2-content-panel:has(.f2-download-page--premium) .f2-section-head {
	margin-bottom: 22px;
	padding-top: 4px;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-section-head h2 {
	margin-bottom: 0;
	font-size: clamp(2.45rem, 5vw, 4.05rem);
	line-height: .95;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-download-page--premium {
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-download-hero {
	box-sizing: border-box;
	grid-template-columns: 1fr;
	gap: 24px;
	width: 100%;
	padding: clamp(22px, 3vw, 34px);
}

.f2-content-panel:has(.f2-download-page--premium) .f2-download-hero__copy {
	align-items: flex-start;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-download-hero__copy h3 {
	max-width: 720px;
	font-size: clamp(2rem, 4.4vw, 3.15rem);
	line-height: .97;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-download-hero__copy p {
	max-width: 620px;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-download-actions {
	width: 100%;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-download-actions .btn {
	min-width: 180px;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-download-package--centered {
	box-sizing: border-box;
	width: 100%;
	min-height: 0;
	padding: clamp(20px, 2.8vw, 30px);
	justify-items: center;
	text-align: center;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-download-package--centered > strong {
	max-width: 560px;
	font-size: clamp(1.85rem, 4.2vw, 2.8rem);
	line-height: .98;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-download-package__grid {
	width: min(100%, 520px);
	max-width: none;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--premium,
.f2-content-panel:has(.f2-download-page--premium) .f2-download-info-grid {
	box-sizing: border-box;
	width: 100%;
}

@media (max-width: 760px) {
	.f2-content-panel:has(.f2-download-page--premium) {
		padding: 16px;
	}

	.f2-content-panel:has(.f2-download-page--premium) .f2-section-head h2 {
		font-size: clamp(2.15rem, 12vw, 3.2rem);
	}

	.f2-content-panel:has(.f2-download-page--premium) .f2-download-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.f2-content-panel:has(.f2-download-page--premium) .f2-download-actions .btn {
		width: 100%;
		min-width: 0;
	}

	.f2-content-panel:has(.f2-download-page--premium) .f2-download-package__grid,
	.f2-content-panel:has(.f2-download-page--premium) .f2-download-info-grid {
		grid-template-columns: 1fr;
	}
}
/* Codex premium quick start cards */
.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--cards {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
	gap: clamp(18px, 3vw, 30px);
	align-items: stretch;
	padding: clamp(22px, 3vw, 30px);
	border-color: rgba(245, 211, 135, .26);
	background:
		radial-gradient(circle at 18% 0%, rgba(242, 150, 46, .14), transparent 260px),
		linear-gradient(135deg, rgba(255, 222, 142, .055), transparent 45%),
		rgba(6, 4, 3, .38);
	overflow: hidden;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--cards::after {
	content: "";
	position: absolute;
	right: -38px;
	top: -38px;
	width: 120px;
	height: 120px;
	border: 1px solid rgba(245, 211, 135, .13);
	transform: rotate(45deg);
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--cards .f2-install-heading {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--cards .f2-install-heading h3 {
	margin-top: 8px;
	color: var(--f2-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	line-height: 1;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--cards .f2-install-heading p {
	max-width: 320px;
	margin: 12px 0 0;
	color: var(--f2-muted);
	font-size: .9rem;
	line-height: 1.6;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--cards ol {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--cards li {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	min-height: 170px;
	padding: 18px;
	border: 1px solid rgba(220, 164, 62, .2);
	background:
		linear-gradient(180deg, rgba(255, 222, 142, .055), rgba(0, 0, 0, .16)),
		rgba(0, 0, 0, .2);
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--cards li strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(245, 211, 135, .34);
	background: rgba(242, 150, 46, .07);
	color: var(--f2-gold);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1rem;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--cards li span {
	color: var(--f2-muted);
	font-size: .82rem;
	line-height: 1.55;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--cards li span b {
	margin-bottom: 8px;
	color: var(--f2-ink);
	font-size: .78rem;
	letter-spacing: .1em;
}

@media (max-width: 1050px) {
	.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--cards,
	.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--cards ol {
		grid-template-columns: 1fr;
	}

	.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--cards .f2-install-heading p {
		max-width: none;
	}

	.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--cards li {
		min-height: 0;
	}
}
/* Codex clean download guide strip */
.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	padding: clamp(22px, 3vw, 30px);
	border-color: rgba(245, 211, 135, .26);
	background:
		linear-gradient(90deg, rgba(242, 150, 46, .09), transparent 42%),
		rgba(5, 3, 2, .36);
	overflow: hidden;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip::after {
	content: "";
	position: absolute;
	right: -44px;
	top: -44px;
	width: 130px;
	height: 130px;
	border: 1px solid rgba(245, 211, 135, .12);
	transform: rotate(45deg);
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip .f2-install-heading {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
	gap: 18px;
	align-items: end;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(220, 164, 62, .2);
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip .f2-install-heading h3 {
	margin: 7px 0 0;
	color: var(--f2-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.75rem, 3.3vw, 2.7rem);
	line-height: 1;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip .f2-install-heading p {
	max-width: 460px;
	margin: 0;
	color: var(--f2-muted);
	font-size: .92rem;
	line-height: 1.55;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip ol {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip li {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	min-height: 118px;
	padding: 17px;
	border: 1px solid rgba(220, 164, 62, .2);
	background: rgba(0, 0, 0, .2);
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip li strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(245, 211, 135, .34);
	background: rgba(242, 150, 46, .08);
	color: var(--f2-gold);
	font-family: Georgia, "Times New Roman", serif;
	font-size: .95rem;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip li span {
	min-width: 0;
	color: var(--f2-muted);
	font-size: .82rem;
	line-height: 1.5;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip li span b {
	margin-bottom: 7px;
	color: var(--f2-ink);
	font-size: .76rem;
	letter-spacing: .09em;
}

@media (max-width: 1100px) {
	.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip .f2-install-heading,
	.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip ol {
		grid-template-columns: 1fr;
	}

	.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip .f2-install-heading p {
		max-width: none;
	}
}

@media (max-width: 520px) {
	.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip li {
		grid-template-columns: 1fr;
	}
}
/* Codex compact quick setup title */
.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip {
	gap: 16px;
	padding: 24px;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip .f2-install-heading {
	display: block;
	padding-bottom: 14px;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip .f2-install-heading h3 {
	margin: 6px 0 0;
	font-family: Inter, Arial, sans-serif;
	font-size: .9rem;
	font-weight: 950;
	letter-spacing: .12em;
	line-height: 1.25;
	text-transform: uppercase;
	color: var(--f2-ink);
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip .f2-install-heading p {
	max-width: 620px;
	margin: 8px 0 0;
	font-size: .9rem;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip ol {
	gap: 12px;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-install-guide--strip li {
	min-height: 112px;
	padding: 16px;
}
/* Codex download page simplification */
.f2-content-panel:has(.f2-download-page--premium) .f2-download-page--premium {
	gap: 20px;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-download-hero {
	gap: 20px;
	padding: clamp(24px, 3.2vw, 34px);
}

.f2-content-panel:has(.f2-download-page--premium) .f2-download-hero__copy h3 {
	max-width: 760px;
	font-size: clamp(2.05rem, 4.1vw, 3rem);
}

.f2-content-panel:has(.f2-download-page--premium) .f2-download-package--centered {
	padding: clamp(22px, 3vw, 30px);
	background:
		linear-gradient(135deg, rgba(255, 222, 142, .055), transparent 46%),
		rgba(0, 0, 0, .24);
}

.f2-content-panel:has(.f2-download-page--premium) .f2-download-info-grid article {
	min-height: 178px;
	padding: 18px;
}

.f2-content-panel:has(.f2-download-page--premium) .f2-download-info-grid h4 {
	line-height: 1.25;
}
/* Codex premium register polish */
.f2-register-layout {
	position: relative;
	overflow: hidden;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.f2-register-layout::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 222, 142, .72), transparent);
}

.f2-register-form-premium {
	display: grid;
	align-content: start;
}

.f2-register-form-head {
	margin-bottom: 24px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(220, 164, 62, .18);
}

.f2-register-form-head span {
	display: block;
	color: var(--f2-orange);
	font-size: .68rem;
	font-weight: 950;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.f2-register-form-head strong {
	display: block;
	margin-top: 8px;
	color: var(--f2-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.35rem, 2.2vw, 1.9rem);
	line-height: 1.05;
}

.f2-register-form-head p {
	max-width: 430px;
	margin: 10px 0 0;
	color: var(--f2-muted);
	font-size: .86rem;
	line-height: 1.55;
}

.f2-register-layout .form-label {
	color: #d7c8b3;
	font-size: .68rem;
	font-weight: 950;
	letter-spacing: .08em;
}

.f2-register-layout .form-input {
	border-color: rgba(220, 164, 62, .32);
	background:
		linear-gradient(180deg, rgba(255, 222, 142, .035), transparent),
		rgba(0, 0, 0, .42);
	transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.f2-register-layout .form-input:focus {
	border-color: rgba(255, 222, 142, .72);
	box-shadow: 0 0 0 3px rgba(242, 150, 46, .12), 0 12px 28px rgba(0, 0, 0, .18);
	background: rgba(0, 0, 0, .58);
}

.f2-register-layout .terms-label {
	align-items: center;
	gap: 10px;
	margin: 4px 0 14px;
	color: var(--f2-muted);
}

.f2-register-layout .terms-label input {
	width: 17px;
	height: 17px;
	accent-color: var(--f2-orange);
}

.f2-register-layout .btn {
	width: min(100%, 190px);
	min-height: 46px;
}

.f2-account-checklist {
	margin-top: 26px;
	background:
		linear-gradient(135deg, rgba(242, 150, 46, .08), transparent 48%),
		rgba(0, 0, 0, .24);
}

.f2-account-checklist ul {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 12px;
}

.f2-account-checklist li {
	font-size: .74rem;
}

.f2-register-guide {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background:
		radial-gradient(circle at 78% 12%, rgba(242, 150, 46, .18), transparent 28%),
		linear-gradient(145deg, rgba(255, 229, 164, .08), transparent 42%),
		rgba(28, 15, 8, .72);
}

.f2-register-guide h3 {
	max-width: 360px;
	color: #ffe5a6;
	font-size: clamp(2rem, 3.2vw, 2.85rem);
	line-height: 1.02;
}

.f2-register-guide > p:not(.f2-register-kicker) {
	max-width: 390px;
	font-size: .95rem;
}

.f2-register-steps {
	gap: 10px;
	margin: 26px 0 20px;
}

.f2-register-steps li {
	min-height: 82px;
	padding: 14px;
	border-color: rgba(220, 164, 62, .24);
	background: rgba(0, 0, 0, .22);
}

.f2-register-steps li > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(245, 211, 135, .28);
	background: rgba(242, 150, 46, .07);
	color: var(--f2-gold);
}

.f2-register-note {
	border-left-color: var(--f2-gold);
	background:
		linear-gradient(90deg, rgba(242, 204, 115, .12), transparent),
		rgba(0, 0, 0, .2);
}

.f2-register-links a {
	flex: 1 1 0;
	min-height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

@media (max-width: 980px) {
	.f2-account-checklist ul {
		grid-template-columns: 1fr;
	}
}
/* Codex official launch, admin controls, account status */
.f2-launch-banner--official .f2-launch-banner__copy span {
	color: #ffe0a0;
}

.f2-launch-banner--official .f2-launch-banner__timer b {
	color: #fff4c8;
}

.f2-launch-banner--official .f2-launch-banner__timer {
	border-color: rgba(245, 211, 135, .52);
	background:
		linear-gradient(180deg, rgba(255, 222, 142, .11), rgba(0, 0, 0, .34)),
		rgba(0, 0, 0, .22);
}

.f2-user-overview--expanded {
	grid-template-columns: minmax(220px, 1.25fr) repeat(4, minmax(130px, .75fr));
}

.f2-user-card--attention {
	border-color: rgba(245, 211, 135, .52);
	background:
		linear-gradient(135deg, rgba(242, 150, 46, .13), transparent 48%),
		rgba(12, 8, 5, .84);
}

.f2-user-card--attention strong {
	color: #ffe0a0;
}

.f2-admin-command-card {
	position: relative;
	overflow: hidden;
}

.f2-admin-command-card::after {
	content: "";
	position: absolute;
	right: -28px;
	bottom: -28px;
	width: 78px;
	height: 78px;
	border: 1px solid rgba(245, 211, 135, .1);
	transform: rotate(45deg);
}

@media (max-width: 1120px) {
	.f2-user-overview--expanded {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.f2-user-overview--expanded {
		grid-template-columns: 1fr;
	}
}
/* Codex user panel framing correction */
.f2-content-panel:has(.f2-user-overview--expanded) {
	overflow: hidden;
}

.f2-content-panel:has(.f2-user-overview--expanded) .f2-panel-welcome {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
	align-items: center;
}

.f2-content-panel:has(.f2-user-overview--expanded) .f2-panel-quick-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: min(100%, 230px);
	justify-self: end;
}

.f2-content-panel:has(.f2-user-overview--expanded) .f2-panel-quick-links a {
	min-width: 0;
	text-align: center;
}

.f2-user-overview--expanded {
	display: grid;
	grid-template-columns: minmax(220px, 1.25fr) repeat(2, minmax(130px, .75fr));
	gap: 14px;
	width: 100%;
	max-width: 100%;
	margin-bottom: 18px;
}

.f2-user-overview--expanded .f2-user-card {
	box-sizing: border-box;
	min-width: 0;
}

.f2-user-overview--expanded .f2-user-card:nth-child(4),
.f2-user-overview--expanded .f2-user-card:nth-child(5) {
	grid-column: span 1;
}

.f2-user-overview--expanded .f2-user-card strong,
.f2-user-overview--expanded .f2-user-card small {
	max-width: 100%;
	overflow-wrap: anywhere;
}

.f2-content-panel:has(.f2-user-overview--expanded) .f2-account-modern-panel {
	box-sizing: border-box;
	width: 100%;
	overflow: hidden;
}

.f2-content-panel:has(.f2-user-overview--expanded) .f2-account-actions-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.f2-content-panel:has(.f2-user-overview--expanded) .f2-account-actions-grid a {
	min-width: 0;
	padding-inline: 8px;
	word-break: normal;
	overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
	.f2-user-overview--expanded {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.f2-user-overview--expanded .f2-user-card--identity {
		grid-column: 1 / -1;
	}
}

@media (max-width: 860px) {
	.f2-content-panel:has(.f2-user-overview--expanded) .f2-panel-welcome {
		grid-template-columns: 1fr;
	}

	.f2-content-panel:has(.f2-user-overview--expanded) .f2-panel-quick-links {
		justify-self: stretch;
		width: 100%;
	}

	.f2-content-panel:has(.f2-user-overview--expanded) .f2-account-actions-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.f2-user-overview--expanded,
	.f2-content-panel:has(.f2-user-overview--expanded) .f2-panel-quick-links,
	.f2-content-panel:has(.f2-user-overview--expanded) .f2-account-actions-grid {
		grid-template-columns: 1fr;
	}
}


/* Codex locked download buttons */
.btn--locked,
.btn--locked:disabled {
	cursor: not-allowed;
	opacity: .68;
	filter: grayscale(.25);
	box-shadow: none;
}

/* Codex admin download toggle */
.f2-admin-download-control {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 20px;
	padding: 18px 20px;
	border: 1px solid rgba(220, 164, 62, .32);
	background: linear-gradient(135deg, rgba(242, 150, 46, .08), rgba(0, 0, 0, .2));
}

.f2-admin-download-control span,
.f2-admin-download-control small {
	display: block;
	color: var(--f2-gold);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.f2-admin-download-control h3 {
	margin: 6px 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	line-height: 1;
	color: var(--f2-cream);
}

.f2-admin-download-control p {
	max-width: 560px;
	margin: 0 0 8px;
	color: var(--f2-muted);
}

.f2-admin-download-control.is-enabled {
	border-color: rgba(137, 236, 135, .34);
}

.f2-admin-download-control.is-locked {
	border-color: rgba(242, 150, 46, .5);
}

@media (max-width: 720px) {
	.f2-admin-download-control {
		align-items: stretch;
		flex-direction: column;
	}
}

/* Codex home locked download controls */
.f2-btn-locked,
.f2-btn-locked:disabled {
	cursor: not-allowed;
	opacity: .62;
	filter: grayscale(.22);
	box-shadow: none;
}

.f2-link-slots .f2-link-slot-disabled {
	display: block;
	padding: 14px 16px;
	border: 1px solid rgba(220, 164, 62, .28);
	background: rgba(0, 0, 0, .22);
	cursor: not-allowed;
	opacity: .7;
}

.f2-link-slots .f2-link-slot-disabled span,
.f2-link-slots .f2-link-slot-disabled small {
	display: block;
}

.f2-link-slots .f2-link-slot-disabled span {
	color: var(--f2-gold);
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.f2-link-slots .f2-link-slot-disabled small {
	margin-top: 4px;
	color: var(--f2-muted);
}
/* Codex premium support redesign */
.f2-support-center {
	gap: 18px;
}

.f2-support-hero-panel--premium {
	position: relative;
	grid-template-columns: minmax(0, 1.22fr) minmax(290px, .78fr);
	gap: 22px;
	padding: clamp(22px, 3vw, 34px);
	overflow: hidden;
	border-color: rgba(245, 211, 135, .32);
	background:
		linear-gradient(115deg, rgba(79, 42, 23, .9), rgba(15, 10, 7, .94) 56%),
		linear-gradient(180deg, rgba(255, 222, 142, .05), transparent),
		rgba(11, 7, 5, .96);
	box-shadow: 0 24px 64px rgba(0, 0, 0, .36);
}

.f2-support-hero-panel--premium::after {
	content: "";
	position: absolute;
	right: -70px;
	top: -70px;
	width: 190px;
	height: 190px;
	border: 1px solid rgba(245, 211, 135, .1);
	transform: rotate(45deg);
	pointer-events: none;
}

.f2-support-hero-copy {
	min-height: 236px;
	justify-content: center;
}

.f2-support-hero-copy h2 {
	max-width: 660px;
	font-size: clamp(3rem, 7vw, 5.45rem);
	line-height: .9;
}

.f2-support-hero-copy p {
	max-width: 660px;
	margin-top: 18px;
	font-size: 1rem;
	line-height: 1.75;
}

.f2-support-hero-stats {
	align-content: center;
	gap: 12px;
}

.f2-support-hero-stats a {
	min-height: 82px;
	padding: 16px 18px;
	border-color: rgba(220, 164, 62, .34);
	background:
		linear-gradient(135deg, rgba(255, 222, 142, .045), transparent 58%),
		rgba(0, 0, 0, .24);
}

.f2-support-hero-stats span {
	font-size: .68rem;
}

.f2-support-hero-stats strong {
	color: var(--f2-gold);
	font-size: 2.15rem;
}

.f2-support-hero-panel--premium .f2-support-tabs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	padding-top: 0;
}

.f2-support-tabs .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	width: 100%;
	padding: 0 14px;
	border-color: rgba(220, 164, 62, .32);
	background: rgba(0, 0, 0, .28);
	letter-spacing: .08em;
}

.f2-support-tabs .btn.is-active {
	background: linear-gradient(135deg, #cf5232, #ffd98d);
	color: #130904;
	box-shadow: 0 14px 34px rgba(221, 113, 49, .2);
}

.f2-support-grid {
	grid-template-columns: minmax(0, 1.12fr) minmax(315px, .88fr);
	gap: 18px;
}

.f2-support-panel,
.f2-support-ticket-card,
.f2-support-help-grid article {
	border-color: rgba(220, 164, 62, .3);
	background:
		linear-gradient(135deg, rgba(255, 222, 142, .035), transparent 42%),
		rgba(14, 9, 6, .94);
}

.f2-support-panel-head {
	padding: 22px 24px 14px;
}

.f2-support-panel-head h3,
.f2-support-ticket-card h3,
.f2-support-help-grid h3 {
	font-size: clamp(1.65rem, 3vw, 2.4rem);
	line-height: 1;
}

.f2-support-panel-body {
	padding: 20px 24px 24px;
}

.f2-support-form {
	gap: 15px;
}

.f2-support-form-row {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.f2-support-form textarea {
	min-height: 158px;
}

.f2-support-form .btn[type="submit"] {
	min-height: 54px;
	border-color: rgba(255, 231, 160, .66);
	background: linear-gradient(135deg, #cf5232, #ffd98d);
	color: #120804;
	font-weight: 950;
	letter-spacing: .12em;
	text-transform: uppercase;
	box-shadow: 0 14px 34px rgba(221, 113, 49, .18);
}

.f2-support-ticket-list {
	gap: 14px;
}

.f2-support-ticket-card {
	padding: 22px;
}

.f2-support-ticket-card:first-child:only-child {
	min-height: 238px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-style: dashed;
	background:
		linear-gradient(135deg, rgba(245, 211, 135, .07), transparent 48%),
		rgba(0, 0, 0, .18);
}

.f2-support-pill {
	min-height: 27px;
	padding: 0 10px;
	font-size: .66rem;
}

.f2-support-thread {
	gap: 12px;
}

.f2-support-bubble {
	padding: 14px 15px;
	background: rgba(0, 0, 0, .18);
}

.f2-support-help-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.f2-support-help-grid article {
	position: relative;
	min-height: 156px;
	padding: 22px;
	overflow: hidden;
}

.f2-support-help-grid article::after,
.f2-support-known::after {
	content: "";
	position: absolute;
	right: -32px;
	bottom: -32px;
	width: 88px;
	height: 88px;
	border: 1px solid rgba(245, 211, 135, .1);
	transform: rotate(45deg);
	pointer-events: none;
}

.f2-support-help-grid .f2-support-empty-card {
	grid-column: 1 / -1;
}

.f2-support-known {
	position: relative;
	overflow: hidden;
}

.f2-support-known .f2-support-panel-body {
	gap: 14px;
}

.f2-support-empty-state {
	padding: 22px;
	border-color: rgba(159, 234, 155, .32);
	background:
		linear-gradient(135deg, rgba(159, 234, 155, .08), transparent 52%),
		rgba(0, 0, 0, .18);
}

.f2-support-issue {
	align-items: center;
	min-height: 82px;
	padding: 16px;
	border-color: rgba(220, 164, 62, .26);
	background: rgba(0, 0, 0, .2);
}

.f2-support-issue strong {
	font-size: 1rem;
}

.f2-support-issue p {
	line-height: 1.55;
}

@media (max-width: 980px) {
	.f2-support-hero-panel--premium,
	.f2-support-grid,
	.f2-support-help-grid {
		grid-template-columns: 1fr;
	}

	.f2-support-hero-copy {
		min-height: 0;
	}
}

@media (max-width: 680px) {
	.f2-support-hero-panel--premium .f2-support-tabs,
	.f2-support-form-row {
		grid-template-columns: 1fr;
	}
}
/* Codex support hero overlap fix */
.f2-support-hero-panel--premium {
	grid-template-columns: minmax(0, .98fr) minmax(300px, .72fr);
	column-gap: clamp(24px, 4vw, 46px);
}

.f2-support-hero-copy {
	min-width: 0;
}

.f2-support-hero-copy h2 {
	max-width: 500px;
	font-size: clamp(2.75rem, 5.35vw, 4.35rem);
	line-height: .9;
	overflow-wrap: normal;
}

.f2-support-hero-stats {
	min-width: 0;
	position: relative;
	z-index: 1;
}

.f2-support-hero-panel--premium .f2-support-tabs {
	position: relative;
	z-index: 2;
}

@media (max-width: 1120px) {
	.f2-support-hero-panel--premium {
		grid-template-columns: 1fr;
	}

	.f2-support-hero-copy h2 {
		max-width: 760px;
		font-size: clamp(2.65rem, 7vw, 4.8rem);
	}
}
/* Codex support hero final no-overlap */
.f2-support-hero-panel--premium {
	grid-template-columns: 1fr !important;
	gap: 20px !important;
}

.f2-support-hero-copy {
	min-height: 0 !important;
}

.f2-support-hero-copy h2 {
	max-width: 100% !important;
	font-size: clamp(2.65rem, 6vw, 4.65rem) !important;
	line-height: .92 !important;
}

.f2-support-hero-copy p {
	max-width: 620px !important;
}

.f2-support-hero-stats {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	width: 100% !important;
}

.f2-support-hero-stats a {
	min-width: 0 !important;
}

.f2-support-hero-panel--premium .f2-support-tabs {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

@media (max-width: 720px) {
	.f2-support-hero-stats,
	.f2-support-hero-panel--premium .f2-support-tabs {
		grid-template-columns: 1fr !important;
	}
}
.f2-nav-support {
	position: relative;
}

.f2-nav-support .f2-support-badge {
	transform: translateY(-1px);
}

.f2-support-widget {
	border-color: rgba(159, 234, 155, 0.24);
}

.f2-support-widget .f2-widget-title span {
	color: #b9f5ad;
}

.f2-support-widget .f2-link-slots a:first-child {
	border-color: rgba(159, 234, 155, 0.38);
	background: linear-gradient(135deg, rgba(49, 106, 55, 0.42), rgba(18, 28, 22, 0.82));
}
/* Codex dedicated support page */
.is-support-page .f2-hero,
.is-support-page .f2-server-status,
.is-support-page .f2-side,
.is-support-page .f2-section-head {
	display: none !important;
}

.is-support-page .f2-shell {
	max-width: 1260px;
	padding-top: clamp(26px, 4vw, 54px);
}

.is-support-page .f2-content-grid {
	display: block;
}

.is-support-page .f2-content-panel {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.f2-support-dedicated {
	gap: 22px;
}

.f2-support-dedicated-hero .f2-support-hero-stats {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.f2-support-workspace {
	display: grid;
	grid-template-columns: minmax(340px, .88fr) minmax(0, 1.32fr);
	gap: 22px;
	align-items: start;
}

.f2-support-create {
	position: sticky;
	top: 92px;
}

.f2-support-panel-head p {
	margin: 8px 0 0;
	color: var(--f2-muted);
	line-height: 1.6;
}

.f2-support-history-list {
	display: grid;
	gap: 16px;
	padding: 0 22px 22px;
}

.f2-ticket-history-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: start;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(220, 164, 62, .24);
}

.f2-ticket-history-head h3 {
	margin: 4px 0 8px;
}

.f2-ticket-history-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
	max-width: 320px;
}

.f2-status-open {
	border-color: rgba(255, 217, 141, .48);
	color: #ffd98d;
}

.f2-status-answered,
.f2-support-pill.is-green {
	border-color: rgba(159, 234, 155, .52);
	color: #b9f5ad;
}

.f2-status-closed {
	border-color: rgba(170, 149, 126, .38);
	color: #b9aa98;
}

.f2-ticket-timeline {
	position: relative;
	display: grid;
	gap: 14px;
	margin: 18px 0;
	padding-left: 24px;
}

.f2-ticket-timeline::before {
	content: "";
	position: absolute;
	left: 7px;
	top: 7px;
	bottom: 7px;
	width: 1px;
	background: linear-gradient(180deg, rgba(220, 164, 62, .45), rgba(220, 164, 62, .05));
}

.f2-ticket-timeline-item {
	position: relative;
}

.f2-ticket-timeline-dot {
	position: absolute;
	left: -23px;
	top: 16px;
	width: 13px;
	height: 13px;
	border: 1px solid rgba(220, 164, 62, .58);
	background: #140b07;
	box-shadow: 0 0 0 4px rgba(220, 164, 62, .08);
}

.f2-ticket-timeline-item.is-staff .f2-ticket-timeline-dot {
	border-color: rgba(159, 234, 155, .72);
	box-shadow: 0 0 0 4px rgba(159, 234, 155, .1);
}

.f2-ticket-timeline-item.is-staff .f2-support-bubble {
	border-color: rgba(159, 234, 155, .3);
	background: linear-gradient(135deg, rgba(159, 234, 155, .08), rgba(0, 0, 0, .22));
}

.f2-ticket-history-reply {
	margin-top: 12px;
	padding-top: 14px;
	border-top: 1px solid rgba(220, 164, 62, .2);
}

.f2-ticket-close-form {
	margin-top: 10px;
}

.f2-support-empty-history {
	min-height: 260px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-style: dashed;
}

@media (max-width: 1080px) {
	.f2-support-workspace,
	.f2-ticket-history-head {
		grid-template-columns: 1fr;
	}

	.f2-support-create {
		position: static;
	}

	.f2-ticket-history-meta {
		justify-content: flex-start;
		max-width: none;
	}
}

@media (max-width: 720px) {
	.f2-support-dedicated-hero .f2-support-hero-stats {
		grid-template-columns: 1fr !important;
	}

	.f2-support-history-list {
		padding: 0 14px 16px;
	}
}
/* Codex support centering polish */
body.is-support-page main.f2-shell {
	width: min(100% - 48px, 1440px) !important;
	max-width: 1440px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

body.is-support-page .f2-content-grid,
body.is-support-page .f2-content-panel,
body.is-support-page .f2-support-dedicated {
	width: 100% !important;
	max-width: none !important;
}

body.is-support-page .f2-support-dedicated {
	margin-left: auto;
	margin-right: auto;
}

body.is-support-page .f2-support-dedicated-hero,
body.is-support-page .f2-support-help-grid,
body.is-support-page .f2-support-known {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}

body.is-support-page .f2-support-workspace {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: minmax(430px, 520px) minmax(0, 1fr);
	gap: 26px;
}

body.is-support-page .f2-support-create .f2-support-panel-head {
	padding: 30px 34px 18px;
}

body.is-support-page .f2-support-create .f2-support-panel-head h3 {
	font-size: clamp(2.25rem, 3.4vw, 3.4rem);
}

body.is-support-page .f2-support-create .f2-support-panel-body {
	padding: 26px 34px 34px;
}

body.is-support-page .f2-support-create .f2-support-form {
	gap: 18px;
}

body.is-support-page .f2-support-create .f2-support-form textarea {
	min-height: 210px;
}

body.is-support-page .f2-support-create .f2-support-form .btn[type="submit"] {
	min-height: 64px;
	font-size: .84rem;
}

body.is-support-page .f2-support-history .f2-support-panel-head {
	padding: 30px 34px 18px;
}

body.is-support-page .f2-support-history-list {
	padding: 0 34px 34px;
}

@media (max-width: 1180px) {
	body.is-support-page .f2-support-workspace {
		grid-template-columns: 1fr;
	}

	body.is-support-page .f2-support-create {
		position: static;
	}
}

@media (max-width: 720px) {
	body.is-support-page main.f2-shell {
		width: min(100% - 24px, 1440px) !important;
	}

	body.is-support-page .f2-support-create .f2-support-panel-head,
	body.is-support-page .f2-support-history .f2-support-panel-head {
		padding: 22px 20px 14px;
	}

	body.is-support-page .f2-support-create .f2-support-panel-body,
	body.is-support-page .f2-support-history-list {
		padding: 18px 20px 22px;
	}
}
/* Codex support hero framed layout */
body.is-support-page .f2-support-dedicated-hero {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 430px) !important;
	grid-template-areas:
		"copy stats"
		"tabs tabs" !important;
	align-items: center !important;
	gap: 26px 34px !important;
	padding: clamp(28px, 3.2vw, 46px) !important;
	overflow: hidden !important;
}

body.is-support-page .f2-support-dedicated-hero .f2-support-hero-copy {
	grid-area: copy;
	min-width: 0 !important;
	max-width: 100% !important;
}

body.is-support-page .f2-support-dedicated-hero .f2-support-hero-copy h2 {
	max-width: 620px !important;
	font-size: clamp(3.4rem, 4.7vw, 5.15rem) !important;
	line-height: .9 !important;
	overflow-wrap: normal !important;
	word-break: normal !important;
}

body.is-support-page .f2-support-dedicated-hero .f2-support-hero-copy p {
	max-width: 560px !important;
}

body.is-support-page .f2-support-dedicated-hero .f2-support-hero-stats {
	grid-area: stats;
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 12px !important;
	width: 100% !important;
	align-self: stretch !important;
}

body.is-support-page .f2-support-dedicated-hero .f2-support-hero-stats a {
	min-height: 74px !important;
}

body.is-support-page .f2-support-dedicated-hero .f2-support-tabs {
	grid-area: tabs;
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	width: 100% !important;
	padding-top: 0 !important;
	border-top: 1px solid rgba(220, 164, 62, .24);
	padding-top: 22px !important;
}

@media (max-width: 980px) {
	body.is-support-page .f2-support-dedicated-hero {
		grid-template-columns: 1fr !important;
		grid-template-areas:
			"copy"
			"stats"
			"tabs" !important;
	}

	body.is-support-page .f2-support-dedicated-hero .f2-support-hero-copy h2 {
		max-width: 100% !important;
		font-size: clamp(2.8rem, 9vw, 4.6rem) !important;
	}

	body.is-support-page .f2-support-dedicated-hero .f2-support-hero-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 640px) {
	body.is-support-page .f2-support-dedicated-hero .f2-support-hero-stats,
	body.is-support-page .f2-support-dedicated-hero .f2-support-tabs {
		grid-template-columns: 1fr !important;
	}
}
/* Codex support final framing */
body.is-support-page .f2-content-grid {
	width: min(100% - 32px, 1220px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

body.is-support-page .f2-support-dedicated {
	width: 100% !important;
	max-width: 1220px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	display: grid !important;
	gap: 24px !important;
}

body.is-support-page .f2-support-dedicated-hero,
body.is-support-page .f2-support-workspace,
body.is-support-page .f2-support-help-grid,
body.is-support-page .f2-support-known {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	box-sizing: border-box !important;
}

body.is-support-page .f2-support-workspace {
	grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr) !important;
	gap: 24px !important;
	align-items: stretch !important;
}

body.is-support-page .f2-support-create,
body.is-support-page .f2-support-history {
	height: 100%;
}

body.is-support-page .f2-support-history-list {
	min-height: 330px;
}

body.is-support-page .f2-support-help-grid {
	display: grid !important;
	grid-template-columns: 1fr !important;
}

body.is-support-page .f2-support-help-grid article,
body.is-support-page .f2-support-known {
	min-height: 132px;
}

body.is-support-page .f2-support-known .f2-support-panel-body {
	padding: 22px 34px 34px !important;
}

body.is-support-page .f2-support-issue {
	width: 100%;
	box-sizing: border-box;
}

@media (max-width: 980px) {
	body.is-support-page .f2-support-workspace {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 720px) {
	body.is-support-page .f2-content-grid {
		width: min(100% - 20px, 1220px) !important;
	}
}
/* Codex support history spacing */
body.is-support-page .f2-support-history .f2-support-panel-head {
	padding-bottom: 24px !important;
}

body.is-support-page .f2-support-history-list {
	padding: 24px 34px 34px !important;
	border-top: 1px solid rgba(220, 164, 62, .22);
	background: linear-gradient(180deg, rgba(220, 164, 62, .025), transparent 120px);
}

body.is-support-page .f2-support-history-list > .f2-support-ticket-card {
	padding: 28px !important;
}

body.is-support-page .f2-support-empty-history {
	min-height: 286px !important;
	justify-content: center !important;
}

body.is-support-page .f2-ticket-history-head {
	padding-bottom: 20px !important;
	margin-bottom: 20px !important;
}

body.is-support-page .f2-ticket-timeline {
	margin-top: 22px !important;
	margin-bottom: 22px !important;
}

@media (max-width: 720px) {
	body.is-support-page .f2-support-history-list {
		padding: 18px 20px 24px !important;
	}

	body.is-support-page .f2-support-history-list > .f2-support-ticket-card {
		padding: 20px !important;
	}
}
/* Codex FAQ accordion */
body.is-support-page .f2-support-faq {
	border: 1px solid rgba(220, 164, 62, .3);
	background: linear-gradient(135deg, rgba(255, 222, 142, .035), transparent 42%), rgba(14, 9, 6, .94);
	min-height: 0 !important;
}

body.is-support-page .f2-support-faq-head {
	padding: 30px 34px 18px !important;
	border-bottom: 1px solid rgba(220, 164, 62, .22);
}

body.is-support-page .f2-support-faq-head h3 {
	font-size: clamp(2rem, 3vw, 2.75rem);
	line-height: 1;
}

body.is-support-page .f2-faq-accordion {
	display: grid;
	gap: 10px;
	padding: 24px 34px 34px;
}

body.is-support-page .f2-faq-item {
	border: 1px solid rgba(220, 164, 62, .24);
	background: rgba(0, 0, 0, .18);
}

body.is-support-page .f2-faq-item[open] {
	border-color: rgba(220, 164, 62, .46);
	background: linear-gradient(135deg, rgba(220, 164, 62, .055), rgba(0, 0, 0, .2));
}

body.is-support-page .f2-faq-item summary {
	display: grid;
	grid-template-columns: minmax(0, 130px) minmax(0, 1fr) 26px;
	gap: 18px;
	align-items: center;
	min-height: 62px;
	padding: 0 18px;
	cursor: pointer;
	list-style: none;
}

body.is-support-page .f2-faq-item summary::-webkit-details-marker {
	display: none;
}

body.is-support-page .f2-faq-item summary span {
	color: var(--f2-gold);
	font-size: .68rem;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}

body.is-support-page .f2-faq-item summary strong {
	color: var(--f2-cream);
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.25rem, 2vw, 1.65rem);
	line-height: 1.1;
}

body.is-support-page .f2-faq-item summary i {
	position: relative;
	width: 24px;
	height: 24px;
	border: 1px solid rgba(220, 164, 62, .36);
}

body.is-support-page .f2-faq-item summary i::before,
body.is-support-page .f2-faq-item summary i::after {
	content: "";
	position: absolute;
	left: 6px;
	right: 6px;
	top: 50%;
	height: 2px;
	background: var(--f2-gold);
	transform: translateY(-50%);
}

body.is-support-page .f2-faq-item summary i::after {
	transform: translateY(-50%) rotate(90deg);
}

body.is-support-page .f2-faq-item[open] summary i::after {
	display: none;
}

body.is-support-page .f2-faq-answer {
	padding: 0 18px 18px 166px;
}

body.is-support-page .f2-faq-answer p {
	max-width: 880px;
	margin: 0;
	color: var(--f2-muted);
	font-size: .95rem;
	line-height: 1.7;
}

@media (max-width: 720px) {
	body.is-support-page .f2-support-faq-head,
	body.is-support-page .f2-faq-accordion {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	body.is-support-page .f2-faq-item summary {
		grid-template-columns: 1fr 26px;
		gap: 10px;
		padding: 14px;
	}

	body.is-support-page .f2-faq-item summary span {
		grid-column: 1 / -1;
	}

	body.is-support-page .f2-faq-answer {
		padding: 0 14px 16px;
	}
}
/* Codex FAQ minimal polish */
body.is-support-page .f2-support-faq-head {
	padding: 24px 30px 14px !important;
}

body.is-support-page .f2-support-faq-head h3 {
	font-size: clamp(1.7rem, 2.4vw, 2.25rem) !important;
}

body.is-support-page .f2-support-faq-head p {
	font-size: .9rem;
	max-width: 720px;
}

body.is-support-page .f2-faq-accordion {
	gap: 6px !important;
	padding: 18px 30px 28px !important;
}

body.is-support-page .f2-faq-item {
	border-color: rgba(220, 164, 62, .18) !important;
	background: rgba(0, 0, 0, .1) !important;
}

body.is-support-page .f2-faq-item[open] {
	border-color: rgba(220, 164, 62, .34) !important;
	background: rgba(220, 164, 62, .035) !important;
}

body.is-support-page .f2-faq-item summary {
	grid-template-columns: 96px minmax(0, 1fr) 20px !important;
	gap: 14px !important;
	min-height: 46px !important;
	padding: 0 12px !important;
}

body.is-support-page .f2-faq-item summary span {
	font-size: .58rem !important;
	letter-spacing: .09em !important;
	color: rgba(255, 217, 141, .82) !important;
}

body.is-support-page .f2-faq-item summary strong {
	font-size: clamp(1rem, 1.45vw, 1.22rem) !important;
	font-family: Georgia, 'Times New Roman', serif;
	font-weight: 800;
	line-height: 1.15 !important;
}

body.is-support-page .f2-faq-item summary i {
	width: 18px !important;
	height: 18px !important;
	border-color: rgba(220, 164, 62, .28) !important;
}

body.is-support-page .f2-faq-item summary i::before,
body.is-support-page .f2-faq-item summary i::after {
	left: 5px !important;
	right: 5px !important;
	height: 1px !important;
}

body.is-support-page .f2-faq-answer {
	padding: 0 12px 14px 122px !important;
}

body.is-support-page .f2-faq-answer p {
	font-size: .86rem !important;
	line-height: 1.55 !important;
}

@media (max-width: 720px) {
	body.is-support-page .f2-faq-item summary {
		grid-template-columns: 1fr 20px !important;
		min-height: 50px !important;
	}

	body.is-support-page .f2-faq-answer {
		padding: 0 12px 14px !important;
	}
}
/* Codex admin support compact manager */
.f2-support-admin-box--compact .f2-support-admin-create-grid,
.f2-support-admin-box--compact .f2-support-admin-manage-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 18px;
}

.f2-support-admin-row {
	display: grid;
	grid-template-columns: minmax(140px, .42fr) minmax(0, 1fr);
	gap: 10px;
}

.f2-support-admin-section-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.f2-support-admin-section-title h4 {
	margin: 0;
}

.f2-support-admin-section-title span {
	color: var(--f2-muted);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.f2-support-admin-list--compact {
	gap: 8px;
	max-height: 640px;
	overflow: auto;
	padding-right: 4px;
}

.f2-support-admin-item--compact {
	padding: 0;
	gap: 0;
}

.f2-support-admin-item--compact summary {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr) auto 22px;
	gap: 12px;
	align-items: center;
	min-height: 48px;
	padding: 0 12px;
	cursor: pointer;
	list-style: none;
}

.f2-support-admin-item--compact summary::-webkit-details-marker {
	display: none;
}

.f2-support-admin-item--compact summary span,
.f2-support-admin-item--compact summary em {
	font-size: 10px;
	font-style: normal;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.f2-support-admin-item--compact summary span {
	color: var(--f2-gold);
}

.f2-support-admin-item--compact summary strong {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--f2-cream);
	font-size: 13px;
}

.f2-support-admin-item--compact summary em {
	color: #b9f5ad;
}

.f2-support-admin-item--compact.is-hidden summary em {
	color: var(--f2-muted);
}

.f2-support-admin-item--compact summary i {
	position: relative;
	width: 18px;
	height: 18px;
	border: 1px solid rgba(220, 164, 62, .3);
}

.f2-support-admin-item--compact summary i::before,
.f2-support-admin-item--compact summary i::after {
	content: "";
	position: absolute;
	left: 5px;
	right: 5px;
	top: 50%;
	height: 1px;
	background: var(--f2-gold);
	transform: translateY(-50%);
}

.f2-support-admin-item--compact summary i::after {
	transform: translateY(-50%) rotate(90deg);
}

.f2-support-admin-item--compact[open] summary i::after {
	display: none;
}

.f2-support-admin-edit {
	display: grid;
	gap: 10px;
	padding: 12px;
	border-top: 1px solid rgba(220, 164, 62, .16);
	background: rgba(0, 0, 0, .14);
}

.f2-support-admin-edit textarea {
	min-height: 112px;
}

@media (max-width: 1100px) {
	.f2-support-admin-box--compact .f2-support-admin-create-grid,
	.f2-support-admin-box--compact .f2-support-admin-manage-grid,
	.f2-support-admin-row {
		grid-template-columns: 1fr;
	}

	.f2-support-admin-item--compact summary {
		grid-template-columns: 1fr auto 22px;
	}

	.f2-support-admin-item--compact summary span {
		grid-column: 1 / -1;
	}
}
/* Codex admin tickets top section */
.f2-admin-ticket-results {
	margin-top: 18px;
}

.f2-admin-ticket-results-head {
	padding-bottom: 14px;
	margin-bottom: 16px;
}

.f2-admin-ticket-results-head h3 {
	margin: 6px 0;
	color: var(--f2-cream);
	font-family: Georgia, serif;
	font-size: 30px;
}

.f2-admin-ticket-results-head p {
	margin: 0;
	color: var(--f2-muted);
}

.f2-admin-ticket-count {
	padding: 8px 12px;
	border: 1px solid rgba(220, 164, 62, .24);
	color: var(--f2-gold);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.f2-admin-ticket-results > .f2-ticket-list {
	margin-top: 0;
}

.f2-support-admin-box--compact {
	margin-top: 18px;
}
.f2-local-captcha {
	position: relative;
}

.f2-local-captcha-box {
	display: grid;
	grid-template-columns: minmax(92px, auto) 1fr;
	gap: 10px;
	align-items: center;
}

.f2-local-captcha-box span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 15px;
	border: 1px solid rgba(220, 164, 62, .34);
	background: rgba(0, 0, 0, .26);
	color: var(--f2-gold);
	font-size: .92rem;
	font-weight: 950;
	letter-spacing: .06em;
	white-space: nowrap;
}

.f2-local-captcha-box input {
	text-align: center;
	font-weight: 900;
}

.f2-local-captcha--panel .f2-local-captcha-box {
	grid-template-columns: 112px 1fr;
}

.f2-local-captcha--panel .f2-local-captcha-box span {
	min-height: 48px;
}

@media (max-width: 520px) {
	.f2-local-captcha-box {
		grid-template-columns: 1fr;
	}
}

/* Yore2 brand polish */
.f2-header {
	border-bottom-color: rgba(226, 154, 42, .34);
	background:
		linear-gradient(90deg, rgba(6, 4, 3, .96), rgba(24, 14, 7, .92) 50%, rgba(6, 4, 3, .96)),
		rgba(5, 4, 3, .96);
}

.f2-header::before {
	inset: auto 0 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 3%, rgba(226, 154, 42, .95) 18%, rgba(255, 230, 154, .86) 50%, rgba(226, 154, 42, .95) 82%, transparent 97%);
}

.f2-hero-bg {
	filter: saturate(.92) contrast(1.08) brightness(.72);
}

.f2-hero::before {
	background:
		radial-gradient(circle at 20% 18%, rgba(242, 150, 46, .18), transparent 26%),
		linear-gradient(90deg, rgba(5, 3, 2, .86), rgba(5, 3, 2, .32) 42%, rgba(5, 3, 2, .76));
}

.f2-logo-stage {
	width: min(540px, 92vw);
	margin-bottom: 18px;
	padding: 0;
	filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .72));
}

.f2-logo {
	width: 100%;
	max-width: 580px;
	height: auto;
	object-fit: contain;
}

.f2-logo-stage::before,
.f2-logo-stage::after {
	left: 14%;
	right: 14%;
	height: 1px;
	opacity: .74;
}

.f2-kicker {
	color: #ffd66f;
	letter-spacing: .15em;
}

.f2-hero h1 {
	max-width: 760px;
	text-shadow: 0 4px 24px rgba(0, 0, 0, .78);
}

.f2-account-panel,
.f2-widget,
.f2-server-status,
.f2-content-panel,
.panel-section,
.f2-download-card,
.f2-login-page,
.f2-register-layout,
.f2-recovery-page {
	border-color: rgba(226, 154, 42, .34);
	background:
		linear-gradient(145deg, rgba(255, 229, 164, .065), transparent 34%),
		linear-gradient(180deg, rgba(31, 18, 9, .72), rgba(8, 5, 3, .86));
	box-shadow:
		0 22px 55px rgba(0, 0, 0, .42),
		inset 0 1px 0 rgba(255, 232, 160, .09);
}

.f2-account-panel {
	background:
		radial-gradient(circle at 82% 12%, rgba(242, 150, 46, .16), transparent 32%),
		linear-gradient(145deg, rgba(255, 229, 164, .08), transparent 40%),
		rgba(17, 10, 5, .88);
}

.f2-btn,
.f2-login-form button,
.btn,
.btn-login,
.f2-panel-links a {
	border-color: rgba(226, 154, 42, .48);
	background:
		linear-gradient(180deg, rgba(35, 18, 8, .94), rgba(9, 5, 3, .96));
	box-shadow:
		inset 0 1px 0 rgba(255, 238, 184, .18),
		0 10px 22px rgba(0, 0, 0, .32);
}

.f2-btn-primary,
.f2-login-form button,
.btn-login {
	border-color: rgba(255, 221, 136, .76);
	background:
		linear-gradient(180deg, #ffd778 0%, #ef9b34 44%, #bb471f 100%);
	color: #160905;
	text-shadow: 0 1px 0 rgba(255, 238, 181, .36);
}

.f2-btn:hover,
.f2-login-form button:hover,
.btn:hover,
.btn-login:hover,
.f2-panel-links a:hover {
	border-color: rgba(255, 226, 150, .9);
	box-shadow:
		0 0 0 1px rgba(255, 220, 135, .14),
		0 0 24px rgba(242, 150, 46, .18),
		inset 0 1px 0 rgba(255, 238, 184, .22);
}

.f2-widget-title,
.panel-section-title,
.f2-admin-ticket-results-head {
	border-color: rgba(226, 154, 42, .28);
}

.f2-widget-title span::before,
.f2-panel-crest span {
	background: linear-gradient(135deg, rgba(255, 224, 138, .95), rgba(226, 154, 42, .24));
}

/* Yore2 obsidian edition */
body {
	background:
		linear-gradient(180deg, rgba(7, 8, 6, .68), #070806 52%, #040503 100%),
		linear-gradient(110deg, rgba(113, 146, 122, .055), transparent 34%),
		var(--f2-bg);
	color: var(--f2-ink);
	font-family: "Inter", Arial, sans-serif;
}

body::before {
	opacity: .28;
	background:
		linear-gradient(rgba(226, 210, 170, .025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(226, 210, 170, .018) 1px, transparent 1px);
	background-size: 64px 64px;
}

.f2-header {
	border-bottom-color: rgba(199, 163, 90, .24);
	background: rgba(7, 8, 6, .94);
	box-shadow: 0 12px 34px rgba(0, 0, 0, .38);
}

.f2-header::before {
	inset: auto clamp(34px, 10vw, 180px) 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(199, 163, 90, .64), transparent);
}

.f2-header::after {
	display: none;
}

.f2-nav a {
	color: #c4c0b4;
	font-weight: 700;
}

.f2-nav a:hover,
.f2-text-link:hover {
	color: var(--f2-champagne);
}

.f2-nav .f2-nav-cta {
	border-color: rgba(199, 163, 90, .46);
	background: rgba(17, 19, 15, .9);
	color: var(--f2-champagne);
	box-shadow: none;
}

.f2-nav .f2-nav-cta::after {
	display: none;
}

.f2-language-switcher {
	border-color: var(--f2-line);
	background: rgba(17, 19, 15, .76);
}

.f2-hero-bg {
	filter: saturate(.76) contrast(1.08) brightness(.62);
}

.f2-hero::before {
	background:
		linear-gradient(90deg, rgba(5, 6, 4, .9), rgba(5, 6, 4, .34) 46%, rgba(5, 6, 4, .72)),
		linear-gradient(180deg, rgba(113, 146, 122, .05), transparent 38%);
}

.f2-logo-stage {
	filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .66));
}

.f2-logo-shine,
.f2-logo-spark {
	opacity: .48;
}

.f2-kicker {
	color: var(--f2-gold);
	font-weight: 700;
	letter-spacing: .16em;
}

.f2-hero h1,
.f2-account-panel h2,
.f2-section-head h2,
.f2-widget h3,
.f2-server-status__head h2,
.f2-new-player-guide h3,
.news-item h2 {
	font-family: var(--f2-serif);
	letter-spacing: 0;
	text-shadow: 0 4px 22px rgba(0, 0, 0, .54);
}

.f2-hero h1 {
	max-width: 720px;
	color: var(--f2-ink);
	font-size: clamp(3rem, 6vw, 5.7rem);
	line-height: .98;
}

.f2-hero-copy > p:not(.f2-kicker) {
	max-width: 690px;
	color: #b9b5a9;
	line-height: 1.72;
}

.f2-account-panel,
.f2-widget,
.f2-server-status,
.f2-content-panel,
.panel-section,
.f2-download-card,
.f2-login-page,
.f2-register-layout,
.f2-recovery-page,
.f2-new-player-guide,
.news-item {
	border-color: var(--f2-line);
	border-radius: 4px;
	background:
		linear-gradient(180deg, rgba(226, 210, 170, .025), transparent 28%),
		rgba(13, 15, 11, .9);
	box-shadow:
		0 20px 48px rgba(0, 0, 0, .36),
		inset 0 1px 0 rgba(226, 210, 170, .045);
}

.f2-account-panel {
	background:
		linear-gradient(145deg, rgba(113, 146, 122, .055), transparent 38%),
		rgba(13, 15, 11, .92);
}

.f2-account-panel::before,
.f2-content-panel::before,
.f2-widget::before,
.f2-account-panel::after,
.f2-content-panel::after,
.f2-widget::after {
	opacity: .34;
}

.f2-btn,
.f2-login-form button,
.btn,
.btn-login,
.f2-panel-links a {
	border-color: rgba(199, 163, 90, .4);
	border-radius: 3px;
	background: rgba(14, 16, 12, .94);
	color: var(--f2-ink);
	box-shadow:
		inset 0 1px 0 rgba(226, 210, 170, .06),
		0 9px 20px rgba(0, 0, 0, .26);
	transition: border-color .28s ease, color .28s ease, background .28s ease, box-shadow .28s ease, transform .28s ease;
}

.f2-btn-primary,
.f2-login-form button,
.btn-login {
	border-color: #dfc78f;
	background: #c7a35a;
	color: #0a0b08;
	text-shadow: none;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .28),
		0 12px 28px rgba(0, 0, 0, .28);
}

.f2-btn:hover,
.f2-login-form button:hover,
.btn:hover,
.btn-login:hover,
.f2-panel-links a:hover {
	border-color: var(--f2-champagne);
	color: var(--f2-champagne);
	background: rgba(24, 26, 20, .96);
	box-shadow:
		0 0 0 1px rgba(226, 210, 170, .06),
		0 12px 28px rgba(0, 0, 0, .32);
}

.f2-btn-primary:hover,
.f2-login-form button:hover,
.btn-login:hover {
	background: #d0b06a;
	color: #080906;
	transform: translateY(-1px);
}

.f2-server-status {
	border-color: rgba(199, 163, 90, .3);
	background: rgba(12, 14, 10, .96);
}

.f2-server-status::before {
	display: none;
}

.f2-server-status::after {
	background: linear-gradient(90deg, transparent, rgba(199, 163, 90, .5), transparent);
}

.f2-server-status__head {
	border-bottom-color: var(--f2-line);
}

.f2-server-metrics {
	gap: 0;
	border: 1px solid var(--f2-line);
}

.f2-server-metrics div {
	min-height: 74px;
	border: 0;
	border-right: 1px solid var(--f2-line);
	background: rgba(255, 255, 255, .012);
}

.f2-server-metrics div:last-child {
	border-right: 0;
}

.f2-server-pill.is-online {
	border-color: rgba(113, 146, 122, .6);
	background: rgba(56, 78, 62, .28);
	color: #9ebba4;
}

.f2-channel-board {
	border-color: var(--f2-line);
	background: rgba(5, 6, 4, .32);
}

.f2-channel-row {
	border-color: rgba(226, 210, 170, .08);
	background: rgba(255, 255, 255, .016);
}

.f2-channel-load i {
	background: linear-gradient(90deg, var(--f2-jade), var(--f2-gold));
}

.f2-channel-row em {
	color: #94b49b;
}

.f2-widget-title {
	padding: 20px 24px 17px;
	border-bottom-color: var(--f2-line);
	background: rgba(255, 255, 255, .012);
}

.f2-widget-title::before,
.f2-widget-title::after {
	display: none;
}

.f2-widget-title span {
	color: var(--f2-gold);
	font-size: .68rem;
	font-weight: 700;
}

.f2-widget-title span::before {
	width: 8px;
	height: 8px;
	border-color: rgba(199, 163, 90, .72);
	background: var(--f2-gold);
	box-shadow: none;
}

.f2-widget-title h3 {
	font-size: 1.62rem;
	color: var(--f2-ink);
}

.f2-support-widget {
	border-color: var(--f2-line);
}

.f2-support-widget .f2-widget-title span {
	color: var(--f2-gold);
}

.f2-support-widget .f2-link-slots a:first-child {
	border-color: rgba(113, 146, 122, .4);
	background: rgba(56, 78, 62, .2);
}

.f2-guide-grid {
	gap: 0;
	border: 1px solid var(--f2-line);
}

.f2-guide-grid article {
	border: 0;
	border-right: 1px solid var(--f2-line);
	background: rgba(255, 255, 255, .012);
}

.f2-guide-grid article:last-child {
	border-right: 0;
}

.f2-guide-grid article span {
	color: var(--f2-gold);
	font-family: var(--f2-serif);
}

.news-item {
	border-left: 2px solid rgba(199, 163, 90, .52);
}

.news-item:hover {
	border-color: rgba(199, 163, 90, .58);
	transform: none;
}

.f2-footer {
	border-top-color: var(--f2-line);
	background: #050604;
}

@media (max-width: 680px) {
	.f2-server-metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.f2-server-metrics div:nth-child(2) {
		border-right: 0;
	}

	.f2-server-metrics div:nth-child(-n + 2) {
		border-bottom: 1px solid var(--f2-line);
	}

	.f2-guide-grid {
		border: 0;
		gap: 10px;
	}

	.f2-guide-grid article {
		border: 1px solid var(--f2-line);
	}
}

/* Yore2 gilded jade edition */
:root {
	--f2-bg: #050706;
	--f2-panel: rgba(9, 16, 13, .93);
	--f2-panel-strong: rgba(12, 22, 18, .97);
	--f2-line: rgba(184, 148, 72, .26);
	--f2-line-strong: rgba(224, 198, 132, .58);
	--f2-gold: #c9a75d;
	--f2-jade: #3f8068;
	--f2-jade-bright: #79ad91;
	--f2-champagne: #ead9ad;
	--f2-ink: #f4efe3;
	--f2-muted: #aaa99d;
}

body {
	background:
		linear-gradient(180deg, rgba(5, 8, 7, .62), #050706 54%, #020403 100%),
		radial-gradient(circle at 18% 8%, rgba(63, 128, 104, .12), transparent 34%),
		var(--f2-bg);
}

.f2-header {
	background:
		linear-gradient(90deg, rgba(63, 128, 104, .08), transparent 28%, transparent 72%, rgba(201, 167, 93, .055)),
		rgba(5, 9, 7, .95);
}

.f2-hero::before {
	background:
		linear-gradient(90deg, rgba(3, 7, 5, .94), rgba(5, 10, 8, .38) 48%, rgba(3, 6, 5, .78)),
		linear-gradient(180deg, rgba(63, 128, 104, .09), transparent 42%);
}

.f2-account-panel,
.f2-widget,
.f2-server-status,
.f2-content-panel,
.panel-section,
.f2-download-card,
.f2-login-page,
.f2-register-layout,
.f2-recovery-page,
.f2-new-player-guide,
.news-item {
	border-color: rgba(201, 167, 93, .28);
	background:
		linear-gradient(145deg, rgba(63, 128, 104, .075), transparent 38%),
		linear-gradient(180deg, rgba(234, 217, 173, .02), transparent 26%),
		rgba(8, 14, 11, .93);
}

.f2-account-panel {
	border-color: rgba(201, 167, 93, .38);
	background:
		radial-gradient(circle at 86% 10%, rgba(63, 128, 104, .15), transparent 34%),
		linear-gradient(145deg, rgba(201, 167, 93, .035), transparent 42%),
		rgba(8, 15, 12, .95);
}

.f2-btn,
.f2-login-form button,
.btn,
.btn-login,
.f2-panel-links a {
	background: linear-gradient(180deg, rgba(15, 28, 22, .98), rgba(6, 11, 9, .98));
}

.f2-btn-primary,
.f2-login-form button,
.btn-login {
	border-color: #e7d39e;
	background: linear-gradient(180deg, #dfc77f, #bd9646);
	color: #07100c;
}

.f2-btn:hover,
.f2-login-form button:hover,
.btn:hover,
.btn-login:hover,
.f2-panel-links a:hover {
	border-color: rgba(121, 173, 145, .82);
	background: linear-gradient(180deg, rgba(25, 49, 38, .98), rgba(9, 18, 14, .98));
	color: var(--f2-champagne);
}

.f2-btn-primary:hover,
.f2-login-form button:hover,
.btn-login:hover {
	border-color: #f0dfb4;
	background: linear-gradient(180deg, #ead99f, #c8a352);
	color: #07100c;
}

.f2-server-pill.is-online,
.f2-support-widget .f2-link-slots a:first-child {
	border-color: rgba(121, 173, 145, .58);
	background: rgba(34, 79, 60, .34);
	color: #a9d2b8;
}

.f2-widget-title,
.f2-server-status__head,
.f2-channel-board,
.f2-guide-grid {
	border-color: rgba(201, 167, 93, .24);
}

.f2-widget-title {
	background: linear-gradient(90deg, rgba(63, 128, 104, .075), transparent 72%);
}

.f2-channel-row,
.f2-guide-grid article {
	background: rgba(63, 128, 104, .035);
}

.f2-channel-load i {
	background: linear-gradient(90deg, #3f8068, #79ad91 48%, #c9a75d);
}

.f2-footer {
	background: #030604;
}
