/* Fantasy Fucks - site-wide styles. Generated by export_clickup.py. */

:root,
[data-theme="light"] {
  color-scheme: light;
  --bg: #eeebe4;
  --bg-elev: #ffffff;
  --bg-elev-2: #f4f2ec;
  --border: #ddd9d0;
  --text: #111111;
  --text-dim: #4a4a4a;
  --text-faint: #7a7a7a;
  --accent: #c6f04d;
  --accent-ink: #111111;
  --accent-text: #3d6a08;
  --gold: #c9a227;
  --silver: #6b6b6b;
  --bronze: #8a4e1a;
  --qb: #c41218;
  --rb: #1a6b4a;
  --wr: #1a4f8a;
  --te: #9a4a12;
  --k: #5a2a7a;
  --def: #4a4a4a;
  --slutler: #c41218;
  --ir: #c41218;
  --held: #1a6b4a;
  --miss: #c41218;
  --early: #5a2a7a;
  --other: #9a4a12;
  --chrome: #111111;
  --chrome-text: #f5f5f5;
  --chrome-dim: #a3a3a3;
  --controls-bg: #eeebe4;
  --row-border: rgba(17,17,17,.1);
  --avatar-bg: #ddd9d0;
  --chip-hover-border: #c4c0b6;
  --label-bg: rgba(17,17,17,.04);
  --hit-bg: rgba(198,240,77,.28);
  --tint: 22%;
  --tint-soft: 14%;
  --radius: 16px;
  --radius-pill: 999px;
  --sidebar-w: 268px;
  --topbar-h: 56px;
  --scrim: rgba(17,17,17,.45);
  --shadow: 10px 0 28px rgba(17,17,17,.18);
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #141414;
  --bg-elev: #1c1c1c;
  --bg-elev-2: #262626;
  --border: #333333;
  --text: #f3f3f3;
  --text-dim: #b5b5b5;
  --text-faint: #888888;
  --accent: #c6f04d;
  --accent-ink: #111111;
  --accent-text: #c6f04d;
  --gold: #d4a017;
  --silver: #c3b8a6;
  --bronze: #c4843a;
  --qb: #e06b6b;
  --rb: #6bb89a;
  --wr: #7aa8d4;
  --te: #d4924a;
  --k: #b089c9;
  --def: #8a8074;
  --slutler: #e06b6b;
  --ir: #e06b6b;
  --held: #6bb89a;
  --miss: #e06b6b;
  --early: #b089c9;
  --other: #d4924a;
  --chrome: #0d0d0d;
  --chrome-text: #f5f5f5;
  --chrome-dim: #9a9a9a;
  --controls-bg: #141414;
  --row-border: rgba(255,255,255,.08);
  --avatar-bg: #333333;
  --chip-hover-border: #4a4a4a;
  --label-bg: rgba(255,255,255,.06);
  --hit-bg: rgba(198,240,77,.14);
  --tint: 22%;
  --tint-soft: 14%;
  --scrim: rgba(0,0,0,.7);
  --shadow: 10px 0 28px rgba(0,0,0,.5);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font: 15px/1.5 var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: var(--accent-ink); }
a { color: var(--text); text-decoration-color: var(--accent); text-underline-offset: 3px; text-decoration-thickness: 2px; }
a:hover { color: var(--text); background: color-mix(in srgb, var(--accent) 55%, transparent); }
img { max-width: 100%; height: auto; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 14px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}
.skip-link:focus { left: 12px; top: 12px; }

/* shell */
.shell { display: flex; align-items: flex-start; min-height: 100vh; }
.content { flex: 1; min-width: 0; }

/* sidebar */
.sidebar {
  position: sticky;
  top: 0;
  z-index: 40;
  flex: 0 0 var(--sidebar-w);
  width: var(--sidebar-w);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--chrome);
  color: var(--chrome-text);
  border-right: 0;
  transition: margin-left .18s ease;
}
[data-nav="collapsed"] .sidebar { margin-left: calc(var(--sidebar-w) * -1); }

.sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 14px 16px 16px;
  border-bottom: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--chrome-text);
  text-decoration: none;
  min-width: 0;
}
.brand:hover { background: transparent; color: var(--chrome-text); }
.brand-mark {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  color: transparent;
  font-size: 0;
  overflow: hidden;
}
.brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  background: transparent;
  border: 1px solid transparent;
  color: var(--chrome-dim);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
  border-radius: var(--radius-pill);
}
.icon-btn:hover { color: var(--chrome-text); background: #2a2a2a; }
.sidebar-dismiss { display: none; }

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px 10px 20px;
}
.nav-list { list-style: none; margin: 0; padding: 0; }
.nav-sub {
  margin: 2px 0 8px 10px;
  padding-left: 10px;
  border-left: 1px solid #2e2e2e;
  display: none;
}
.nav-node[data-open="true"] > .nav-sub { display: block; }
.nav-row { display: flex; align-items: stretch; gap: 0; }
.nav-link {
  flex: 1;
  min-width: 0;
  display: block;
  padding: 7px 12px;
  color: var(--chrome-dim);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: var(--radius-pill);
}
.nav-sub .nav-link { font-size: 13px; font-weight: 500; color: #8a8a8a; }
.nav-link:hover { color: var(--chrome-text); background: #2a2a2a; }
.nav-node.is-branch > .nav-row > .nav-link:not([aria-current="page"]) { color: var(--chrome-text); }
.nav-link[aria-current="page"] {
  color: var(--accent-ink);
  background: var(--accent);
  font-weight: 700;
}
.nav-link[aria-current="page"]:hover { color: var(--accent-ink); background: var(--accent); }
.nav-caret {
  flex: 0 0 auto;
  width: 32px;
  border: 0;
  background: transparent;
  color: var(--chrome-dim);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  font-family: inherit;
  border-radius: var(--radius-pill);
}
.nav-caret:hover { color: var(--chrome-text); }
.nav-caret::before { content: "\25B8"; display: inline-block; transition: transform .15s ease; }
.nav-node[data-open="true"] > .nav-row > .nav-caret::before { transform: rotate(90deg); }

.sidebar-bottom {
  padding: 10px 12px 14px;
  border-top: 1px solid #2e2e2e;
}
.theme-btn {
  width: 100%;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid #3a3a3a;
  color: var(--chrome-text);
  font: 700 12px/1 var(--font-sans);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  border-radius: var(--radius-pill);
}
.theme-btn:hover { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); }

/* topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  background: var(--chrome);
  border-bottom: 0;
}
.topbar .icon-btn { color: var(--chrome-dim); }
.topbar .icon-btn:hover { color: var(--chrome-text); background: #2a2a2a; }
.topbar-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--chrome-text);
}
.topbar .spacer { flex: 1; }

.scrim {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 35;
  background: var(--scrim);
}

/* page body */
main.page {
  max-width: 740px;
  margin: 0 auto;
  padding: 36px 32px 10px;
}
.crumbs {
  margin: 0 0 10px;
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}
.crumbs a { color: var(--text-faint); text-decoration: none; background: none; }
.crumbs a:hover { color: var(--text); background: none; }
.meta {
  margin: 0 0 28px;
  color: var(--text-faint);
  font-size: 13px;
  font-family: var(--font-sans);
}
h1 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 800;
  text-transform: none;
}
.subtitle {
  margin: 0 0 8px;
  color: var(--text-dim);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
}

.prose { font-size: 18px; font-family: var(--font-serif); line-height: 1.6; }
.prose :first-child { margin-top: 0; }
.prose h1, .prose h2, .prose h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 1.5em 0 .4em;
  text-transform: none;
  font-weight: 800;
}
.prose h1 { font-size: 28px; }
.prose h2 { font-size: 22px; }
.prose h3 {
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0;
  font-family: var(--font-sans);
}
.prose img { border-radius: var(--radius); }
.prose hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2em 0;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.1em 0;
  font-size: 14px;
  font-family: var(--font-sans);
  line-height: 1.4;
}
.prose th, .prose td {
  border-bottom: 1px solid var(--border);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  padding: 10px 8px 10px 0;
  text-align: left;
  vertical-align: top;
}
.prose th {
  background: transparent;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-faint);
  border-bottom: 1px solid var(--border);
  font-weight: 700;
}
.prose.pickems > h2 {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--accent-ink);
  background: var(--accent);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin: 1.6em 0 .55em;
}
.prose.pickems > h3 {
  font-size: 24px;
}
.prose table.pickems-grid th {
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 12px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
}
.prose table.pickems-grid thead tr:first-child th:first-child {
  border-radius: 8px 0 0 0;
}
.prose table.pickems-grid thead tr:first-child th:last-child {
  border-radius: 0 8px 0 0;
}
.prose table.pickems-grid td {
  padding: 10px 12px;
  vertical-align: middle;
  text-align: center;
}
.result-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  gap: 1px;
  min-height: 40px;
  padding: 6px 12px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}
.result-badge-pick { font-size: 1em; }
.result-badge-score {
  font-size: .66em;
  font-weight: 600;
}
.result-badge.push {
  background: #f6e59b;
  color: #4a3e08;
}
.result-badge.under {
  background: #cfe4f7;
  color: #1a3d5c;
}
.result-badge.cover {
  background: #c8e6c9;
  color: #1b4332;
}
.result-badge.open {
  background: color-mix(in srgb, var(--text) 10%, var(--bg-elev));
  color: var(--text-dim);
}
.prose code {
  background: var(--bg-elev-2);
  padding: 1px 5px;
  font-size: 13px;
  border-radius: 4px;
}
.prose pre {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 12px 14px;
  overflow: auto;
  border-radius: var(--radius);
}
.prose pre code { background: none; padding: 0; }
.prose blockquote {
  margin: 1.2em 0;
  padding: 0 0 0 14px;
  border-left: 3px solid var(--accent);
  color: var(--text-dim);
  font-style: italic;
}

.prose h2[id],
.prose > div[id] { scroll-margin-top: calc(var(--topbar-h) + 12px); }

