/* nLauncher website — launcher-aligned dark theme with subtle MC traces. */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #0a0a0f;
  --surface-1: rgba(255,255,255,.03);
  --surface-2: rgba(255,255,255,.05);
  --surface-3: rgba(255,255,255,.08);
  --surface-4: rgba(255,255,255,.12);
  --border: rgba(255,255,255,.07);
  --border-hi: rgba(255,255,255,.14);
  --text: #e4e4e7;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;

  --accent-1: #60a5fa;
  --accent-2: #06b6d4;
  --accent-3: #2563eb;
  --accent-grad: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  --accent-soft: linear-gradient(135deg, rgba(37,99,235,.14), rgba(6,182,212,.10));

  --mc-grass: #86c05e;
  --mc-gold: #fbbf24;
  --mc-diamond: #5eead4;

  --ok: #86c05e;
  --warn: #fbbf24;
  --err: #f87171;

  --font-display: 'Syne', ui-sans-serif, system-ui;
  --font-body: 'Inter', ui-sans-serif, system-ui;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;

  --shadow-md: 0 8px 28px rgba(0,0,0,.30);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.45);
  --glow-cyan: 0 10px 32px rgba(6,182,212,.28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
::selection { background: rgba(96,165,250,.25); color: #fff; }

/* Ambient */
.bg-fx { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bg-fx::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 40%, transparent 100%);
}
.bg-fx::after {
  content: ""; position: absolute;
  width: 720px; height: 720px;
  top: -260px; left: -240px;
  background: radial-gradient(circle, rgba(37,99,235,.25), transparent 60%);
  filter: blur(80px);
}
.bg-fx .blob-2 {
  position: absolute;
  width: 720px; height: 720px;
  bottom: -300px; right: -220px;
  background: radial-gradient(circle, rgba(6,182,212,.18), transparent 60%);
  filter: blur(80px);
}

/* Nav with grass hairline */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,15,.72);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(134,192,94,.32);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  letter-spacing: -.01em;
  color: #fff;
}
.brand-mark { width: 30px; height: 30px; flex: none; border-radius: 7px; filter: drop-shadow(0 4px 10px rgba(37,99,235,.35)); }
.nav-links { display: flex; gap: 2px; flex: 1; }
.nav-links a {
  padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  position: relative;
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::before {
  content: "";
  position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; border-radius: 1px;
  background: var(--accent-grad);
}
.nav-right { display: flex; gap: 10px; align-items: center; margin-left: auto; }

/* Layout */
.page { flex: 1; padding: 56px 24px 96px; }
.container { max-width: 1200px; margin: 0 auto; }
.narrow { max-width: 440px; margin: 0 auto; }
.page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 8px;
}
.page-sub { color: var(--text-muted); max-width: 640px; margin-bottom: 40px; font-size: 15px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px;
  border-radius: var(--r-sm);
  font-weight: 600; font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: var(--glow-cyan);
}
.btn-primary:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 14px 40px rgba(6,182,212,.38); }
.btn-primary:active:not(:disabled) { transform: translateY(0); }
.btn-ghost {
  background: var(--surface-2);
  border-color: var(--border-hi);
  color: var(--text);
}
.btn-ghost:hover:not(:disabled) { background: var(--surface-3); border-color: rgba(255,255,255,.22); }
.btn-danger {
  background: rgba(248,113,113,.10);
  border-color: rgba(248,113,113,.35);
  color: #fca5a5;
}
.btn-danger:hover:not(:disabled) { background: rgba(248,113,113,.18); }
.btn-full { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* Cards */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  transition: border-color .18s ease, transform .18s ease;
}
.card:hover { border-color: var(--border-hi); }
.card-pad-lg { padding: 32px; }
.card-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: 6px;
}
.card-sub { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; }

