:root{
  color-scheme:dark;
  --bg:#090d14;
  --bg2:#0d131d;
  --panel:rgba(18,26,38,.78);
  --panel-solid:#121a26;
  --border:rgba(146,169,196,.14);
  --text:#f6f8fb;
  --muted:#8b99aa;
  --blue:#5aa7ff;
  --green:#4ee28b;
  --red:#ff6666;
  --amber:#f2c35d;
  --track:#1b2635;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at 10% -10%,rgba(54,124,255,.18),transparent 34rem),
    radial-gradient(circle at 92% 14%,rgba(44,217,141,.08),transparent 30rem),
    linear-gradient(180deg,var(--bg2),var(--bg));
  color:var(--text);
}
.bg-grid{
  position:fixed;inset:0;pointer-events:none;opacity:.18;
  background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(to bottom,black,transparent 78%);
}
.wrap{position:relative;width:min(1180px,calc(100% - 32px));margin:auto;padding:28px 0 34px}
.topbar{display:flex;justify-content:space-between;align-items:center;gap:20px;padding:4px 0 34px}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--text)}
.brand-mark{
  display:grid;place-items:center;width:42px;height:42px;border:1px solid rgba(90,167,255,.35);
  border-radius:12px;background:linear-gradient(145deg,rgba(90,167,255,.22),rgba(90,167,255,.06));font-weight:900;color:#cde5ff
}
.brand strong{display:block;font-size:16px}
.brand small{display:block;color:var(--muted);font-size:12px;margin-top:2px}
.overall,.service-badge{
  display:inline-flex;align-items:center;gap:9px;border:1px solid var(--border);background:rgba(16,23,34,.72);
  border-radius:999px;padding:9px 13px;font-size:13px;font-weight:800
}
.pulse-dot{width:9px;height:9px;border-radius:50%;background:var(--muted)}
.online{color:var(--green)!important}.offline{color:var(--red)!important}.checking{color:var(--muted)!important}
.overall.online .pulse-dot{background:var(--green);box-shadow:0 0 0 6px rgba(78,226,139,.08),0 0 22px rgba(78,226,139,.55)}
.overall.offline .pulse-dot{background:var(--red);box-shadow:0 0 0 6px rgba(255,102,102,.08),0 0 22px rgba(255,102,102,.4)}
.hero{
  min-height:360px;display:grid;grid-template-columns:1.35fr .65fr;gap:26px;align-items:center;
  border:1px solid var(--border);border-radius:30px;padding:44px;
  background:linear-gradient(135deg,rgba(18,27,41,.94),rgba(11,17,26,.86));
  overflow:hidden;position:relative
}
.hero:after{
  content:"";position:absolute;right:-120px;top:-160px;width:420px;height:420px;border-radius:50%;
  background:radial-gradient(circle,rgba(90,167,255,.18),transparent 65%);pointer-events:none
}
.kicker,.eyebrow{font-size:12px;font-weight:900;letter-spacing:.16em;color:var(--blue)}
.hero h1{font-size:clamp(42px,6vw,72px);line-height:.98;letter-spacing:-.055em;margin:12px 0 18px;max-width:720px}
.hero p{font-size:17px;color:var(--muted);max-width:650px;line-height:1.65;margin:0}
.address-row{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-top:28px}
.server-address{
  border:1px solid rgba(90,167,255,.26);background:rgba(90,167,255,.10);color:var(--text);
  border-radius:14px;padding:12px 14px;display:flex;gap:14px;align-items:center;font:inherit;font-weight:800;cursor:pointer
}
.server-address:hover{background:rgba(90,167,255,.16)}
.copy-label{font-size:10px;color:#8fc4ff;letter-spacing:.12em}
.updated{font-size:12px;color:var(--muted)}
.hero-orb{display:flex;justify-content:center}
.hero-state{text-align:center;display:flex;flex-direction:column;align-items:center;max-width:250px;z-index:1}
.state-ring{
  width:126px;height:126px;border-radius:50%;display:grid;place-items:center;margin-bottom:16px;
  border:1px solid rgba(255,255,255,.10);background:radial-gradient(circle,rgba(255,255,255,.045),rgba(255,255,255,.01));
  box-shadow:inset 0 0 40px rgba(255,255,255,.02)
}
.state-dot{width:48px;height:48px;border-radius:50%;background:var(--muted)}
.hero-state.online .state-dot{background:var(--green);box-shadow:0 0 42px rgba(78,226,139,.65)}
.hero-state.offline .state-dot{background:var(--red);box-shadow:0 0 42px rgba(255,102,102,.55)}
.hero-state strong{font-size:22px;letter-spacing:.14em}
.hero-state>span:last-child{font-size:12px;color:var(--muted);line-height:1.4;margin-top:8px;max-width:230px}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin:14px 0}
.metric,.panel{
  border:1px solid var(--border);background:var(--panel);backdrop-filter:blur(12px);border-radius:20px
}
.metric{padding:20px}
.metric>span{font-size:11px;color:var(--muted);letter-spacing:.12em;font-weight:800}
.metric strong{display:block;font-size:30px;letter-spacing:-.03em;margin:8px 0 4px}
.metric small{color:var(--muted);font-size:12px}
.content-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.panel{padding:24px}
.panel-head{display:flex;justify-content:space-between;align-items:flex-start;gap:12px;margin-bottom:20px}
.panel-head h2{margin:5px 0 0;font-size:24px;letter-spacing:-.025em}
.muted,.counter{color:var(--muted);font-size:12px}
.service-list{display:grid;gap:10px}
.service-row{display:grid;grid-template-columns:auto 1fr auto;gap:13px;align-items:center;padding:12px;border:1px solid var(--border);border-radius:15px;background:rgba(255,255,255,.018)}
.service-icon{width:38px;height:38px;border-radius:11px;display:grid;place-items:center;font-weight:900}
.cube{background:rgba(78,226,139,.10);color:var(--green)}
.voice{background:rgba(90,167,255,.10);color:var(--blue)}
.pack{background:rgba(242,195,93,.10);color:var(--amber)}
.service-info strong{display:block;font-size:14px}.service-info span{display:block;color:var(--muted);font-size:11px;margin-top:3px}
.service-badge{padding:6px 9px;font-size:11px}
.system-row{margin-bottom:18px}
.sys-label{display:flex;justify-content:space-between;gap:14px;font-size:13px;margin-bottom:8px}.sys-label span{color:var(--muted)}
.bar{height:10px;border-radius:99px;background:var(--track);overflow:hidden}
.bar i{display:block;height:100%;width:0;border-radius:inherit;background:linear-gradient(90deg,var(--blue),#85c1ff);transition:width .45s ease}
.system-mini{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:22px}
.system-mini>div{padding:13px;border:1px solid var(--border);border-radius:14px}.system-mini span{display:block;color:var(--muted);font-size:11px}.system-mini strong{display:block;margin-top:5px;font-size:15px}
.players-panel{margin-top:14px}
.player-list{display:flex;flex-wrap:wrap;gap:10px}
.player-chip{display:flex;align-items:center;gap:9px;padding:9px 12px;border:1px solid var(--border);background:rgba(255,255,255,.025);border-radius:999px;font-weight:750;font-size:13px}
.player-avatar{width:22px;height:22px;border-radius:6px;background:linear-gradient(145deg,#345,#182433);display:grid;place-items:center;font-size:10px;color:#bdd7f2}
.empty{color:var(--muted);font-size:13px;padding:6px 0}
footer{display:flex;justify-content:space-between;gap:16px;color:var(--muted);font-size:11px;padding:20px 4px 0}
@media(max-width:900px){
  .hero{grid-template-columns:1fr;padding:30px}.hero-orb{justify-content:flex-start}.state-ring{width:90px;height:90px}.state-dot{width:34px;height:34px}
  .stats-grid{grid-template-columns:1fr 1fr}.content-grid{grid-template-columns:1fr}
}
@media(max-width:560px){
  .wrap{width:min(100% - 20px,1180px);padding-top:16px}.topbar{align-items:flex-start}.overall{font-size:11px}
  .hero{border-radius:22px;padding:24px}.hero h1{font-size:42px}.hero p{font-size:15px}
  .stats-grid{grid-template-columns:1fr}.metric strong{font-size:26px}
  .panel{padding:18px}.service-row{grid-template-columns:auto 1fr}.service-badge{grid-column:2;justify-self:start}
  footer{flex-direction:column}
}
