:root {
  --bg: #090c12;
  --bg-soft: #0e131e;
  --card: #141b2b;
  --card-2: #1a2337;
  --line: #263149;
  --line-soft: #1d2639;
  --text: #eaeef7;
  --muted: #a3b0c7;
  --red: #ff4d5a;
  --red-deep: #d92d3c;
  --gold: #ffc94d;
  --green: #3ddc84;
  --warn: #ffc94d;
  --accent: #ff4d5a;
  --accent-soft: #ffc94d;
  --accent-dim: rgba(255, 201, 77, .085);
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 14px;
  --shadow: 0 1px 0 rgba(255, 255, 255, .03) inset, 0 10px 30px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
[id] { scroll-margin-top: 80px; }

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

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.22; letter-spacing: -.01em; }
h1 { font-size: clamp(1.7rem, 4.4vw, 2.5rem); font-weight: 800; }
h2 { font-size: clamp(1.25rem, 2.6vw, 1.6rem); font-weight: 700; }
h3 { font-size: 1.08rem; font-weight: 700; }
a { color: var(--text); }
p a, li a, td a { color: var(--accent-soft); text-decoration-color: color-mix(in srgb, var(--accent-soft) 40%, transparent); }
p a:hover, li a:hover { text-decoration-color: var(--accent-soft); }

code, .ip {
  font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  background: var(--card-2);
  padding: .12em .45em;
  border-radius: 6px;
  font-size: .93em;
}

.wrap { max-width: 980px; margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 760px; }
.muted { color: var(--muted); }
.small { font-size: .86rem; }
.sep { color: var(--line); padding: 0 .15em; }
.warn { color: var(--warn); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--accent); color: #0b0f14;
  padding: 10px 16px; z-index: 100; font-weight: 700;
}
.skip:focus { left: 8px; top: 8px; }

.review-banner {
  background: var(--warn); color: #241a05; text-align: center;
  padding: 8px 16px; font-size: .85rem; font-weight: 600;
}
.review-banner code { background: rgba(0,0,0,.14); color: inherit; }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 15, 20, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 58px; flex-wrap: wrap; }
.brand {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  text-decoration: none;
}
.brand em { color: var(--accent); font-style: normal; }
.brand-footer { font-size: 1.05rem; margin-bottom: 10px; }
.nav-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 500; font-size: .93rem; }
.nav-links a:hover { color: var(--text); }
.nav-links a[aria-current="page"] { color: var(--text); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }

.hero {
  border-bottom: 1px solid var(--line); padding: 44px 0 34px; position: relative;
  background:
    radial-gradient(900px 340px at 12% -10%, rgba(255, 201, 77, .07), transparent 70%),
    radial-gradient(700px 300px at 88% -20%, rgba(255, 77, 90, .06), transparent 70%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}
.kicker {
  font-size: .78rem; letter-spacing: .09em; text-transform: uppercase;
  color: var(--accent-soft); font-weight: 700; margin-bottom: 12px;
}
.hero h1 { margin-bottom: 16px; max-width: 22ch; }
.answer { font-size: 1.08rem; max-width: 68ch; }
.hero .answer { border-left: 3px solid var(--accent); padding-left: 16px; }
.updated { margin-top: 16px; }

.byline {
  margin: 20px 0; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--card);
}
.byline-name { font-size: .93rem; }

