:root {
	--f2-bg: #070504;
	--f2-panel: rgba(17, 12, 8, 0.88);
	--f2-panel-strong: rgba(27, 19, 12, 0.94);
	--f2-line: rgba(220, 164, 62, 0.28);
	--f2-line-strong: rgba(245, 211, 135, 0.48);
	--f2-gold: #f2cc73;
	--f2-orange: #f2962e;
	--f2-red: #a3352e;
	--f2-ink: #f8eddb;
	--f2-muted: #bcae98;
	--f2-ember: rgba(242, 150, 46, 0.34);
}

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-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(520px, 68vw);
	height: clamp(112px, 14vw, 160px);
	margin: 0 0 18px -10px;
	overflow: hidden;
	mask-image: linear-gradient(90deg, black 0%, black 82%, transparent 100%);
	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: 100%;
	object-fit: cover;
	object-position: center;
	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-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);
	gap: clamp(18px, 3vw, 34px);
	width: min(1180px, calc(100% - 32px));
	margin: 34px auto 78px;
}

.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;
}

.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 .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 {
		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;
	}

	.f2-logo-stage {
		width: min(360px, 94vw);
		height: 112px;
	}

	.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%;
	}
}