.rank-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 1.8em;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
}
.rank-toc a {
  padding: 6px 12px;
  color: var(--text);
  text-decoration: none;
  background: var(--bg-elev);
  border-radius: var(--radius-pill);
}
.rank-toc a:hover { background: var(--accent); color: var(--accent-ink); }

.rank-meta {
  margin: 0 0 1em;
  padding: 0;
  background: transparent;
  border: 0;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--text-dim);
  line-height: 1.5;
}
.rank-meta strong { color: var(--text); font-weight: 800; }
.rank-meta::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
}

.rank-banner { margin: 0 0 12px; }
.rank-banner img { width: 100%; height: auto; display: block; }
.rank-banner-slam { position: relative; }
.rank-banner-frame { position: relative; }
.prose .rank-banner-slam img {
  border-radius: var(--radius) var(--radius) 0 0;
}
.slam-highlight {
  position: absolute;
  left: 70%;
  top: 68.5%;
  width: 12%;
  height: 10.5%;
  border: 3px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 0 0 2px #111;
  pointer-events: none;
}
.rank-banner-slam figcaption {
  margin: 0;
  padding: 16px 18px 18px;
  background: var(--accent);
  color: #111;
  font-family: var(--font-sans);
  font-size: clamp(28px, 5.5vw, 48px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  text-align: center;
  border-radius: 0 0 var(--radius) var(--radius);
}

.roster {
  margin: 0 0 1.2em;
  background: var(--bg-elev);
  border-radius: var(--radius);
  font-family: var(--font-sans);
}
.roster > summary {
  padding: 11px 16px;
  cursor: pointer;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  list-style: none;
}
.roster > summary::-webkit-details-marker { display: none; }
.roster > summary::marker { content: none; }
.roster > summary::before {
  content: "▸";
  display: inline-block;
  margin-right: 8px;
  color: var(--text-faint);
}
.roster[open] > summary::before { content: "▾"; }
.roster[open] > summary { border-bottom: 1px solid var(--row-border); }
.roster > summary:hover { color: var(--text); }
.roster table {
  margin: 0;
  width: 100%;
}
.roster td {
  padding: 7px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--row-border);
  vertical-align: baseline;
}
.roster tr:last-child td { border-bottom: 0; }
.roster .pos {
  width: 4em;
  padding-right: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  white-space: nowrap;
}
.roster .pos-qb { color: var(--qb); }
.roster .pos-rb { color: var(--rb); }
.roster .pos-wr { color: var(--wr); }
.roster .pos-te { color: var(--te); }
.roster .pos-flex { color: var(--other); }
.roster .pos-k { color: var(--k); }
.roster .pos-dst { color: var(--def); }
.roster .group th {
  padding: 14px 16px 4px;
  border-bottom: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.roster .group + tr td { border-top: 0; }
.roster .group:not(:first-child) th { padding-top: 18px; }
.roster tr.bench td:nth-child(2),
.roster tr.ir td:nth-child(2) { color: var(--text-dim); }
.roster tr.ir .pos { color: var(--ir); }

.cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 1.1em 0 0;
}
.case {
  background: var(--bg-elev);
  border: 0;
  border-top: 0;
  padding: 14px 14px 16px;
  min-width: 0;
  min-height: 0;
  border-radius: var(--radius);
}
.case h3 {
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
}
.case p {
  margin: 0;
  font-size: 16px;
  font-family: var(--font-serif);
  color: var(--text);
}
.case.best {
  background: color-mix(in srgb, var(--accent) 78%, var(--bg-elev));
}
.case.best h3,
.case.best p { color: #111; }
.case.worst {
  background: color-mix(in srgb, var(--miss) 22%, var(--bg-elev));
}
.case.worst h3 { color: var(--miss); }

@media (max-width: 700px) {
  .cases { grid-template-columns: 1fr; gap: 10px; }
}

.children {
  margin: 40px 0 0;
  padding: 18px 20px 8px;
  border-top: 0;
  background: var(--bg-elev);
  border-radius: var(--radius);
}
.children h2 {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.children ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.children a {
  display: block;
  padding: 11px 0 11px 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-transform: none;
  position: relative;
}
.children a:last-child { border-bottom: 0; }
.children a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--accent);
}
.children a:hover { color: var(--text); background: transparent; }

footer.site {
  max-width: 740px;
  margin: 48px auto 0;
  padding: 18px 32px 56px;
  border-top: 0;
  color: var(--text-faint);
  font-size: 12px;
  font-family: var(--font-sans);
}

@media (max-width: 960px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100dvh;
    width: min(84vw, 300px);
    flex-basis: auto;
    margin-left: 0;
    transform: translateX(-100%);
    box-shadow: var(--shadow);
    transition: transform .2s ease;
  }
  [data-nav="collapsed"] .sidebar { margin-left: 0; }
  [data-drawer="open"] .sidebar { transform: none; }
  [data-drawer="open"] .scrim { display: block; }
  [data-drawer="open"] body { overflow: hidden; }
  .sidebar-dismiss { display: grid; }
  main.page { padding: 24px 20px 10px; }
  footer.site { padding: 18px 20px 56px; }
  h1 { font-size: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .sidebar, .nav-caret::before { transition: none; }
}