.ranking-wrap { padding: 28px 0 8px; }
.ranking { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.ranking + .promo, .promo + .ranking { margin-top: 16px; }

.entry {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card); padding: 18px 20px;
  box-shadow: var(--shadow);
  transition: border-color .15s ease, transform .15s ease;
}
.entry:hover { border-color: color-mix(in srgb, var(--gold) 26%, var(--line)); }
.entry-first {
  border-color: rgba(255, 201, 77, .4);
  background:
    radial-gradient(600px 200px at 0% 0%, rgba(255, 201, 77, .09), transparent 65%),
    linear-gradient(180deg, rgba(255, 201, 77, .05), var(--card));
  box-shadow: 0 0 0 1px rgba(255, 201, 77, .1), 0 12px 34px rgba(0, 0, 0, .34);
}
.entry-num { color: var(--muted); margin-right: .3em; }
.entry-num-1 { color: var(--gold); }
.entry-body { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.entry-main { flex: 1; min-width: 300px; }
.entry-side { width: 468px; flex-shrink: 0; display: flex; flex-direction: column; gap: 10px; }
.server-icon { border-radius: 8px; flex-shrink: 0; }
.entry-head { display: flex; align-items: flex-start; gap: 12px; }
.entry-chips { display: flex; gap: 7px; margin-top: 6px; flex-wrap: wrap; align-items: center; }
.entry-title { flex: 1; min-width: 0; }
.perk-bar {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  width: 100%; cursor: pointer; text-align: left;
  background: linear-gradient(135deg, #ffd76b, #f0a93a); color: #241a05;
  border: none; border-radius: 10px; padding: 10px 14px;
  font-family: var(--font-body);
}
.perk-label { font-weight: 800; font-size: .92rem; }
.perk-action { font-family: ui-monospace, Consolas, monospace; font-size: .88rem; opacity: .82; }
.copy-gold { background: linear-gradient(135deg, #ffd76b, #f0a93a); color: #241a05; }
.entry-title h3 { font-size: 1.22rem; }
.entry-title h3 a { text-decoration: none; }
.entry-title h3 a:hover { text-decoration: underline; text-decoration-color: var(--accent); }
.entry-platforms { display: flex; gap: 7px; margin-top: 5px; flex-wrap: wrap; }
.flag {
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 5px; border: 1px solid var(--line); color: var(--muted);
}
.flag-java { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); color: var(--accent-soft); }
.flag-bedrock { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); color: var(--accent-soft); }

.entry-ip { display: flex; align-items: center; gap: 10px; margin: 14px 0 10px; flex-wrap: wrap; }
.entry-ip .ip { font-size: 1rem; padding: 7px 11px; border: 1px solid var(--line); }
.copy {
  background: var(--accent); color: #0b0f14; border: 0; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: .85rem;
  padding: 8px 14px; border-radius: 8px;
}
.copy:hover { background: var(--accent-soft); }
.copy.done { background: var(--card-2); color: var(--accent-soft); }

.entry-live { font-size: .93rem; color: var(--muted); margin-bottom: 12px; }
.live-badge {
  display: inline-block; font-weight: 700; color: var(--text);
  background: rgba(61, 220, 132, .1); border: 1px solid rgba(61, 220, 132, .3);
  padding: 2px 9px; border-radius: 6px; margin-right: 4px;
}
.live-badge::before {
  content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); margin-right: 6px; vertical-align: middle;
}
.live-average::before, .live-last-verified::before, .live-unverified::before { background: var(--muted); }
.live-average, .live-last-verified, .live-unverified { color: var(--muted); background: var(--card-2); }
.scope-note {
  display: inline-block; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted); border: 1px dashed var(--line); padding: 1px 6px; border-radius: 5px; margin-left: 4px;
}
.entry-copy { margin-bottom: 10px; }
.entry-facts {
  font-size: .88rem; color: var(--muted); border-top: 1px solid var(--line-soft);
  padding-top: 11px; margin-top: 12px;
}
.entry-out { font-size: .88rem; margin-top: 6px; }

