:root {
	--bg: #060b16;
	--panel: #101528;
	--panel-strong: #0c1020;
	--muted: #b3b8c6;
	--text: #fbfbfd;
	--accent: #ff9436;
	--accent-strong: #ffb15f;
	--stroke: #1c2235;
	--shadow: 0 14px 44px rgba(0, 0, 0, 0.36);
	--radius: 14px;
	--hero-bg-a: #191629;
	--hero-bg-b: #13101d;
	--hero-bg-deep: #0a0713;
	--hero-glow: #22192f;
	--glow-a: rgba(72, 129, 255, 0.26); /* cobalt */
	--glow-b: rgba(66, 109, 204, 0.22); /* deep blue */
	--glow-c: rgba(28, 196, 206, 0.2); /* teal */
	--glow-d: rgba(255, 158, 92, 0.15); /* soft amber */
}
* { box-sizing: border-box; }
body {
	margin: 0;
	font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background:
		radial-gradient(135% 95% at 50% 32%, var(--hero-bg-a) 0%, rgba(19, 16, 29, 0.92) 44%, var(--hero-bg-b) 60%, var(--hero-bg-deep) 100%);
	background-color: var(--hero-bg-deep);
	color: var(--text);
	min-height: 100vh;
	scroll-behavior: smooth;
	position: relative;
	overflow-x: hidden;
}
body::before {
	content: '';
	position: fixed;
	top: -55%; left: -55%; right: -55%; bottom: -55%;
	background:
		radial-gradient(circle at 24% 28%, rgba(34, 25, 47, 0.9) 0%, transparent 58%),
		radial-gradient(circle at 78% 22%, rgba(34, 25, 47, 0.7) 0%, transparent 58%),
		radial-gradient(circle at 50% 58%, rgba(34, 25, 47, 0.65) 0%, transparent 62%),
		radial-gradient(circle at 52% 46%, rgba(255, 148, 54, 0.08) 0%, transparent 62%);
	background-repeat: no-repeat;
	background-blend-mode: screen;
	opacity: 0.88;
	z-index: -1;
	transform: scale(1.32);
	transform-origin: center;
	animation: orbitGlows 56s linear infinite;
	will-change: transform;
}

@keyframes orbitGlows {
	0% { transform: scale(1.32) rotate(0deg); }
	25% { transform: scale(1.33) rotate(90deg); }
	50% { transform: scale(1.34) rotate(180deg); }
	75% { transform: scale(1.33) rotate(270deg); }
	100% { transform: scale(1.32) rotate(360deg); }
}
a { color: inherit; text-decoration: none; }
.shell { max-width: 1220px; margin: 0 auto; padding: 28px 22px 70px; }

