:root {
  --bg: #0a0d14;
  --bg-soft: #0f1420;
  --card: #131a2a;
  --card-2: #182136;
  --line: #232e47;
  --text: #e8ecf6;
  --muted: #9aa7c0;
  --red: #ff4d5a;
  --red-deep: #d92d3c;
  --gold: #ffc94d;
  --green: #3ddc84;
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
a { color: var(--text); }
p a, li a { color: var(--gold); text-decoration-color: rgba(255, 201, 77, .4); }
p a:hover, li a:hover { text-decoration-color: var(--gold); }
code {
  font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  background: var(--card-2);
  padding: .1em .45em;
  border-radius: 6px;
  font-size: .92em;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 760px; }
.muted { color: var(--muted); }
.small { font-size: .85rem; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 13, 20, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
  text-decoration: none; letter-spacing: -.01em;
}
.brand em { color: var(--red); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 500; font-size: .95rem; }
.nav-links a:hover { color: var(--text); }
.nav-links .btn { color: var(--text); }

/* ---------- buttons & chips ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  padding: 11px 20px; border-radius: 10px;
  text-decoration: none; border: 1px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 77, 90, .28);
}
.btn-primary:hover { box-shadow: 0 6px 26px rgba(255, 77, 90, .45); }
.btn-outline { border-color: var(--line); background: var(--card); }
.btn-outline:hover { border-color: var(--muted); }
.btn-ghost { color: var(--muted); }
.btn-ghost:hover { color: var(--text); }
.btn-small { padding: 7px 14px; font-size: .85rem; border-radius: 8px; }
.btn-block { width: 100%; text-align: center; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600;
  background: var(--card-2); color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 11px; border-radius: 999px;
}
.chip-gold { color: #1a1408; background: linear-gradient(135deg, var(--gold), #ffaf3d); border: none; }
.chip-green { color: #06281a; background: var(--green); border: none; }
.chip-dim { color: var(--muted); }
.chip-live { background: var(--bg-soft); }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot.on { background: var(--green); box-shadow: 0 0 0 0 rgba(61, 220, 132, .6); animation: pulse 2s infinite; }
.dot.off { background: #5b6785; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 220, 132, .5); }
  70% { box-shadow: 0 0 0 7px rgba(61, 220, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); }
}

/* ---------- hero ---------- */
.hero {
  padding: 84px 0 60px;
  background:
    radial-gradient(700px 340px at 15% -10%, rgba(255, 77, 90, .16), transparent 60%),
    radial-gradient(700px 340px at 85% -10%, rgba(255, 201, 77, .10), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.kicker {
  color: var(--gold); font-weight: 600; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.3rem); font-weight: 800; letter-spacing: -.02em; }
.lede { color: var(--muted); font-size: 1.1rem; max-width: 640px; margin-top: 14px; }
.hero-cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* ---------- featured card ---------- */
.featured { margin-top: -34px; }
.featured-card {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid rgba(255, 201, 77, .35);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45), 0 0 0 4px rgba(255, 201, 77, .05);
}
.featured-card { display: grid; grid-template-columns: 1fr 468px; gap: 28px; align-items: start; }
.featured-main { min-width: 0; }
.featured-side { display: flex; flex-direction: column; gap: 10px; }
.featured-side .banner { margin-top: 0; }
.centered { text-align: center; }

/* gold click-to-copy, the primary CTA on the #1 card */
.ip-copy {
  display: block; width: 100%; cursor: pointer;
  font-family: var(--font-body);
  background: linear-gradient(135deg, #ffd76b, #f0a93a);
  color: #241a05; border: none;
  border-radius: 10px; padding: 10px 14px;
  box-shadow: 0 4px 18px rgba(255, 175, 61, .3);
  transition: transform .12s ease, box-shadow .12s ease;
}
.ip-copy:hover { box-shadow: 0 6px 24px rgba(255, 175, 61, .5); transform: translateY(-1px); }
.ip-copy:active { transform: translateY(0); }
.ip-copy-label {
  display: block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; opacity: .72;
}
.ip-copy-value {
  display: block; font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  font-size: 1.08rem; font-weight: 700; margin-top: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ip-copy.copied { background: linear-gradient(135deg, #5ff0a2, #23c06b); }

.featured-head { display: flex; gap: 18px; align-items: flex-start; }
.featured-name { font-size: 1.7rem; margin: 2px 0 4px; }
.featured-name a { text-decoration: none; }
.featured-tag { color: var(--muted); }
.featured-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

.rank-badge {
  min-width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
  background: var(--card-2); border: 1px solid var(--line); border-radius: 12px;
}
.rank-1 { background: linear-gradient(135deg, var(--gold), #ff9f2e); color: #241a05; border: none; }

.banner {
  display: block; max-width: 100%; height: auto;
  border-radius: 8px; border: 1px solid var(--line);
  margin-top: 16px; image-rendering: pixelated;
}
.banner-link { display: inline-block; text-decoration: none; }
.wiki-join { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 18px; }
.wiki-join .banner { margin-top: 0; }
.wiki-join .ip-copy { width: auto; min-width: 260px; }
.banner-link:hover .banner { border-color: var(--gold); }

.ip-row { display: flex; align-items: center; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.ip { font-size: 1rem; padding: 8px 14px; border: 1px dashed var(--line); }
.ip-big .ip { font-size: 1.15rem; }
.copy.copied { background: var(--green); color: #06281a; border-color: transparent; }
/* The #1 server's copy button, the one action we most want clicked. */
.copy-gold {
  background: linear-gradient(135deg, #ffd76b, #f0a93a);
  color: #241a05; border-color: transparent; font-weight: 700;
  box-shadow: 0 3px 14px rgba(255, 175, 61, .28);
}
.copy-gold:hover { box-shadow: 0 5px 20px rgba(255, 175, 61, .5); }

/* Free-rank hook under the #1 card's buttons. */
.perk-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; cursor: pointer; font-family: var(--font-body);
  background: rgba(255, 201, 77, .09);
  border: 1px solid rgba(255, 201, 77, .38);
  border-radius: 9px; padding: 9px 14px;
  transition: background .12s ease, border-color .12s ease;
}
.perk-bar:hover { background: rgba(255, 201, 77, .16); border-color: rgba(255, 201, 77, .6); }
.perk-label { color: var(--gold); font-weight: 700; font-size: .88rem; }
.perk-action {
  color: var(--text); font-size: .88rem; font-weight: 700;
  font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  white-space: nowrap;
}
.perk-bar.copied { background: rgba(61, 220, 132, .16); border-color: var(--green); }
.perk-bar.copied .perk-action { color: var(--green); }

.server-icon-lg { width: 48px; height: 48px; border-radius: 10px; vertical-align: middle; margin-right: 10px; }
.server-icon {
  width: 32px; height: 32px; border-radius: 7px;
  image-rendering: pixelated; flex-shrink: 0;
  border: 1px solid var(--line); background: var(--bg-soft);
}

/* ---------- list cards ---------- */
.list { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.card {
  display: flex; gap: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: border-color .15s ease, transform .15s ease;
}
.card:hover { border-color: #33415f; transform: translateY(-2px); }

/* The #1 slot: a clean gold outline, nothing flashy. */
.card-first {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border-color: rgba(255, 201, 77, .5);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .4);
}
.card-first:hover { border-color: rgba(255, 201, 77, .75); }
.card-first .card-h { font-size: 1.45rem; }
.card-first .rank-badge { min-width: 60px; height: 60px; font-size: 1.3rem; }
.card-first .ip { font-size: 1.05rem; }
.card-main { flex: 1; min-width: 0; }
.card-title { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.card-title h3 { font-size: 1.2rem; }
.h-meta { display: block; font-family: var(--font-body); font-weight: 400; font-size: .78rem; color: var(--muted); margin-top: 2px; }
.card-title a { text-decoration: none; }
/* Banners are authored at exactly 468x60. Give the column that width so
   they render 1:1 and stay sharp instead of being resampled. */
.card-side {
  display: flex; flex-direction: column; align-items: stretch; justify-content: center;
  gap: 10px; width: 468px; flex-shrink: 0;
}
.card-side .banner { margin-top: 0; }
.side-actions { display: flex; gap: 8px; }
.side-actions .btn { flex: 1; text-align: center; }
.banner-featured { margin-top: 20px; }
.pitch {
  margin-top: 12px; padding: 10px 14px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 201, 77, .06);
  border-radius: 0 8px 8px 0;
  font-size: .9rem; color: #d6dceb;
}
.card-cta { align-items: center; margin-top: 10px; background: var(--bg-soft); }

/* ---------- server page ---------- */
.crumbs { margin: 26px 0 18px; color: var(--muted); font-size: .9rem; }
.crumbs a { color: var(--muted); }
.server-hero {
  display: grid; grid-template-columns: 1fr 230px; gap: 28px;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px;
}
.server-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
.statbox {
  display: flex; flex-direction: column; gap: 14px; justify-content: center;
  border-left: 1px solid var(--line); padding-left: 28px;
}
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; display: block; }
.stat-label { color: var(--muted); font-size: .82rem; }

.section-title { margin: 40px 0 18px; font-size: 1.4rem; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.feature {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: 18px;
}
.feature h3 { font-size: 1rem; margin-bottom: 6px; }
.feature p { font-size: .9rem; }

/* ---------- prose ---------- */
.prose { margin: 40px 0; max-width: 720px; }
.prose h1 { font-size: clamp(1.7rem, 4vw, 2.3rem); margin-bottom: 10px; }
.prose h2 { margin: 30px 0 12px; font-size: 1.35rem; }
.prose p, .prose li { color: #c6cfdf; }
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 14px; }
.prose li { margin-bottom: 6px; }
.prose details {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 10px; padding: 14px 18px; margin-bottom: 10px;
}
.prose summary { cursor: pointer; font-weight: 600; color: var(--text); }
.prose details p { margin: 10px 0 0; }
.article { margin-top: 26px; }
.seo-block { border-top: 1px solid var(--line); padding-top: 34px; margin-top: 56px; }
.small-print { font-size: .92rem; }

/* ---------- landing / faq / wiki ---------- */
.landing-hero { padding: 20px 0 10px; }
.landing-hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
.card-h { font-size: 1.2rem; }
.card-h a { text-decoration: none; }

.toc { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 30px; }
.toc a {
  font-size: .85rem; font-weight: 600; text-decoration: none;
  background: var(--card); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px; color: var(--muted);
}
.toc a:hover { color: var(--text); border-color: var(--muted); }

.link-wall { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 8px; }
.link-wall li { margin: 0; }
.link-wall a { display: block; padding: 9px 12px; background: var(--card); border: 1px solid var(--line); border-radius: 8px; text-decoration: none; font-size: .9rem; color: var(--muted); }
.link-wall a:hover { color: var(--text); border-color: var(--muted); }

.table-scroll { overflow-x: auto; margin-bottom: 18px; }
.table-scroll table { border-collapse: collapse; width: 100%; min-width: 640px; font-size: .88rem; }
.table-scroll th, .table-scroll td { border: 1px solid var(--line); padding: 8px 11px; text-align: left; vertical-align: top; }
.table-scroll th { background: var(--card-2); font-family: var(--font-head); font-size: .82rem; }
.table-scroll td { color: #c6cfdf; }

/* ---------- wiki ---------- */
.wiki-layout { display: grid; grid-template-columns: 230px 1fr; gap: 34px; align-items: start; }
.wiki-content { min-width: 0; }
.wiki-sidebar {
  position: sticky; top: 82px; align-self: start;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 16px; margin-top: 26px;
  max-height: calc(100vh - 110px); overflow-y: auto;
}
.wiki-home {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: .95rem; text-decoration: none; margin-bottom: 16px; color: var(--gold);
}
.wiki-group { margin-bottom: 18px; }
.wiki-group h4 {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); margin-bottom: 8px;
}
.wiki-sidebar a:not(.wiki-home) {
  display: block; font-size: .88rem; color: var(--muted);
  text-decoration: none; padding: 5px 8px; border-radius: 6px; margin-bottom: 1px;
}
.wiki-sidebar a:not(.wiki-home):hover { color: var(--text); background: var(--card-2); }
.wiki-sidebar a.active {
  color: var(--text); background: var(--card-2);
  box-shadow: inset 2px 0 0 var(--gold);
}
.wiki-nav { display: flex; justify-content: space-between; gap: 14px; margin: 34px 0; }
.wiki-nav-link {
  display: flex; flex-direction: column; gap: 2px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 16px; text-decoration: none;
  font-weight: 600; font-size: .92rem; max-width: 48%;
}
.wiki-nav-link:hover { border-color: var(--muted); }
.wiki-nav-next { text-align: right; }
@media (max-width: 900px) {
  .wiki-layout { grid-template-columns: 1fr; }
  .wiki-sidebar { position: static; max-height: none; }
}

/* Quiet mid-list reminder. Deliberately understated: no card chrome, no
   button styling, so it reads as a note rather than an ad slot. */
.inline-note {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 12px 18px; margin: -4px 0 -4px;
  border-left: 2px solid rgba(255, 201, 77, .35);
  color: var(--muted); font-size: .89rem;
}
.inline-note-tag {
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: rgba(255, 201, 77, .75);
}
.inline-note p { margin: 0; flex: 1; min-width: 220px; }
.inline-note a { color: #c6cfdf; font-weight: 600; text-decoration: underline; text-decoration-color: rgba(255, 201, 77, .4); }
.inline-note a:hover { color: var(--text); text-decoration-color: var(--gold); }
.inline-note-copy {
  background: none; border: 1px dashed var(--line); color: var(--muted);
  font-family: ui-monospace, Consolas, monospace; font-size: .82rem;
  padding: 5px 11px; border-radius: 7px; cursor: pointer;
}
.inline-note-copy:hover { color: var(--text); border-color: var(--muted); }
.inline-note-copy.copied { color: var(--green); border-color: var(--green); border-style: solid; }

.prose figure { margin: 18px 0; }
.prose figure img { max-width: 100%; height: auto; border-radius: 10px; border: 1px solid var(--line); }
.prose figcaption { color: var(--muted); font-size: .82rem; margin-top: 7px; }

/* ---------- pagination ---------- */
.pager { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 30px 0 6px; flex-wrap: wrap; }
.pager-pages { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.pager-pages a, .pager-current {
  display: inline-block; min-width: 34px; text-align: center;
  padding: 6px 9px; border-radius: 8px; font-size: .88rem;
  text-decoration: none; border: 1px solid var(--line);
}
.pager-pages a { color: var(--muted); background: var(--card); }
.pager-pages a:hover { color: var(--text); border-color: var(--muted); }
.pager-current { background: var(--red); color: #fff; border-color: transparent; font-weight: 700; }
.card-lite .card-main .muted { font-size: .9rem; }

/* ---------- editor's pick promo strip ---------- */
.promo {
  display: flex; gap: 22px; align-items: center; flex-wrap: wrap;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid rgba(255, 201, 77, .32);
  border-radius: var(--radius);
  padding: 20px 22px; margin: 38px 0;
}
.promo-text { flex: 1; min-width: 260px; }
.promo-line { margin: 10px 0 14px; color: #c6cfdf; font-size: .95rem; }
.promo-line a { color: var(--gold); font-weight: 600; text-decoration: none; }
.promo-line a:hover { text-decoration: underline; }
.promo-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.promo .banner { margin-top: 0; }

/* ---------- status + tracker ---------- */
.status-table { border-collapse: collapse; width: 100%; min-width: 780px; font-size: .92rem; }
.status-table th, .status-table td { border-bottom: 1px solid var(--line); padding: 11px 13px; text-align: left; }
.status-table th { font-family: var(--font-head); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.status-table tbody tr:hover { background: var(--card); }
.status-table a { text-decoration: none; font-weight: 600; }
.rank-cell { font-family: var(--font-head); font-weight: 700; color: var(--muted); }
.status-pill {
  display: inline-block; font-size: .76rem; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
}
.status-pill.up { background: rgba(61, 220, 132, .14); color: var(--green); }
.status-pill.down { background: rgba(255, 77, 90, .14); color: var(--red); }

.tracker-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.tracker-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px;
}
.tracker-top { border-color: rgba(255, 201, 77, .4); background: linear-gradient(180deg, var(--card-2), var(--card)); }
.tracker-head { display: flex; align-items: center; gap: 16px; }
.tracker-title { flex: 1; min-width: 0; }
.tracker-title h2 { font-size: 1.2rem; }
.tracker-title a { text-decoration: none; }
.tracker-now { text-align: right; }
.chart-wrap { margin: 16px 0 4px; }
.chart { display: block; width: 100%; height: 130px; }
.chart-empty { margin: 16px 0; }
.tracker-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line);
}
.tracker-stats > div { text-align: center; }
.tracker-stat { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; }

/* ---------- forms ---------- */
.vote-box {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; margin-top: 10px;
}
.vote-box h1 { font-size: 1.7rem; }
form { margin-top: 22px; }
label { display: block; font-weight: 600; font-size: .9rem; margin: 16px 0 6px; }
input, textarea {
  width: 100%;
  background: var(--bg-soft); color: var(--text);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; font-size: 1rem; font-family: var(--font-body);
}
input:focus, textarea:focus { outline: 2px solid rgba(255, 77, 90, .5); border-color: transparent; }
form .btn { margin-top: 20px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }
.vote-result { margin-top: 14px; font-weight: 600; min-height: 1.4em; }
.vote-result.ok { color: var(--green); }
.vote-result.err { color: var(--red); }
.cf-turnstile { margin-top: 16px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); margin-top: 70px; background: var(--bg-soft); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px;
  padding: 44px 20px 24px;
}
.footer h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; }
.footer a { display: block; color: var(--muted); text-decoration: none; font-size: .92rem; margin-bottom: 8px; }
.footer a:hover { color: var(--text); }
.brand-footer { font-size: 1rem; margin-bottom: 10px; }
.footer-bottom { padding: 0 20px 30px; }

.center-block { text-align: center; padding: 90px 20px; }
.big404 { font-size: 6rem; font-family: var(--font-head); color: var(--red); }
.center-block .btn { margin-top: 24px; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .server-hero { grid-template-columns: 1fr; }
  .statbox { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 18px; flex-direction: row; gap: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1020px) {
  .card { flex-wrap: wrap; }
  .card-side { width: 100%; }
  .card-side .banner, .featured-side .banner { width: 100%; }
  .featured-card { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .card { flex-direction: column; }
  .rank-badge { min-width: 42px; height: 42px; font-size: 1rem; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 60px 0 50px; }
  .featured-card { padding: 20px; }
}
