@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;800;900&family=Fraunces:ital,opsz,wght@0,9..144,400;1,9..144,400&family=Inter+Tight:wght@400;500;600;700&display=swap');

:root {
  --navy:#1f3a6e;
  --navy-deep:#16284c;
  --gold:#a67c00;
  --gold-bright:#c89a1f;
  --cream:#faf6ee;
  --soft:#efe7d6;
  --ink:#1a1a1a;
  --muted:#8a7f66;
  --line:#c9bfa8;
  --paper:#fffdf8;
  --ok:#2f7d4f;
  --danger:#a23;
}
* { box-sizing:border-box; }
html,body { margin:0; padding:0; }
body {
  font-family:"Inter Tight",system-ui,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(166,124,0,0.06), transparent 40%),
    radial-gradient(circle at 88% 92%, rgba(31,58,110,0.06), transparent 42%),
    var(--cream);
  min-height:100vh;
  padding:22px 16px 70px;
}
a { color:inherit; }
.wrap { max-width:1100px; margin:0 auto; }
.mast {
  border-bottom:3px solid var(--navy);
  padding-bottom:12px;
  margin-bottom:16px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.kicker { text-transform:uppercase; letter-spacing:.18em; font-size:11px; font-weight:700; color:var(--gold); margin-bottom:4px; }
h1 { font-family:"Big Shoulders Display",sans-serif; font-weight:900; font-size:clamp(34px,7vw,58px); color:var(--navy); text-transform:uppercase; line-height:.88; margin:0; }
.subtitle { font-family:"Fraunces",serif; font-style:italic; font-size:15px; color:var(--navy); margin-top:5px; }
.tag { text-align:right; font-size:11px; color:var(--navy); text-transform:uppercase; letter-spacing:.1em; font-weight:700; line-height:1.5; }
.tag span { color:var(--gold); }
.nav { display:flex; gap:8px; flex-wrap:wrap; margin:18px 0; }
.nav a {
  flex:1 1 auto;
  min-width:92px;
  text-align:center;
  text-decoration:none;
  font-family:"Big Shoulders Display",sans-serif;
  font-weight:800;
  font-size:17px;
  text-transform:uppercase;
  letter-spacing:.04em;
  padding:12px 14px;
  border:1.5px solid var(--navy);
  border-radius:9px;
  background:#fff;
  color:var(--navy);
  transition:all .15s ease;
}
.nav a:hover { background:var(--soft); }
.nav a.active { background:var(--navy); color:#fff; }
.card {
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:12px;
  padding:20px;
  box-shadow:0 1px 0 rgba(0,0,0,.02), 0 12px 32px -22px rgba(31,58,110,.45);
  margin:0 0 16px;
}
.grid { display:grid; gap:16px; }
.grid.two { grid-template-columns:repeat(2,minmax(0,1fr)); }
.grid.three { grid-template-columns:repeat(3,minmax(0,1fr)); }
.grid.three { margin-bottom:16px; }
@media(max-width:760px){ .grid.two,.grid.three { grid-template-columns:1fr; } .tag{text-align:left;} }
h2,h3 { font-family:"Big Shoulders Display",sans-serif; color:var(--navy); text-transform:uppercase; letter-spacing:.03em; margin:0 0 8px; }
h2 { font-size:28px; }
h3 { font-size:22px; }
.sec-note { font-size:14px; color:var(--muted); margin:0 0 16px; }
.stat { background:var(--cream); border:1px solid var(--gold); border-radius:10px; padding:16px; }
.stat .num { font-family:"Big Shoulders Display"; font-weight:900; font-size:36px; color:var(--navy); line-height:1; }
.stat .label { color:var(--gold); text-transform:uppercase; letter-spacing:.12em; font-size:11px; font-weight:700; margin-top:6px; }
.table-wrap { overflow:auto; border:1px solid var(--line); border-radius:10px; background:#fff; }
table { width:100%; border-collapse:collapse; min-width:720px; }
th,td { padding:10px 12px; border-bottom:1px solid #e7decb; text-align:left; font-size:14px; vertical-align:top; }
th { font-size:11px; color:var(--gold); text-transform:uppercase; letter-spacing:.08em; background:var(--cream); position:sticky; top:0; z-index:1; }
tr:last-child td { border-bottom:0; }

/* League table: team name in handout style — Big Shoulders, navy, uppercase */
.team-cell { font-family:"Big Shoulders Display",sans-serif; font-weight:900; font-size:17px; letter-spacing:.01em; text-transform:uppercase; color:var(--navy); line-height:1; }
td.pts-cell { font-family:"Big Shoulders Display",sans-serif; font-weight:900; font-size:18px; color:var(--navy); }

/* Form tracker — last 4 results as coloured dots */
.form { display:inline-flex; gap:4px; align-items:center; }
.form .dot { width:13px; height:13px; border-radius:50%; display:inline-block; flex:none; }
.dot.w { background:var(--ok); }
.dot.d { background:var(--muted); }
.dot.l { background:var(--danger); }
.dot.none { background:transparent; border:1.5px solid var(--line); }
.badge { display:inline-flex; align-items:center; gap:6px; padding:4px 8px; border-radius:999px; background:var(--soft); color:var(--navy); font-size:12px; font-weight:700; }
.badge.gold { background:rgba(166,124,0,.12); color:#745700; }
.badge.ok { background:rgba(47,125,79,.12); color:var(--ok); }
.badge.warn { background:rgba(170,34,51,.10); color:var(--danger); }
.fixture-card { display:grid; grid-template-columns:90px 1fr auto; gap:14px; align-items:center; padding:12px 0; border-bottom:1px solid #e7decb; }
.fixture-card:last-child { border-bottom:0; }
.fixture-card.bye { opacity:.7; }

/* Home/Away/Bye tokens — styled after the printed team handouts */
.ha { font-family:"Big Shoulders Display"; font-weight:800; font-size:11px; letter-spacing:.16em; text-transform:uppercase; padding:4px 11px 3px; border-radius:4px; line-height:1; white-space:nowrap; }
.ha.home { background:var(--navy); color:var(--paper); }
.ha.away { border:1.5px solid var(--navy); color:var(--navy); background:transparent; padding:3px 10px 2px; }
.ha.bye  { border:1.5px dashed var(--muted); color:var(--muted); background:transparent; padding:3px 10px 2px; }
.fixture-card.bye .match { font-style:italic; color:var(--muted); }

/* Result score on played fixtures */
.score { font-family:"Big Shoulders Display"; font-weight:900; font-size:20px; color:var(--navy); line-height:1; white-space:nowrap; }
.score .sep { color:var(--muted); margin:0 3px; }
.result-meta { color:var(--gold); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; margin-top:4px; }
.week { font-family:"Big Shoulders Display"; font-weight:900; color:var(--gold); text-transform:uppercase; }
.match { font-size:16px; font-weight:700; color:var(--navy); }
.meta { color:var(--muted); font-size:13px; margin-top:3px; }
.controls { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:16px; align-items:end; }
.field { min-width:210px; flex:1; }
label { display:block; font-size:11px; text-transform:uppercase; letter-spacing:.1em; color:var(--gold); font-weight:700; margin-bottom:6px; }
input,select,textarea {
  width:100%; padding:10px 12px; border:1.5px solid var(--line); border-radius:8px;
  font-family:inherit; font-size:15px; background:#fff; color:var(--ink);
}
input:focus,select:focus,textarea:focus { outline:0; border-color:var(--navy); box-shadow:0 0 0 3px rgba(31,58,110,.10); }
button.action {
  border:0; border-radius:9px; padding:12px 18px; cursor:pointer;
  background:var(--navy); color:#fff; font-family:"Big Shoulders Display"; font-size:18px; font-weight:900; text-transform:uppercase; letter-spacing:.04em;
}
button.action.secondary { background:#fff; color:var(--navy); border:1.5px solid var(--navy); }
button.action.danger { background:var(--danger); }

/* Admin frame-by-frame entry grid */
.frame-head { display:grid; grid-template-columns:64px 1fr 140px 1fr; gap:10px; align-items:center; padding:8px 10px; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--gold); border-bottom:1.5px solid var(--line); margin-top:10px; }
.frame-row { display:grid; grid-template-columns:64px 1fr 140px 1fr; gap:10px; align-items:center; padding:8px 10px; border-bottom:1px solid #ece4d2; }
.frame-row.doubles { background:rgba(166,124,0,.06); border-radius:8px; }
.frame-num { font-family:"Big Shoulders Display"; font-weight:900; font-size:18px; color:var(--navy); display:flex; align-items:center; gap:5px; }
.frame-num .brk { font-size:10px; color:var(--muted); }
.frame-side { display:flex; flex-direction:column; gap:6px; }
.frame-side select { width:100%; padding:8px 10px; border:1.5px solid var(--line); border-radius:8px; background:#fff; font-size:14px; }
.frame-win { display:flex; gap:6px; justify-content:center; }
.winbtn { border:1.5px solid var(--line); background:#fff; color:var(--muted); border-radius:7px; padding:7px 10px; font-weight:700; font-size:12px; cursor:pointer; text-transform:uppercase; letter-spacing:.04em; }
.winbtn[data-win="home"].on { background:var(--navy); color:#fff; border-color:var(--navy); }
.winbtn[data-win="away"].on { background:transparent; color:var(--navy); border-color:var(--navy); border-width:2px; }
@media(max-width:760px){
  .frame-head { display:none; }
  .frame-row { grid-template-columns:1fr; gap:8px; padding:12px 10px; border:1px solid var(--line); border-radius:10px; margin-bottom:10px; }
  .frame-win { justify-content:flex-start; }
  .winbtn { flex:1; padding:10px; }
}

.notice { border:1px solid var(--line); border-left:4px solid var(--gold); background:#fff; padding:14px; border-radius:10px; color:var(--navy); }
.error { border-left-color:var(--danger); color:var(--danger); }
.success { border-left-color:var(--ok); color:var(--ok); }
.loading { color:var(--muted); font-style:italic; }
.footer { margin-top:22px; color:var(--muted); font-size:12px; text-align:center; }

/* Mobile-first polish: equal touch targets and centred button/nav text */
.nav {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:8px;
  margin:18px 0;
}
.nav a {
  flex:none;
  min-width:0;
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  line-height:1;
  padding:12px 10px;
}
@media (min-width:720px) {
  .nav { grid-template-columns:repeat(7, minmax(0, 1fr)); }
  .nav a { min-height:50px; }
}
@media (max-width:760px) {
  body { padding:16px 12px 72px; }
  .mast { align-items:flex-start; }
  .tag { width:100%; text-align:left; }
  .card { padding:16px; border-radius:12px; }
  .stat { padding:14px; }
  .fixture-card {
    grid-template-columns:1fr;
    gap:8px;
    align-items:start;
    padding:14px 0;
  }
  .fixture-card .badge { justify-self:start; }
  .controls { display:grid; grid-template-columns:1fr; gap:12px; }
  .field { min-width:0; width:100%; }
  button.action {
    width:100%;
    min-height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
  }
  .grid.two > a.notice {
    min-height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    text-decoration:none;
    font-weight:700;
  }
}

/* Player stats and Player of the Season tracker */
.stats-controls { align-items:stretch; }
.segmented {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:6px;
  border:1.5px solid var(--line);
  border-radius:10px;
  padding:5px;
  background:#fff;
}
.segmented button {
  min-height:42px;
  border:0;
  border-radius:7px;
  background:transparent;
  color:var(--navy);
  cursor:pointer;
  font-family:"Big Shoulders Display",sans-serif;
  font-size:17px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.segmented button.on { background:var(--navy); color:#fff; }
.check-field { flex:.75; }
.check-row {
  display:flex;
  align-items:center;
  gap:9px;
  min-height:54px;
  padding:10px 12px;
  border:1.5px solid var(--line);
  border-radius:9px;
  background:#fff;
  color:var(--ink);
  cursor:pointer;
  text-transform:none;
  letter-spacing:normal;
  font-size:14px;
  font-weight:700;
}
.check-row input { width:auto; margin:0; }
th.sortable { cursor:pointer; user-select:none; }
th.sortable.active { color:var(--navy); }
.stats-table tr.qualified td { background:rgba(47,125,79,.045); }
.stats-table tr.front-runner td { background:rgba(166,124,0,.14); }
.team-stat-card { margin-top:16px; }
.pots-leader {
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  padding:12px;
  border:1px solid rgba(47,125,79,.25);
  border-radius:10px;
  background:rgba(47,125,79,.06);
  margin:8px 0 12px;
  color:var(--navy);
}
.pots-leader strong {
  font-family:"Big Shoulders Display",sans-serif;
  font-size:22px;
  text-transform:uppercase;
  letter-spacing:.02em;
}
@media (min-width:720px) {
  .nav { grid-template-columns:repeat(8, minmax(0, 1fr)); }
}
@media (max-width:760px) {
  .segmented button { min-height:48px; }
  .stats-summary.grid.three { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .stats-table { min-width:820px; }
  .pots-table { min-width:760px; }
}

/* Individual player frame-history lookup */
.player-history-card { scroll-margin-top: 14px; }
.history-controls { align-items:stretch; }
.history-suggestions {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}
.history-choice {
  border:1.5px solid var(--line);
  background:#fff;
  color:var(--navy);
  border-radius:10px;
  padding:12px;
  text-align:left;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  gap:3px;
}
.history-choice strong {
  font-family:"Big Shoulders Display",sans-serif;
  font-size:20px;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.02em;
}
.history-choice span { color:var(--muted); font-size:13px; }
.history-choice:hover { border-color:var(--navy); box-shadow:0 3px 10px rgba(31,58,110,.10); }
.text-link {
  border:0;
  background:transparent;
  color:var(--navy);
  text-decoration:underline;
  cursor:pointer;
  padding:0;
  font:inherit;
  font-weight:800;
}
.history-profile-head {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  border-top:1px solid var(--line);
  padding-top:16px;
  margin-top:6px;
}
.history-profile-stats { display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end; }
.profile-summary-grid { margin:14px 0 16px; }
.mini-stat .num { font-size:26px; }
.history-subhead {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:12px 0;
}
.history-list { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:12px; margin-bottom:14px; }
.history-card {
  border:1.5px solid var(--line);
  border-radius:12px;
  background:#fff;
  padding:14px;
}
.history-card.won { border-left:5px solid var(--ok); }
.history-card.lost { border-left:5px solid var(--danger); }
.history-card-top { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-bottom:8px; }
.result-pill {
  font-family:"Big Shoulders Display",sans-serif;
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
  border-radius:999px;
  padding:5px 10px 4px;
  line-height:1;
  color:#fff;
}
.result-pill.win { background:var(--ok); }
.result-pill.loss { background:var(--danger); }
.history-date {
  color:var(--gold);
  font-size:12px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.history-fixture {
  font-family:"Big Shoulders Display",sans-serif;
  color:var(--navy);
  font-weight:900;
  font-size:22px;
  line-height:1.05;
  text-transform:uppercase;
  margin:4px 0 10px;
}
.history-detail-grid { display:grid; grid-template-columns:1fr; gap:5px; font-size:14px; color:var(--ink); }
.history-detail-grid strong { color:var(--navy); }
@media (max-width:760px) {
  .history-suggestions,
  .history-list { grid-template-columns:1fr; }
  .history-profile-head,
  .history-subhead { flex-direction:column; align-items:flex-start; }
  .history-profile-stats { justify-content:flex-start; }
}


/* Mobile nav and stats polish — keeps the landing screen from being just buttons */
.nav-shell { margin:18px 0; }
.nav-toggle {
  display:none;
  width:100%;
  min-height:52px;
  align-items:center;
  justify-content:center;
  text-align:center;
  border:1.5px solid var(--navy);
  border-radius:10px;
  background:var(--navy);
  color:#fff;
  font-family:"Big Shoulders Display",sans-serif;
  font-size:19px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
  cursor:pointer;
}
.quick-action-row { margin:0 0 14px; }
.jump-history-btn { width:auto; }
@media (max-width:760px) {
  .nav-shell { margin:10px 0 16px; }
  .nav-toggle { display:flex; }
  .nav {
    display:none !important;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
    margin:8px 0 0;
  }
  .nav.open { display:grid !important; }
  .nav a { min-height:50px; padding:10px 8px; font-size:16px; }
  .jump-history-btn { width:100%; min-height:54px; }
}
@media (min-width:761px) {
  .nav { display:grid; grid-template-columns:repeat(8,minmax(0,1fr)); }
}


/* Fixture/result sync polish */
.fixture-card.played { background:rgba(47,125,79,.035); border-radius:10px; padding-left:10px; padding-right:10px; }
.fixture-result { min-width:62px; text-align:center; justify-self:end; }
.fixture-result .score { font-size:28px; }
.fixture-result .result-meta { margin-top:3px; }
@media (max-width:760px) {
  .fixture-card { grid-template-columns:70px 1fr; gap:10px; }
  .fixture-card > span,
  .fixture-card > .fixture-result { grid-column:1 / -1; justify-self:stretch; text-align:center; }
  .fixture-result { border-top:1px solid #e7decb; padding-top:8px; margin-top:2px; }
}

/* === LCPL mobile-first hub upgrade === */
:root{
  --navy:#10284a;
  --navy-2:#183766;
  --gold:#b99025;
  --gold-2:#d7b762;
  --cream:#fbf4e4;
  --paper:#fffdf7;
  --soft:#f6ecd8;
  --ink:#192332;
  --muted:#6d7480;
  --line:#e6d7b8;
  --ok:#2f7d4f;
  --danger:#aa2233;
}
body{ background:linear-gradient(180deg,#f5ead5 0%, #fffaf0 38%, #f7f0e2 100%); }
.wrap{ max-width:1120px; }
.mast{ padding:18px 0 10px; }
.brand-lockup{ display:flex; align-items:center; gap:14px; }
.brand-mark,.team-monogram{
  display:inline-flex; align-items:center; justify-content:center;
  width:54px; height:54px; border-radius:16px;
  background:linear-gradient(145deg,var(--navy),var(--navy-2)); color:var(--gold-2);
  border:1.5px solid rgba(185,144,37,.55);
  font-family:"Big Shoulders Display",sans-serif; font-size:24px; font-weight:900; letter-spacing:.04em;
  box-shadow:0 12px 26px -20px rgba(16,40,74,.85);
  flex:none;
}
.team-monogram{ width:46px; height:46px; border-radius:14px; font-size:20px; }
.footer{ color:var(--muted); padding:20px 0 86px; }
.footer::before{ content:"Leeds Community Pool League · Official league hub"; }
.footer{ font-size:0; }
.footer::before{ font-size:12px; }
.nav-shell{ position:relative; z-index:4; }
.nav{ grid-template-columns:repeat(6,minmax(0,1fr)); }
.nav a{ gap:7px; border-radius:13px; box-shadow:0 8px 22px -21px rgba(16,40,74,.8); }
.nav a .nav-icon{ font-size:15px; line-height:1; }
.nav a span:last-child{ line-height:1; }
.nav-toggle{ border-radius:14px; min-height:50px; }
.bottom-nav{
  display:none; position:fixed; left:10px; right:10px; bottom:10px; z-index:50;
  grid-template-columns:repeat(6,minmax(0,1fr)); gap:4px;
  background:rgba(255,253,247,.96); border:1.5px solid var(--line); border-radius:18px;
  padding:7px; box-shadow:0 18px 45px rgba(16,40,74,.22); backdrop-filter:blur(10px);
}
.bottom-nav a{ text-decoration:none; color:var(--muted); border-radius:12px; min-height:50px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2px; font-weight:800; }
.bottom-nav a span{ font-size:17px; line-height:1; }
.bottom-nav a em{ font-style:normal; font-size:10px; text-transform:uppercase; letter-spacing:.03em; }
.bottom-nav a.active{ background:var(--navy); color:#fff; }
.card{ border-radius:18px; padding:22px; margin-bottom:20px; }
.card.elevated{ box-shadow:0 22px 50px -36px rgba(16,40,74,.65); }
.section-head{ display:flex; align-items:flex-start; justify-content:space-between; gap:14px; margin-bottom:16px; }
.section-head h2{ margin:0; }
.dashboard-hero{
  display:grid; grid-template-columns:1.2fr .8fr; gap:18px; align-items:stretch; margin-bottom:20px;
}
.hero-panel{
  background:linear-gradient(145deg,var(--navy),#07172d); color:#fff;
  border:1px solid rgba(215,183,98,.45); border-radius:22px; padding:22px;
  box-shadow:0 24px 55px -38px rgba(16,40,74,.8);
}
.hero-panel h2,.hero-panel h3{ color:#fff; }
.hero-panel .sec-note,.hero-panel .meta{ color:rgba(255,255,255,.74); }
.hero-panel .gold-text{ color:var(--gold-2); }
.quick-grid{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; }
.quick-card,.menu-card,.team-card-link{
  display:flex; align-items:center; gap:12px; text-decoration:none; color:var(--navy);
  background:#fff; border:1.5px solid var(--line); border-radius:18px; padding:16px;
  min-height:76px; box-shadow:0 10px 26px -24px rgba(16,40,74,.8);
}
.quick-card strong,.menu-card strong,.team-card-link strong{ font-family:"Big Shoulders Display",sans-serif; text-transform:uppercase; font-size:22px; letter-spacing:.03em; line-height:1; }
.quick-card small,.menu-card small,.team-card-link small{ display:block; color:var(--muted); font-weight:600; margin-top:4px; }
.quick-card:hover,.menu-card:hover,.team-card-link:hover{ border-color:var(--gold); background:var(--cream); }
.icon-pill{ width:42px; height:42px; flex:none; border-radius:14px; display:flex; align-items:center; justify-content:center; background:var(--cream); border:1px solid var(--line); font-size:20px; }
.metric-grid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; }
.metric{ background:var(--cream); border:1px solid var(--gold); border-radius:16px; padding:16px; }
.metric .big{ font-family:"Big Shoulders Display",sans-serif; font-size:42px; line-height:1; font-weight:900; color:var(--navy); }
.metric .small{ margin-top:6px; text-transform:uppercase; letter-spacing:.1em; font-size:11px; font-weight:800; color:var(--gold); }
.kpi-row{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.kpi{ display:inline-flex; align-items:center; gap:7px; padding:7px 10px; border:1px solid var(--line); border-radius:999px; background:#fff; color:var(--navy); font-weight:800; font-size:13px; }
.filter-chips{ display:flex; gap:8px; flex-wrap:wrap; margin:0 0 16px; }
.chip{ border:1.5px solid var(--line); background:#fff; color:var(--navy); border-radius:999px; padding:9px 13px; font-weight:800; cursor:pointer; }
.chip.on{ background:var(--navy); color:#fff; border-color:var(--navy); }
.fixture-card{ border:1px solid #eadfc8; border-radius:16px; padding:14px; margin-bottom:10px; background:#fff; }
.fixture-card.played{ background:linear-gradient(90deg,#fff,#fff8e6); border-color:#ddc77f; }
.fixture-card.bye{ background:#faf7ef; }
.fixture-result{ justify-self:end; text-align:right; min-width:70px; }
.score{ font-size:28px; }
.match-line{ display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.icon-line{ display:flex; gap:8px; align-items:center; flex-wrap:wrap; color:var(--muted); font-size:13px; margin-top:5px; }
.empty-state{ text-align:center; background:#fff; border:1.5px dashed var(--line); border-radius:18px; padding:28px 18px; color:var(--navy); }
.empty-state .empty-icon{ width:42px; height:42px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; margin-bottom:9px; border:1.5px solid var(--gold); color:var(--gold); font-size:26px; }
.empty-state p{ margin:6px 0 0; color:var(--muted); }
.mobile-cards{ display:none; }
.league-card,.player-card,.mini-result-card{
  border:1px solid var(--line); border-radius:16px; padding:14px; background:#fff; margin-bottom:10px;
}
.league-card.leader{ border-color:var(--gold); background:linear-gradient(90deg,#fff,#fff6dd); }
.league-card-top{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.position-badge{ width:44px; height:44px; border-radius:14px; display:flex; align-items:center; justify-content:center; background:var(--navy); color:#fff; font-family:"Big Shoulders Display"; font-size:22px; font-weight:900; }
.fd-big{ font-family:"Big Shoulders Display"; font-size:30px; color:var(--navy); font-weight:900; line-height:1; }
.team-dashboard{ display:grid; grid-template-columns:.95fr 1.05fr; gap:18px; align-items:start; }
.team-profile{ background:linear-gradient(145deg,var(--navy),#0b1d36); color:#fff; border-radius:22px; padding:20px; border:1px solid rgba(215,183,98,.45); }
.team-profile h2{ color:#fff; }
.team-profile .sec-note,.team-profile .meta{ color:rgba(255,255,255,.75); }
.team-profile .team-monogram{ background:#fff; color:var(--navy); }
.team-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.squad-list{ display:grid; gap:8px; }
.squad-player{ display:flex; align-items:center; justify-content:space-between; gap:10px; border:1px solid var(--line); border-radius:12px; padding:9px 11px; background:#fff; }
.menu-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.info-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.venue-card .address{ color:var(--navy); font-weight:700; }
.text-page p,.text-page li{ line-height:1.55; }
.text-page ul{ margin-top:8px; }
.jump-button{ display:inline-flex; align-items:center; justify-content:center; gap:8px; min-height:48px; padding:11px 16px; border-radius:14px; text-decoration:none; background:var(--navy); color:#fff; font-family:"Big Shoulders Display"; font-weight:900; font-size:19px; text-transform:uppercase; letter-spacing:.04em; }
.jump-button.secondary{ background:#fff; color:var(--navy); border:1.5px solid var(--navy); }
@media(max-width:900px){
  .dashboard-hero,.team-dashboard{ grid-template-columns:1fr; }
  .quick-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .metric-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); }
}
@media(max-width:760px){
  body{ padding:14px 12px 96px; }
  .bottom-nav{ display:grid; }
  .mast{ gap:12px; }
  .brand-mark{ width:48px; height:48px; border-radius:14px; font-size:22px; }
  .tag{ display:none; }
  .nav{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .nav a{ min-height:50px; }
  .card{ padding:18px; border-radius:18px; margin-bottom:18px; }
  .quick-grid,.menu-grid,.team-grid,.info-grid{ grid-template-columns:1fr; }
  .quick-card,.menu-card,.team-card-link{ min-height:70px; padding:14px; }
  .metric-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); gap:8px; }
  .metric{ padding:12px; }
  .metric .big{ font-size:34px; }
  .metric .small{ font-size:10px; }
  .fixture-result{ justify-self:start; text-align:left; }
  .match-line{ align-items:flex-start; }
  /* League table stays as real rows on mobile and scrolls sideways if cramped */
  .desktop-table{ display:block; }
  .mobile-cards{ display:none; }
  .section-head{ display:block; }
  .section-head .jump-button{ margin-top:10px; width:100%; }
}
@media(min-width:761px){
  .nav-toggle{ display:none; }
  .nav{ display:grid !important; }
}

/* === LCPL requested polish: homepage spacing, player cats and mobile league table === */
.home-stack { display:grid; gap:20px; }
.home-stack > section { margin:0; }
.home-actions { margin-top:0; }
.mini-label { display:block; font-family:"Inter Tight",system-ui,sans-serif; font-size:10px; line-height:1.1; color:var(--muted); text-transform:uppercase; letter-spacing:.1em; text-align:right; }
.table-mobile-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:8px;
  margin-top:12px;
}
.table-mobile-grid span {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:54px;
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--cream);
  text-align:center;
}
.table-mobile-grid strong {
  font-family:"Big Shoulders Display",sans-serif;
  font-size:24px;
  line-height:1;
  color:var(--navy);
}
.table-mobile-grid em {
  margin-top:4px;
  font-style:normal;
  font-size:10px;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.09em;
  font-weight:800;
}
.table-mobile-grid.compact { grid-template-columns:repeat(4,minmax(0,1fr)); }
.table-mobile-grid:not(.compact) { grid-template-columns:repeat(4,minmax(0,1fr)); }
.cat-section {
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  margin:0 0 16px;
  background:#fff;
}
.cat-section .table-wrap { margin-top:10px; }
.cat-heading {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}
.cat-heading h3 { margin:0; }
.muted-cat { background:#fffaf0; }
.inline-check { min-height:44px; padding:9px 11px; }
@media(max-width:760px){
  .home-stack { gap:18px; }
  .table-mobile-grid:not(.compact) { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .table-mobile-grid.compact { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .cat-section { padding:14px; }
}

/* === Desktop website polish release ===
   Public-facing layout only. No database/RLS behaviour is changed. */
.wrap { max-width:1200px; }
.footer{
  margin-top:34px;
  border-top:1px solid rgba(16,40,74,.14);
  padding:24px 0 92px;
  color:var(--muted);
  font-size:12px;
  text-align:center;
}
.footer::before{ content:none; }
.full{ width:100%; }
.view-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:8px 13px;
  border-radius:999px;
  border:1.5px solid var(--line);
  background:#fff;
  color:var(--navy);
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  white-space:nowrap;
}
.view-link:hover{ border-color:var(--navy); box-shadow:0 8px 24px -20px rgba(16,40,74,.65); }
.notice.compact{ margin-top:10px; padding:12px; font-size:14px; }
.website-home{ gap:28px; }
.website-hero{
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(300px,.6fr);
  gap:22px;
  align-items:stretch;
}
.website-hero-main{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(215,183,98,.18), transparent 35%),
    linear-gradient(145deg,var(--navy),#07172d);
  color:#fff;
  border:1px solid rgba(215,183,98,.48);
  border-radius:28px;
  padding:38px;
  min-height:285px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  box-shadow:0 30px 70px -48px rgba(16,40,74,.95);
}
.website-hero-main::after{
  content:"LCPL";
  position:absolute;
  right:-10px;
  bottom:-18px;
  font-family:"Big Shoulders Display",sans-serif;
  font-weight:900;
  font-size:130px;
  line-height:.8;
  letter-spacing:-.04em;
  color:rgba(255,255,255,.055);
  pointer-events:none;
}
.website-hero-main h2{
  color:#fff;
  font-size:clamp(52px,6vw,88px);
  line-height:.86;
  margin:0 0 14px;
  max-width:760px;
}
.website-hero-main p{
  max-width:620px;
  color:rgba(255,255,255,.82);
  font-size:18px;
  line-height:1.45;
  margin:0 0 24px;
}
.website-hero-main .gold-text{ color:var(--gold-2); }
.hero-actions{ display:flex; flex-wrap:wrap; gap:12px; position:relative; z-index:1; }
.website-hero-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:28px;
  padding:30px;
  box-shadow:0 22px 55px -40px rgba(16,40,74,.65);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.website-hero-card h3{ font-size:36px; line-height:.95; margin-bottom:12px; }
.website-hero-card p{ color:var(--muted); line-height:1.45; margin:0; }
.homepage-grid{
  display:grid;
  grid-template-columns:minmax(0,1.65fr) minmax(300px,.75fr);
  gap:24px;
  align-items:start;
}
.homepage-main-col,
.homepage-sidebar-col{ display:grid; gap:22px; }
.summary-card,
.sidebar-card{ margin:0; }
.summary-card{ padding:26px; }
.sidebar-card{ padding:24px; }
.summary-card h2,
.sidebar-card h2{ font-size:31px; }
.summary-card .fixture-card{ padding-top:15px; padding-bottom:15px; }
.sidebar-card .sec-note{ margin-bottom:12px; }
.key-date-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.key-date-list li{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
  border-bottom:1px solid rgba(16,40,74,.10);
  color:var(--muted);
}
.key-date-list li:last-child{ border-bottom:0; }
.key-date-list strong{
  color:var(--navy);
  font-family:"Big Shoulders Display",sans-serif;
  text-transform:uppercase;
  letter-spacing:.03em;
  font-size:18px;
}
.key-date-list span{ text-align:right; }
.link-list{ display:grid; gap:9px; }
.link-list a{
  display:flex;
  align-items:center;
  gap:9px;
  min-height:46px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:13px;
  background:#fff;
  color:var(--navy);
  text-decoration:none;
  font-weight:800;
}
.link-list a:hover{ border-color:var(--gold); background:var(--cream); }

@media (min-width:901px){
  body{ padding:30px 24px 42px; }
  .mast{
    padding:20px 0 18px;
    margin-bottom:18px;
    border-bottom:0;
  }
  .brand-mark{ width:62px; height:62px; border-radius:18px; font-size:28px; }
  .mast h1{ font-size:64px; }
  .subtitle{ font-size:16px; }
  .nav-shell{
    position:sticky;
    top:0;
    z-index:30;
    padding:9px 0 17px;
    margin:0 0 20px;
    background:linear-gradient(180deg,rgba(251,244,228,.98),rgba(251,244,228,.92) 70%,rgba(251,244,228,0));
    backdrop-filter:blur(8px);
  }
  .desktop-nav{
    display:grid !important;
    grid-template-columns:repeat(8,minmax(0,1fr));
    gap:8px;
    margin:0;
  }
  .mobile-main-nav{ display:none !important; }
  .desktop-nav a{
    min-height:48px;
    border-radius:999px;
    padding:10px 12px;
    font-size:15px;
    background:rgba(255,253,247,.92);
    border-color:rgba(16,40,74,.22);
    box-shadow:none;
  }
  .desktop-nav a.active,
  .desktop-nav a:hover{ background:var(--navy); color:#fff; border-color:var(--navy); }
  .desktop-nav a .nav-icon{ display:none; }
  .home-actions{ margin-top:2px; }
  .quick-card{ min-height:92px; padding:20px; }
  .quick-card strong{ font-size:24px; }
  .quick-card small{ font-size:13px; }
}

@media (max-width:900px){
  .website-hero,
  .homepage-grid{ grid-template-columns:1fr; }
  .website-hero-main{ min-height:0; padding:26px 22px; border-radius:22px; }
  .website-hero-main h2{ font-size:48px; }
  .website-hero-main p{ font-size:16px; }
  .website-hero-card{ padding:22px; border-radius:22px; }
  .website-hero-card h3{ font-size:30px; }
}

@media (max-width:760px){
  .desktop-nav{ display:none !important; }
  .mobile-main-nav{ display:none !important; }
  .mobile-main-nav.open{ display:grid !important; }
  .website-home{ gap:18px; }
  .website-hero{ gap:16px; }
  .website-hero-main{ padding:22px 18px; }
  .website-hero-main::after{ font-size:80px; }
  .website-hero-main h2{ font-size:40px; }
  .hero-actions .jump-button{ width:100%; }
  .summary-card,
  .sidebar-card{ padding:18px; }
  .homepage-main-col,
  .homepage-sidebar-col{ gap:18px; }
  .key-date-list li{ display:block; }
  .key-date-list span{ display:block; text-align:left; margin-top:3px; }
}

/* =========================================================================
   LCPL website polish v2 — desktop width, aesthetic makeover, new tiles
   Public-facing presentation only. No database / RLS behaviour changed.
   ========================================================================= */

/* --- Wider, more website-like desktop container --- */
.wrap{ max-width:1320px; }
@media (min-width:1100px){
  body{ padding:34px 40px 56px; }
  .wrap{ padding:0 8px; }
}
@media (min-width:1500px){
  .wrap{ max-width:1400px; }
}

/* Richer surface + crisper card depth on desktop */
@media (min-width:901px){
  body{
    background:
      radial-gradient(circle at 8% 4%, rgba(185,144,37,.08), transparent 34%),
      radial-gradient(circle at 96% 0%, rgba(16,40,74,.07), transparent 40%),
      linear-gradient(180deg,#f4e8d2 0%, #fffaf0 40%, #f6efe0 100%);
  }
  .card{
    border-radius:20px;
    box-shadow:0 1px 0 rgba(255,255,255,.6) inset, 0 18px 44px -32px rgba(16,40,74,.55);
  }
  .summary-card{ padding:30px 32px; }
  .summary-card h2,.sidebar-card h2{ font-size:30px; }
  /* Hairline gold accent on section headers for a more editorial feel */
  .summary-card .section-head{
    border-bottom:1px solid rgba(185,144,37,.28);
    padding-bottom:14px;
  }
}

/* Slightly tighter, classier masthead rule */
.mast{ border-bottom:3px solid var(--navy); }
.mast h1{ letter-spacing:.005em; }

/* --- Hero card: NEXT LEAGUE FIXTURE --- */
.hero-card-head{
  display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px;
}
.website-hero-card .week-pill{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:48px; height:30px; padding:0 12px;
  border-radius:999px;
  background:linear-gradient(145deg,var(--navy),var(--navy-2));
  color:var(--gold-2);
  font-family:"Big Shoulders Display",sans-serif; font-weight:900; font-size:17px; letter-spacing:.04em;
  border:1px solid rgba(185,144,37,.5);
  box-shadow:0 10px 22px -16px rgba(16,40,74,.9);
}
.mini-fixture-list{
  display:flex; flex-wrap:wrap; gap:8px; margin-top:4px;
}
.mini-fixture{
  display:inline-flex; align-items:center; gap:7px;
  padding:7px 11px; border-radius:11px;
  background:var(--cream); border:1px solid var(--line);
  font-family:"Big Shoulders Display",sans-serif; font-weight:800; font-size:15px;
  text-transform:uppercase; letter-spacing:.02em; color:var(--navy); line-height:1;
}
.mini-fixture em{ font-style:normal; color:var(--gold); font-size:12px; font-weight:700; }

/* --- Latest results: tighter so all five fit --- */
.latest-results-list .fixture-card{
  padding:10px 12px; margin-bottom:8px; border-radius:13px;
}
.latest-results-list .fixture-card:last-child{ margin-bottom:0; }
.latest-results-list .fixture-card .score{ font-size:24px; }
.latest-results-list .icon-line{ font-size:12px; margin-top:3px; }
.latest-results-list .match-line strong{ font-size:15px; }
@media (min-width:901px){
  .latest-results-list .fixture-card{ padding:11px 14px; }
}

/* --- Home split: League leaders (half) + POTS contenders (half) --- */
.home-split{
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; align-items:start;
}
.home-split > .summary-card{ margin:0; }
@media (max-width:900px){
  .home-split{ grid-template-columns:1fr; gap:18px; }
}

/* Proud single league-leader feature */
.leader-feature{
  background:
    radial-gradient(circle at 88% -10%, rgba(215,183,98,.22), transparent 42%),
    linear-gradient(150deg,var(--navy),#0b1d36);
  color:#fff;
  border:1px solid rgba(215,183,98,.5);
  border-radius:20px;
  padding:22px 22px 18px;
  box-shadow:0 26px 60px -42px rgba(16,40,74,.95);
}
.leader-feature-head{ display:flex; align-items:center; gap:14px; }
.leader-crown{ font-size:34px; line-height:1; flex:none; filter:drop-shadow(0 4px 6px rgba(0,0,0,.3)); }
.leader-feature-head .kicker{ color:var(--gold-2); margin-bottom:3px; }
.leader-feature-head > div:nth-child(2){ flex:1; min-width:0; }
.leader-team{
  color:#fff;
  font-family:"Big Shoulders Display",sans-serif;
  font-weight:900;
  font-size:clamp(30px,3.4vw,44px);
  line-height:.9;
  text-transform:uppercase;
  letter-spacing:.01em;
  margin:0;
}
.leader-pts{ text-align:right; flex:none; }
.leader-pts strong{
  display:block;
  font-family:"Big Shoulders Display",sans-serif; font-weight:900;
  font-size:46px; line-height:.85; color:var(--gold-2);
}
.leader-pts span{ font-size:11px; text-transform:uppercase; letter-spacing:.14em; color:rgba(255,255,255,.7); }
.leader-stat-row{
  display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:8px;
  margin-top:18px; padding-top:16px; border-top:1px solid rgba(255,255,255,.16);
}
.leader-stat-row span{ display:flex; flex-direction:column; align-items:center; gap:3px; text-align:center; }
.leader-stat-row strong{ font-family:"Big Shoulders Display",sans-serif; font-weight:900; font-size:26px; color:#fff; line-height:1; }
.leader-stat-row em{ font-style:normal; font-size:9.5px; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,.66); }

.leaders-card .leader-feature{ margin-top:2px; }
.pots-card .section-head,
.leaders-card .section-head{ margin-bottom:14px; }

/* Player of the Season contenders — prestigious list */
.pots-card .pots-list{ display:grid; gap:2px; }
.pots-row{
  display:grid;
  grid-template-columns:30px 1fr auto auto;
  align-items:center; gap:12px;
  padding:11px 8px;
  border-bottom:1px solid rgba(16,40,74,.08);
}
.pots-row:last-child{ border-bottom:0; }
.pots-rank{
  display:inline-flex; align-items:center; justify-content:center;
  width:26px; height:26px; border-radius:8px;
  background:var(--soft); color:var(--navy);
  font-family:"Big Shoulders Display",sans-serif; font-weight:900; font-size:15px;
  flex:none;
}
.pots-lead{
  background:linear-gradient(90deg,rgba(215,183,98,.16),rgba(215,183,98,0));
  border-radius:12px;
}
.pots-lead .pots-rank{
  background:linear-gradient(145deg,var(--gold),var(--gold-2)); color:#3a2c00;
  box-shadow:0 8px 18px -12px rgba(185,144,37,.9);
}
.pots-id{ min-width:0; display:flex; flex-direction:column; line-height:1.1; }
.pots-name{
  font-family:"Big Shoulders Display",sans-serif; font-weight:800; font-size:18px;
  text-transform:uppercase; letter-spacing:.01em; color:var(--navy);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.pots-team{ color:var(--muted); font-size:12px; font-weight:600; margin-top:1px; }
.pots-metric{ display:flex; flex-direction:column; align-items:flex-end; line-height:1; min-width:48px; }
.pots-metric strong{ font-family:"Big Shoulders Display",sans-serif; font-weight:900; font-size:17px; color:var(--navy); }
.pots-metric em{ font-style:normal; font-size:9px; text-transform:uppercase; letter-spacing:.1em; color:var(--gold); margin-top:2px; }

/* --- Tables page: most in-form team tile --- */
.inform-card .inform-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:14px;
}
.inform-team{
  border:1px solid var(--line); border-radius:16px; padding:15px 16px;
  background:linear-gradient(180deg,#fff,#fffaf0);
  box-shadow:0 12px 30px -26px rgba(16,40,74,.7);
}
.inform-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.inform-name{
  font-family:"Big Shoulders Display",sans-serif; font-weight:900; font-size:21px;
  text-transform:uppercase; color:var(--navy); letter-spacing:.01em; line-height:1;
}
.inform-meta{ margin-top:9px; color:var(--navy); font-weight:700; font-size:13px; }
.inform-meta span{ color:var(--muted); font-weight:600; }

/* --- Teams page: squad header with in-tile cats toggle --- */
.squad-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px; }
.squad-head h3{ margin:0; }
.cats-switch{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:700; color:var(--navy); cursor:pointer;
  padding:6px 11px; border:1px solid var(--line); border-radius:999px; background:#fff;
  text-transform:none; letter-spacing:normal;
}
.cats-switch input{ width:auto; margin:0; accent-color:var(--navy); cursor:pointer; }

/* --- Teams page: top performers tile --- */
.top-performers-card .performer-list{ list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.performer{
  display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:14px;
  padding:13px 16px; border:1px solid var(--line); border-radius:14px; background:#fff;
}
.performer.perf-1{
  background:linear-gradient(90deg,rgba(215,183,98,.18),#fff 70%);
  border-color:var(--gold);
}
.performer.perf-2{ background:linear-gradient(90deg,rgba(16,40,74,.07),#fff 70%); }
.perf-rank{
  display:inline-flex; align-items:center; justify-content:center; flex:none;
  min-width:42px; height:34px; padding:0 8px; border-radius:10px;
  background:var(--navy); color:#fff;
  font-family:"Big Shoulders Display",sans-serif; font-weight:900; font-size:16px; letter-spacing:.02em;
}
.performer.perf-1 .perf-rank{ background:linear-gradient(145deg,var(--gold),var(--gold-2)); color:#3a2c00; }
.perf-name{
  font-family:"Big Shoulders Display",sans-serif; font-weight:800; font-size:19px;
  text-transform:uppercase; color:var(--navy); letter-spacing:.01em;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.perf-pct{
  display:flex; flex-direction:column; align-items:flex-end; line-height:1;
  font-family:"Big Shoulders Display",sans-serif; font-weight:900; font-size:22px; color:var(--navy);
}
.perf-pct em{ font-style:normal; font-size:11px; font-weight:600; color:var(--muted); margin-top:3px; font-family:"Inter Tight",sans-serif; }

@media (max-width:760px){
  .leader-stat-row{ grid-template-columns:repeat(5,minmax(0,1fr)); gap:4px; }
  .leader-stat-row strong{ font-size:20px; }
  .leader-team{ font-size:30px; }
  .pots-name{ font-size:16px; }
  .mini-fixture{ font-size:14px; }
}