header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 18px;
	background: rgba(18, 15, 22, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 14px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
	position: sticky;
	top: 14px;
	z-index: 10;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; display: block; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-text { line-height: 1.05; }
.brand-text strong { display: block; letter-spacing: 0.35px; font-size: 1.2rem; }

.header-actions { display: flex; align-items: center; gap: 18px; }
nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
nav a { color: var(--muted); font-weight: 700; font-size: 0.96rem; }

.cta {
	padding: 11px 18px;
	border-radius: 999px;
	background: linear-gradient(120deg, var(--accent), var(--accent-strong));
	color: #0c0f15;
	font-weight: 800;
	letter-spacing: 0.2px;
	border: none;
	cursor: pointer;
	box-shadow: 0 0 26px rgba(255, 154, 61, 0.32);
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.cta:hover {
	transform: translateY(-1px) scale(1.02);
	box-shadow: 0 0 32px rgba(255, 154, 61, 0.4);
}

.cta:active {
	transform: translateY(0) scale(0.97);
	box-shadow: 0 0 16px rgba(255, 154, 61, 0.28);
	filter: brightness(0.96);
}

.cta:focus-visible {
	outline: 2px solid rgba(255, 148, 54, 0.6);
	outline-offset: 2px;
}

main { margin-top: 32px; display: grid; gap: 144px; }
section { display: grid; gap: 22px; }

/* Soft lift on cards */
.stats-card,
.promo,
.discord-panel,
.story-card,
.podium-card,
.metric-card {
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
	will-change: transform;
}

.stats-card:hover,
.promo:hover,
.discord-panel:hover,
.story-card:hover,
.podium-card:hover,
.metric-card:hover {
	transform: scale(1.01);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
	border-color: rgba(255, 255, 255, 0.08);
}

.site-footer {
	margin-top: 48px;
	padding: 16px 0 6px;
	color: var(--muted);
	font-size: 0.95rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	text-align: center;
}

.leaderboard {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}
.leaderboard li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	background: linear-gradient(140deg, rgba(126, 95, 255, 0.08), rgba(19, 16, 28, 0.8));
	font-weight: 700;
}
.leaderboard .label { color: #ffe9d6; }
.leaderboard .value { color: #ffe9d6; font-variant-numeric: tabular-nums; font-weight: 700; white-space: nowrap; font-size: 0.97rem; }
.stats-card { border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 18px; background: #181525; box-shadow: 0 12px 32px rgba(0,0,0,0.24); display: grid; gap: 14px; }

.stats-layout { display: grid; gap: 14px; }

.podium {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
	align-items: end;
}

.podium-card {
	border-radius: 14px;
	padding: 18px 14px 24px;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
	display: grid;
	gap: 10px;
	justify-items: center;
	position: relative;
	min-height: 220px;
}

.podium-card.rank-1 { background: linear-gradient(160deg, #ffdd80, #b8860b); border: 1px solid rgba(255, 221, 128, 0.6); min-height: 250px; }
.podium-card.rank-2 { background: linear-gradient(160deg, #d9dde4, #8f9aa8); border: 1px solid rgba(217, 221, 228, 0.55); min-height: 230px; }
.podium-card.rank-3 { background: linear-gradient(160deg, #d39b6a, #8b5a2b); border: 1px solid rgba(211, 155, 106, 0.55); min-height: 215px; }

.podium-stand {
	width: 80px;
	height: 80px;
	border-radius: 18px;
	background: rgba(12, 15, 21, 0.12);
	color: #0c0f15;
	font-weight: 900;
	font-size: 1.25rem;
	display: grid;
	place-items: center;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 6px 18px rgba(0,0,0,0.22);
}

.podium-card > * { position: relative; z-index: 1; }

.podium-stand.rank-1 { color: #3d2b00; }
.podium-stand.rank-2 { color: #2f343c; }
.podium-stand.rank-3 { color: #3a2614; }

.podium-name { font-weight: 800; color: #0c0f15; text-align: center; }
.podium-value { color: #0c0f15; font-weight: 700; text-align: center; font-size: 0.95rem; }

.hero {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	align-items: stretch;
}
.hero-card {
	background: linear-gradient(165deg, #191629 0%, #13101d 100%);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 18px;
	padding: 88px 85px 60px;
	min-height: 450px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
	position: relative;
	overflow: hidden;
}
.hero-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 24% 26%, rgba(255, 148, 54, 0.08), transparent 54%),
			radial-gradient(circle at 78% 18%, rgba(255, 105, 180, 0.07), transparent 52%);
	pointer-events: none;
}
.eyebrow { color: var(--accent); font-weight: 800; letter-spacing: 0.3px; margin-bottom: 10px; }
h1 { margin: 0 0 14px; font-size: clamp(2.25rem, 5vw, 3.2rem); line-height: 1.08; }
.lede { color: #e1e4ee; font-size: 1.03rem; line-height: 1.6; margin-bottom: 22px; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; }
.hero-actions .cta { padding: 30px 70px; font-size: 1.34rem; border-radius: 999px; box-shadow: 0 0 44px rgba(255, 154, 61, 0.5); min-width: 260px; display: inline-flex; align-items: center; justify-content: center; text-align: center; font-weight: 870; }

.discord-copy .cta { min-width: 0; width: fit-content; padding-inline: 20px; }
.hero-metrics { margin-top: 52px; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.metric-card { border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; padding: 12px 14px; background: rgba(255, 255, 255, 0.03); display: grid; gap: 6px; text-align: center; box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26); }
.metric-value { font-weight: 800; font-size: 1.3rem; color: #ffe9d6; }
.metric-label { color: #d4d7e3; font-size: 0.95rem; line-height: 1.35; }
.ghost {
	padding: 10px 15px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--text);
	background: rgba(255, 255, 255, 0.02);
	font-weight: 700;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.ghost:hover {
	transform: translateY(-1px) scale(1.02);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
	border-color: rgba(255, 255, 255, 0.16);
}

.ghost:active {
	transform: translateY(0) scale(0.97);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ghost:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.4);
	outline-offset: 2px;
}

.stat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px;
	margin-top: 18px;
}
.stat {
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 14px;
	background: linear-gradient(140deg, rgba(255, 148, 54, 0.14), rgba(255, 105, 180, 0.08));
	display: grid;
	gap: 4px;
}
.stat strong { font-size: 1.22rem; color: #ffe9d6; }
.stat span { color: #e4e6f1; font-size: 0.94rem; }

.promo {
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 22px;
	background: #181525;
	display: grid;
	gap: 12px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}
.promo-title { margin: 0; font-size: 1.35rem; }
.promo-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.promo-points li { display: flex; gap: 10px; align-items: flex-start; color: #e4e6f1; }
.promo-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: rgba(255, 148, 54, 0.2);
	color: #ffe9d6;
	font-weight: 800;
	font-size: 0.9rem;
}

.stats-title { margin: 0; font-size: 1.4rem; }
.stats-sub { margin: 6px 0 0; color: var(--muted); }
.stats-total { margin-top: 14px; padding: 14px 18px; border-radius: 14px; text-align: center; font-weight: 820; color: #0c0f15; background: linear-gradient(120deg, var(--accent), var(--accent-strong)); box-shadow: 0 0 32px rgba(255, 154, 61, 0.32); }

.discord-panel {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 18px;
	align-items: start;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 18px;
	background: #181525;
	box-shadow: 0 12px 32px rgba(0,0,0,0.24);
}
.discord-copy { display: grid; gap: 12px; }
.discord-panel h2 { margin: 0; font-size: 1.4rem; }
.discord-widget-wrap { display: flex; justify-content: center; }
.discord-widget-wrap iframe { border-radius: 12px; overflow: hidden; }

.comments { display: grid; gap: 18px; margin-top: 26px; padding: 18px; border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; background: #181525; box-shadow: 0 12px 32px rgba(0,0,0,0.24); }
.stories-header { display: grid; gap: 8px; }
.comments h2 { margin: 0; font-size: 1.45rem; }
.section-intro { margin: 0; color: #d4d7e3; line-height: 1.5; }
.stories-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.story-card { border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 14px; padding: 16px 16px 18px; background: linear-gradient(150deg, rgba(126, 95, 255, 0.08), rgba(19, 16, 28, 0.8)); box-shadow: 0 12px 28px rgba(0,0,0,0.28); display: grid; gap: 12px; }
.story-quote { margin: 0; color: #f2f3f8; line-height: 1.55; }
.author { display: flex; align-items: center; gap: 10px; color: #ffe9d6; font-weight: 700; }
.author-info h4 { margin: 0; font-size: 1rem; }

@media (max-width: 960px) {
	.stories-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
	header { position: static; }
	nav { width: 100%; justify-content: flex-start; }
	.shell { padding: 22px 18px 56px; }
	.stories-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }
}