.claim { margin-top: 14px; border-top: 1px solid var(--line-soft); padding-top: 10px; }
.claim summary { cursor: pointer; font-size: .86rem; color: var(--muted); }
.claim summary:hover { color: var(--text); }
.claim-body { padding-top: 14px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.badge-preview { max-width: 100%; height: auto; }
.embed-code {
  width: 100%; background: var(--bg-soft); color: var(--text); border: 1px solid var(--line);
  border-radius: 8px; padding: 10px; font-family: ui-monospace, Consolas, monospace; font-size: .78rem;
  resize: vertical;
}

.chip {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 6px; border: 1px solid var(--line); color: var(--muted);
}
.chip-accent, .chip-gold { color: #1a1408; background: linear-gradient(135deg, var(--gold), #ffaf3d); border: none; }
.chip-live { border-color: var(--line); }

.entry-rank-pick { color: var(--gold); }
.pick-note { margin-top: 7px; display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.row-pick td { background: var(--accent-dim); }

.feature-preview {
  background:
    radial-gradient(700px 240px at 0% 0%, rgba(255, 201, 77, .1), transparent 65%),
    linear-gradient(180deg, rgba(255, 201, 77, .05), var(--card));
  border: 1px solid rgba(255, 201, 77, .34);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.fp-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.fp-kicker {
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .11em; color: var(--accent-soft);
}
.fp-body { display: flex; gap: 26px; align-items: flex-start; flex-wrap: wrap; }
.fp-text { flex: 1; min-width: 280px; }
.fp-text h3 { font-size: 1.3rem; margin-bottom: 8px; }
.fp-text h3 a { text-decoration: none; }
.fp-text p { color: #c6cfdf; font-size: .94rem; margin-bottom: 12px; }
.fp-perks { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.fp-perks li { position: relative; padding-left: 20px; font-size: .88rem; color: var(--muted); }
.fp-perks li::before { content: '\2713'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.fp-perks code { font-size: .84em; }
.fp-side { width: 468px; flex-shrink: 0; display: flex; flex-direction: column; gap: 10px; }

.banner-link { display: inline-block; text-decoration: none; }
.banner { display: block; max-width: 100%; height: auto; border: 1px solid var(--line); border-radius: 8px; }
.banner-link:hover .banner { border-color: var(--accent); }
/* Our stand-in, not their artwork: flat, unlinked, no hover, sits back on the page. */
.banner-filler { border-radius: 4px; opacity: .72; }

.pick-strip {
  display: flex; gap: 26px; align-items: center; flex-wrap: wrap;
  background: var(--card); border: 1px solid rgba(255, 201, 77, .28);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius); padding: 18px 22px;
  box-shadow: var(--shadow);
}
.ps-lead { flex: 1; min-width: 250px; }
.ps-lead h3 { font-size: 1.2rem; margin: 8px 0 6px; }
.ps-lead h3 a { text-decoration: none; }
.ps-lead p { font-size: .9rem; }
.ps-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.ps-stats > div { text-align: center; }
.ps-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--accent-soft); }
.ps-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.ps-copy { width: 240px; flex-shrink: 0; }

.pick-cta {
  display: flex; gap: 30px; align-items: center; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(255, 201, 77, .08), rgba(255, 77, 90, .05));
  border: 1px solid rgba(255, 201, 77, .26);
  border-radius: var(--radius); padding: 24px 26px;
  box-shadow: var(--shadow);
}
.pc-text { flex: 1; min-width: 280px; }
.pc-text h3 { font-size: 1.22rem; margin: 8px 0 12px; }
.pc-text h3 a { color: var(--accent-soft); text-decoration: none; }
.pc-steps { margin: 0; padding-left: 20px; display: grid; gap: 7px; }
.pc-steps li { color: #c6cfdf; font-size: .92rem; }
.pc-actions { width: 300px; flex-shrink: 0; display: flex; flex-direction: column; gap: 10px; }

.ip-copy {
  display: block; width: 100%; cursor: pointer; text-align: left;
  font-family: var(--font-body);
  background: var(--accent); color: var(--bg); border: none;
  border-radius: 10px; padding: 10px 14px;
  box-shadow: 0 4px 18px color-mix(in srgb, var(--accent) 30%, transparent);
  transition: transform .12s ease, box-shadow .12s ease;
}
.ip-copy:hover { box-shadow: 0 6px 24px color-mix(in srgb, var(--accent) 48%, transparent); 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: .74;
}
.ip-copy-value {
  display: block; font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  font-size: 1.06rem; font-weight: 700; margin-top: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ip-copy.done { background: var(--accent-soft); }
.side-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.side-actions .btn { flex: 1 1 auto; min-width: 92px; text-align: center; white-space: nowrap; }
.stat-label { color: var(--muted); font-size: .8rem; }

.prose { padding: 34px 0; max-width: 72ch; }
.prose h2 {
  margin: 30px 0 12px; padding-bottom: 7px;
  border-bottom: 2px solid color-mix(in srgb, var(--gold) 70%, transparent);
  display: inline-block;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 20px 0 6px; }
.prose p, .prose ul, .prose ol, .prose table { margin-bottom: 14px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose .answer { border-left: 3px solid var(--accent); padding-left: 16px; margin-bottom: 20px; }

.sub-list { list-style: none; padding-left: 0; }
.sub-list li {
  padding: 10px 13px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--card); margin-bottom: 8px; font-size: .93rem;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  transition: border-color .15s ease;
}
.sub-list li:hover { border-color: color-mix(in srgb, var(--gold) 30%, var(--line)); }
.sub-list a { font-weight: 600; text-decoration: none; }
.sub-list a:hover { text-decoration: underline; }

.faq-item { border-bottom: 1px solid var(--line-soft); padding-bottom: 14px; margin-bottom: 14px; }
.faq-item:last-child { border-bottom: 0; }
.faq-item h3 { color: var(--text); margin-bottom: 6px; }

.table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.table th, .table td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); }
.table th { color: var(--accent-soft); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.table-scroll { overflow-x: auto; }

.crumbs { font-size: .82rem; color: var(--muted); margin: 22px 0 0; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--text); }

.tag-servers { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.tag-server {
  border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; background: var(--card);
}
.tag-server-pick { border-color: color-mix(in srgb, var(--gold) 45%, var(--line)); }
.tag-server-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tag-server-name { font-weight: 700; font-size: 1.02rem; text-decoration: none; }
.tag-server-line { margin: 6px 0 10px; color: var(--muted); font-size: .92rem; }

.tag-index { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 6px; }
.tag-index li { display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap; }

.search-form { display: flex; gap: 10px; margin: 0 0 22px; flex-wrap: wrap; }
.search-label { flex: 1 1 260px; }
.search-label input {
  width: 100%; padding: 11px 13px; border-radius: 8px; font: inherit;
  background: var(--card); border: 1px solid var(--line); color: var(--text);
}
.search-label input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.search-results { display: grid; gap: 8px; margin: 0 0 22px; }
.search-hit {
  display: grid; gap: 2px; padding: 11px 13px; border-radius: 8px; text-decoration: none;
  border: 1px solid var(--line); background: var(--card);
}
.search-hit:hover { border-color: var(--accent); }
.search-hit-name { font-weight: 650; }

.link-wall { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 16px; }

.phrasing-list { margin: 0; display: grid; gap: 0; }
.phrasing-list dt {
  color: var(--text); font-weight: 700; font-size: .95rem;
  border-top: 1px solid var(--line-soft); padding-top: 12px; margin-top: 12px;
}
.phrasing-list dt:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.phrasing-list dd { margin: 4px 0 0; color: var(--muted); font-size: .92rem; }
.prose pre {
  background: var(--card); border: 1px solid var(--line); border-radius: 8px;
  padding: 12px 14px; overflow-x: auto; font-size: .85rem; margin: 0 0 14px;
}
.prose pre code { background: none; border: 0; padding: 0; font-size: inherit; }
.notice {
  border: 1px solid color-mix(in srgb, var(--warn) 40%, var(--line));
  border-left: 3px solid var(--warn);
  background: color-mix(in srgb, var(--warn) 7%, var(--card));
  border-radius: var(--radius); padding: 14px 16px; font-size: .93rem;
}

.btn {
  display: inline-block; text-decoration: none; font-weight: 700; font-size: .9rem;
  padding: 10px 16px; border-radius: 9px;
}
.btn-outline { border: 1px solid var(--line); color: var(--muted); }
.btn-outline:hover { border-color: var(--gold); color: var(--text); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-deep); }
.btn-small { padding: 7px 12px; font-size: .84rem; }

.alt-pick {
  font-size: .84rem; color: var(--muted); margin: 0;
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap; line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, .13); border-radius: 9px;
  background: transparent; padding: 9px 12px;
}
.prose .alt-pick { margin: 22px 0; }
.alt-pick a { color: var(--gold); text-decoration: none; font-weight: 600; }
.alt-pick a:hover { text-decoration: underline; }
.alt-ip {
  background: var(--card-2); border: 1px solid var(--line);
  padding: 2px 7px; border-radius: 6px; font-size: .82rem; color: var(--text);
}
.alt-copy {
  background: none; cursor: pointer;
  border: 1px solid color-mix(in srgb, var(--gold) 45%, var(--line));
  border-radius: 6px; padding: 3px 9px;
  font-family: var(--font-body); font-size: .74rem; font-weight: 700;
  letter-spacing: .02em; color: var(--gold); white-space: nowrap;
}
.alt-copy:hover { border-color: var(--gold); background: rgba(255, 201, 77, .1); }
.alt-copy.done { border-color: var(--green); color: var(--green); background: rgba(61, 220, 132, .1); }

.wiki-wrap { display: flex; gap: 34px; align-items: flex-start; max-width: 1180px; }
.wiki-body { flex: 1; min-width: 0; max-width: 760px; }
.wiki-sidebar {
  width: 244px; flex-shrink: 0; position: sticky; top: 78px;
  padding: 18px 0 24px; font-size: .88rem;
  border-right: 1px solid var(--line);
  max-height: calc(100vh - 96px); overflow-y: auto;
}
.wiki-sidebar-title { font-family: var(--font-head); font-weight: 800; margin-bottom: 14px; }
.wiki-sidebar-title a { color: var(--text); text-decoration: none; }
.wiki-sidebar-section {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin: 16px 0 6px;
}
.wiki-sidebar ul { list-style: none; padding: 0; margin: 0; }
.wiki-sidebar li { margin: 0; }
.wiki-sidebar li a {
  display: block; padding: 5px 12px 5px 10px; color: var(--muted);
  text-decoration: none; border-left: 2px solid transparent; line-height: 1.35;
}
.wiki-sidebar li a:hover { color: var(--text); border-left-color: var(--line); }
.wiki-sidebar li.here a { color: var(--text); border-left-color: var(--gold); font-weight: 600; }

@media (max-width: 900px) {
  .wiki-wrap { flex-direction: column; gap: 0; }
  .wiki-sidebar {
    width: 100%; position: static; max-height: none; border-right: 0;
    border-bottom: 1px solid var(--line); margin-bottom: 8px;
  }
}

.wiki-list { list-style: none; padding-left: 0; }
.wiki-list li { padding: 9px 0; border-bottom: 1px solid var(--line-soft); }
.wiki-list a { font-weight: 600; text-decoration: none; display: block; }
.wiki-list a:hover { text-decoration: underline; }
.wiki-list .muted { display: block; margin-top: 2px; }
.glossary dt { font-weight: 700; color: var(--text); margin-top: 10px; }
.glossary dd { margin: 2px 0 0; color: var(--muted); font-size: .93rem; }
.ai-list li { margin-bottom: 8px; }

.crumbs { padding: 20px 0 0; font-size: .86rem; color: var(--muted); }
.crumbs a { color: var(--gold); text-decoration: none; }
.join-box {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--card);
  padding: 16px 18px; margin: 18px 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.evidence {
  border-left: 3px solid var(--line); padding: 10px 0 10px 14px; margin: 0 0 14px;
  color: var(--muted); font-size: .88rem;
}
.table th { white-space: nowrap; vertical-align: top; }
.sub-list .btn { margin-left: 8px; }

.week { border-top: 1px solid var(--line); padding-top: 20px; margin-bottom: 26px; }
.week:first-of-type { border-top: 0; padding-top: 0; }
.movers { list-style: none; padding-left: 0; }
.mover { display: flex; gap: 9px; padding: 7px 0; font-size: .95rem; }
.mover-arrow { width: 1.1em; flex: none; }
.mover-up .mover-arrow { color: #34d399; }
.mover-down .mover-arrow { color: #f87171; }
.mover-out .mover-arrow { color: var(--muted); }
.week-full summary { cursor: pointer; color: var(--muted); font-size: .86rem; }
.week-order { margin-top: 10px; }

.post-list { list-style: none; padding: 10px 0 30px; display: flex; flex-direction: column; gap: 14px; }
.post-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); padding: 18px 20px; }
.post-card h2 { border: 0; padding: 0; display: block; margin: 6px 0 8px; font-size: 1.2rem; }
.post-card h2 a { text-decoration: none; color: var(--text); }
.post-card h2 a:hover { color: var(--accent-soft); }
.post-meta { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.post h1 { margin: 8px 0 18px; }
.post table { font-size: .88rem; }

.footer { border-top: 1px solid var(--line); margin-top: 40px; padding: 34px 0 24px; background: var(--bg-soft); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 26px; }
.ip-list { list-style: none; padding: 0; }
.ip-list li {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 11px 14px; margin-bottom: 8px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--card);
}
.ip-list-rank { color: var(--muted); font-family: var(--font-head); font-weight: 800; min-width: 2.2em; }
.ip-list-name { font-weight: 600; text-decoration: none; min-width: 11em; }
.perk-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  border: 1px solid rgba(255, 201, 77, .3); border-radius: 10px;
  padding: 8px 10px 8px 13px; background: transparent;
}
.perk-row-label { font-size: .88rem; font-weight: 600; color: var(--gold); }
.perk-row-copy {
  background: none; border: 1px solid var(--line); color: var(--muted);
  border-radius: 7px; padding: 5px 10px; font-size: .78rem; font-weight: 600;
  font-family: var(--font-body); cursor: pointer;
}
.perk-row-copy:hover { border-color: var(--gold); color: var(--text); }
.perk-row-copy.done { border-color: var(--green); color: var(--green); }
.footer-grid h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; color: var(--accent-soft); margin-bottom: 10px; }
.footer-grid a { display: block; color: var(--muted); text-decoration: none; font-size: .88rem; padding: 3px 0; }
.footer-grid a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--line); margin-top: 26px; padding-top: 16px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}

.footer-feature {
  margin: 16px 0; padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--line));
  border-left: 3px solid var(--accent);
  border-radius: var(--radius); background: var(--card);
}
.footer-feature-title {
  display: block; font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  color: var(--accent-soft); text-decoration: none; margin-bottom: 6px;
}
.footer-feature-title:hover { text-decoration: underline; }
.footer-feature .ip-copy { margin-top: 10px; }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
  .entry-rank { font-size: 1.25rem; min-width: 2em; }
  .hero { padding: 28px 0 24px; }
  .nav-links { gap: 14px; }
  .fp-side { width: 100%; }
  .pc-actions, .ps-copy { width: 100%; }
  .entry-side { width: 100%; }
}