/* Forms */
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field-label {
  font-size: 12px; font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .02em;
}
.field input, .field select, .field textarea {
  background: rgba(0,0,0,.3);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font-size: 14px;
  outline: none;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.field input:focus { border-color: var(--accent-1); background: rgba(0,0,0,.45); box-shadow: 0 0 0 4px rgba(96,165,250,.12); }
.field-helper { font-size: 12px; color: var(--text-dim); }
.field-error { color: var(--err); }

/* Seg tabs */
.seg {
  display: flex; gap: 2px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 4px;
  margin-bottom: 24px;
}
.seg button {
  flex: 1; padding: 9px 14px;
  border: none; background: transparent;
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.seg button:hover { color: var(--text); }
.seg button.active { background: var(--surface-3); color: #fff; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
  padding: 32px 0 64px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.04;
  letter-spacing: -.035em;
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 .grad {
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--border-hi);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  color: var(--text-muted);
  background: var(--surface-1);
  margin-bottom: 20px;
}
.hero-kicker::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--mc-grass);
  box-shadow: 0 0 8px rgba(134,192,94,.8);
}
.hero-art { display: grid; place-items: center; position: relative; }
/* Hero art: floating island PNG + glow beneath. */
.hero-art { position: relative; }
.hero-island {
  position: relative; z-index: 1;
  width: 115%;
  max-width: 720px;
  margin: 0 auto;
  margin-right: -8%;
  display: block;
  filter:
    drop-shadow(0 40px 60px rgba(0,0,0,.6))
    drop-shadow(0 0 70px rgba(96,165,250,.22));
  animation: islandBob 7s ease-in-out infinite;
}
.hero-island img { width: 100%; height: auto; display: block; }
.hero-island-glow {
  position: absolute;
  inset: auto 0 0 0;
  margin: auto;
  width: 70%;
  height: 80%;
  top: 10%;
  background: radial-gradient(ellipse 60% 55% at 50% 55%, rgba(96,165,250,.28), transparent 70%);
  filter: blur(10px);
  z-index: 0;
  animation: glowPulse 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes islandBob {
  0%, 100% { transform: translateY(0) rotate(-.6deg); }
  50%      { transform: translateY(-14px) rotate(.6deg); }
}
@keyframes glowPulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-island, .hero-island-glow { animation: none; }
}

.hero-stats {
  display: flex; gap: 36px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-stat-val {
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  color: #fff;
}
.hero-stat-label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 8px; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-art { order: -1; }
  .hero-island { max-width: 420px; width: 100%; margin-right: auto; }
  .hero-stats { justify-content: space-around; }
}

/* Feature grid */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.feat {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  transition: transform .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.feat::before {
  content: "";
  position: absolute; inset: -1px;
  background: var(--accent-soft);
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
  border-radius: inherit;
}
.feat:hover { transform: translateY(-2px); border-color: var(--border-hi); }
.feat:hover::before { opacity: 1; }
.feat-ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--surface-3);
  color: var(--accent-1);
  margin-bottom: 18px;
  position: relative;
}
.feat-ico svg { width: 22px; height: 22px; }
.feat h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 16px;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: 6px;
  position: relative;
}
.feat p { font-size: 13px; color: var(--text-muted); line-height: 1.55; position: relative; }

/* Servers */
.server-list { display: flex; flex-direction: column; gap: 12px; }
.server-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color .18s ease;
}
.server-card:hover { border-color: var(--border-hi); }
.server-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-sm);
  background: rgba(0,0,0,.4);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 24px;
  color: var(--accent-1);
  overflow: hidden;
  image-rendering: pixelated;
}
.server-icon img { width: 100%; height: 100%; display: block; image-rendering: pixelated; }
.server-body h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 17px;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 4px;
}
.server-meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--text-muted); font-size: 13px; align-items: center; }
.server-host {
  font-family: var(--font-mono); font-size: 12.5px;
  color: var(--mc-diamond);
  padding: 2px 8px; border-radius: 6px;
  background: rgba(94,234,212,.06);
  border: 1px solid rgba(94,234,212,.15);
}
.server-motd {
  color: var(--text-dim); font-size: 12px;
  margin-top: 6px; max-width: 560px;
  white-space: pre-wrap;
}
.server-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.tag {
  padding: 3px 9px;
  font-size: 11px; font-weight: 500;
  background: var(--surface-3);
  color: var(--text-muted);
  border-radius: 999px;
}
.server-status { text-align: right; min-width: 130px; }
.status-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600;
}
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-on { background: var(--mc-grass); box-shadow: 0 0 8px rgba(134,192,94,.7); }
.dot-off { background: var(--err); }
.status-on { color: var(--mc-grass); }
.status-off { color: var(--err); }
.players {
  font-family: var(--font-display);
  font-weight: 700; font-size: 26px;
  color: var(--mc-gold);
  letter-spacing: -.02em;
  margin-top: 4px;
}
.players-max { color: var(--text-dim); font-weight: 500; font-size: 13px; font-family: var(--font-body); }

