html, body { margin: 0; background: #0b0810; color: #f3eef5; }
body {
	font: 15px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	background:
		radial-gradient(900px 500px at 88% -10%, rgba(255,128,255,0.10), transparent 60%),
		radial-gradient(700px 480px at -5% 110%, rgba(255,128,255,0.06), transparent 60%),
		#0b0810;
}
* { box-sizing: border-box; }

a { color: inherit; text-decoration: none; }
a:hover { color: #ff80ff; }
::selection { background: #ff80ff; color: #110a14; }

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 40px;
	border-bottom: 1px solid #1f1a25;
}
.brand { font-weight: 700; font-size: 16px; letter-spacing: -0.4px; }
.brand:hover { color: inherit; }
.brand .tld {
	background: linear-gradient(120deg, #fff, #ff80ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 22px; font-size: 14px; }
.nav ul a { color: #8e8896; }
.nav ul a:hover { color: #f3eef5; }

main { max-width: 1080px; margin: 0 auto; padding: 50px 40px 80px; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: #ff80ff;
	margin-bottom: 16px;
}

h1.display {
	font: italic 700 clamp(48px, 9vw, 96px)/0.92 "Times New Roman", serif;
	letter-spacing: -3.5px;
	margin: 0 0 18px;
}
h1.display em { font-weight: 400; color: #8e8896; }

.kicker { font-size: 17px; color: #8e8896; max-width: 560px; margin: 0 0 56px; }

.hero {
	min-height: calc(100vh - 80px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 60px 24px 100px;
	position: relative;
}
.hero .wordmark {
	font: italic 700 clamp(72px, 16vw, 200px)/1.05 "Times New Roman", serif;
	letter-spacing: -3px;
	background: linear-gradient(120deg, #fff 0%, #ff80ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 0 80px rgba(255,128,255,0.25);
	margin: 0;
	padding: 0.1em 0.2em 0.3em;
	user-select: none;
}
.hero .tagline { margin-top: 18px; font-size: 17px; color: #8e8896; max-width: 460px; }
.hero .actions { margin-top: 44px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero .meta {
	position: absolute;
	bottom: 28px; left: 0; right: 0;
	font: 12px ui-monospace, "SF Mono", Menlo, monospace;
	letter-spacing: 1px;
	color: #8e8896;
	text-align: center;
}
.hero .meta span { padding: 0 12px; }

.stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: #1f1a25;
	border: 1px solid #1f1a25;
	border-radius: 6px;
	overflow: hidden;
}
.stat { background: #14101a; padding: 32px; display: flex; flex-direction: column; justify-content: center; min-height: 180px; }
.stat .label {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #8e8896;
}
.stat .num {
	font: italic 700 clamp(56px, 10vw, 112px)/1 "Times New Roman", serif;
	letter-spacing: -4px;
	margin: 14px 0;
	font-variant-numeric: tabular-nums;
}
.stat.live .num { color: #ff80ff; }
.stat .sub { font-size: 13px; font-weight: 600; letter-spacing: 2px; color: #8e8896; text-transform: uppercase; }

.row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 28px;
}
.row .l, .row .r { font-size: 13px; color: #8e8896; }

hr.line { border: 0; border-top: 1px solid #1f1a25; margin: 40px 0 30px; }

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background: #ff80ff;
	color: #110a14;
	font: inherit;
	font-weight: 700;
	font-size: 14px;
	border: 1px solid #ff80ff;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.12s, transform 0.12s;
}
.btn:hover { background: #ffb3ff; transform: translateY(-1px); color: #110a14; }
.btn .arrow { transition: transform 0.15s; }
.btn:hover .arrow { transform: translateX(3px); }

.btn.ghost { background: transparent; color: #f3eef5; border-color: #1f1a25; }
.btn.ghost:hover { color: #ff80ff; border-color: #ff80ff; background: transparent; }

.foot {
	max-width: 1080px;
	margin: 0 auto;
	padding: 28px 40px;
	border-top: 1px solid #1f1a25;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: #8e8896;
}
.foot .badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	background: #14101a;
	border: 1px solid #1f1a25;
	border-radius: 100px;
	font: 11px ui-monospace, "SF Mono", Menlo, monospace;
}

.credits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	margin-top: 24px;
}
.crd {
	background: #14101a;
	border: 1px solid #1f1a25;
	border-radius: 8px;
	padding: 22px;
	transition: border-color 0.12s;
}
.crd:hover { border-color: #ff80ff; }
.crd .role {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #ff80ff;
	margin-bottom: 8px;
}
.crd .name { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 2px; }
.crd .handle { font: 13px ui-monospace, "SF Mono", Menlo, monospace; color: #8e8896; }

.who {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 4px 12px 4px 6px;
	background: #14101a;
	border: 1px solid #1f1a25;
	border-radius: 100px;
	font-size: 13px;
}
.who .av {
	width: 22px; height: 22px;
	border-radius: 50%;
	background: #ff80ff;
	color: #110a14;
	font-weight: 700;
	font-size: 11px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

input.search {
	width: 100%;
	background: #14101a;
	border: 1px solid #1f1a25;
	color: #f3eef5;
	padding: 12px 16px;
	border-radius: 6px;
	font: inherit;
	font-size: 14px;
}
input.search:focus { outline: none; border-color: #ff80ff; }
input.search::placeholder { color: #8e8896; }

.filter-row {
	display: flex;
	gap: 12px;
	align-items: center;
}

.filter-select {
	background: #14101a;
	border: 1px solid #1f1a25;
	color: #f3eef5;
	padding: 12px 16px;
	border-radius: 6px;
	font: inherit;
	font-size: 14px;
	cursor: pointer;
	min-width: 140px;
}
.filter-select:focus { outline: none; border-color: #ff80ff; }
.filter-select option { background: #14101a; }

table.players { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: 13.5px; }
table.players th, table.players td { text-align: left; padding: 13px 14px; border-bottom: 1px solid #1f1a25; }
table.players th {
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #8e8896;
}
table.players tr:hover td { background: rgba(255,128,255,0.04); }
table.players td.mono { font: 12px ui-monospace, "SF Mono", Menlo, monospace; color: #8e8896; word-break: break-all; }
table.players td.name { font-weight: 600; }

.empty {
	color: #8e8896;
	padding: 48px;
	text-align: center;
	font-size: 14px;
	border: 1px dashed #1f1a25;
	border-radius: 6px;
	margin-top: 16px;
}

.gate {
	max-width: 480px;
	margin: 50px auto 0;
	text-align: center;
	padding: 44px 32px;
	background: #14101a;
	border: 1px solid #1f1a25;
	border-radius: 8px;
}
.gate h1 { font-size: 32px; margin: 0 0 8px; letter-spacing: -1px; }
.gate p { color: #8e8896; margin: 0 0 24px; }
.gate .hint { font-size: 12px; color: #8e8896; margin-top: 18px; }

@media (max-width: 640px) {
	.nav { padding: 16px 20px; }
	main { padding: 48px 20px 80px; }
	.foot { padding: 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
	.stats { grid-template-columns: 1fr; }
	.hero .wordmark { letter-spacing: -2px; }
}

.status { font-size: 13px; white-space: nowrap; }
.dot {
	display: inline-block;
	width: 8px; height: 8px;
	border-radius: 50%;
	margin-right: 6px;
	vertical-align: middle;
	position: relative;
	top: -1px;
}
.dot.green { background: #34d399; box-shadow: 0 0 6px rgba(52,211,153,0.5); }
.dot.yellow { background: #fbbf24; box-shadow: 0 0 6px rgba(251,191,36,0.4); }