/* Online page */
.online-count {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: 8px;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(134,192,94,.12);
  border: 1px solid rgba(134,192,94,.35);
  color: var(--mc-grass);
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  letter-spacing: -.01em;
  vertical-align: 4px;
}
.online-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
}
.online-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color .18s ease;
}
.online-card:hover { border-color: var(--border-hi); }
.online-avatar {
  width: 56px; height: 56px;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: rgba(0,0,0,.4);
  border: 1px solid var(--border);
  position: relative;
  flex: none;
}
.online-avatar img {
  position: absolute;
  width: 800%; height: 800%;
  left: -100%; top: -100%;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
}
.online-avatar-letter {
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  color: var(--accent-1);
}
.online-body { min-width: 0; }
.online-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 17px;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.online-name .verified {
  display: inline-grid; place-items: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-grad);
  font-size: 10px;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 0 10px rgba(6,182,212,.35);
}
.admin-badge {
  display: inline-flex; align-items: center;
  padding: 2px 7px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #1a0f00;
  background: linear-gradient(135deg, #fde68a 0%, #fbbf24 50%, #f59e0b 100%);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(251,191,36,.45), inset 0 1px 0 rgba(255,255,255,.35);
  text-shadow: 0 1px 0 rgba(255,255,255,.25);
}
.online-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 12px;
  align-items: center;
  margin-bottom: 2px;
}
.online-meta .tag-nlauncher { background: rgba(96,165,250,.15); color: var(--accent-1); }
.online-meta .tag-microsoft { background: rgba(16,185,129,.14); color: #34d399; }
.online-meta .tag-offline   { background: rgba(251,191,36,.14); color: var(--mc-gold); }
.online-game {
  margin-top: 10px;
  padding: 10px 12px;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 13px;
}
.online-server {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mc-diamond);
  margin-top: 6px;
  display: flex; align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.online-status { text-align: right; min-width: 110px; flex: none; }
.dot-idle { background: var(--text-dim); }
.status-idle { color: var(--text-muted); }
@media (max-width: 560px) {
  .online-card { grid-template-columns: auto 1fr; }
  .online-status { grid-column: 1 / -1; text-align: left; border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; }
}

/* Account */
.account-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 820px) { .account-grid { grid-template-columns: 1fr; } }

.avatar-lg {
  width: 144px; height: 144px;
  border-radius: 16px;
  background: rgba(0,0,0,.4);
  border: 1px solid var(--border-hi);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 56px;
  color: var(--accent-1);
  overflow: hidden;
  margin: 0 auto 16px;
}
.avatar-lg img {
  width: 100%; height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}

/* Skin gallery */
.skins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.skin-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 14px 16px;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease;
}
.skin-card:hover { transform: translateY(-3px); border-color: var(--border-hi); }

/* Face preview: <img> at 800% inside overflow:hidden parent, offset -100% -100%. */
.skin-preview {
  position: relative;
  width: 100%; aspect-ratio: 1;
  overflow: hidden;
  background: rgba(0,0,0,.4);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: 12px;
}
.skin-preview img {
  position: absolute;
  width: 800%; height: 800%;
  left: -100%; top: -100%;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
}
.skin-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: 2px;
  word-break: break-all;
}
.skin-meta {
  font-size: 11px; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 12px;
}

/* Footer */
.footer {
  padding: 28px 24px;
  color: var(--text-dim); font-size: 13px;
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: 80px;
}
.footer a { color: var(--text-muted); }
.footer a:hover { color: var(--accent-1); }
.footer .footer-disclaimer {
  color: var(--text-dim);
  font-size: 12px;
  margin-bottom: 8px;
  font-style: italic;
  opacity: .85;
}

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 24px;
  transform: translateX(-50%);
  background: rgba(20,22,30,.9);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-sm);
  padding: 12px 18px;
  font-size: 13px; font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  animation: toast-in .22s cubic-bezier(.4,0,.2,1);
}
.toast.err { border-color: rgba(248,113,113,.35); color: #fca5a5; }
.toast.ok { border-color: rgba(134,192,94,.35); color: var(--mc-grass); }
@keyframes toast-in { from { transform: translate(-50%, 14px); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }

/* Utils */
.mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.text-muted { color: var(--text-muted); } .text-dim { color: var(--text-dim); }
.grid { display: grid; gap: 16px; }
.flex { display: flex; gap: 16px; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.hidden { display: none !important; }

.fade-in > * { opacity: 0; transform: translateY(8px); animation: up .5s ease forwards; }
.fade-in > *:nth-child(1) { animation-delay: .04s; }
.fade-in > *:nth-child(2) { animation-delay: .12s; }
.fade-in > *:nth-child(3) { animation-delay: .20s; }
.fade-in > *:nth-child(4) { animation-delay: .28s; }
.fade-in > *:nth-child(5) { animation-delay: .36s; }
.fade-in > *:nth-child(6) { animation-delay: .44s; }
@keyframes up { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .server-card { grid-template-columns: auto 1fr; }
  .server-status { grid-column: 1 / -1; text-align: left; border-top: 1px solid var(--border); padding-top: 12px; }
}
