/* ══════════════════════════════════════════════════════════
   CANUCKS TRIBE — MAIN STYLESHEET
   ══════════════════════════════════════════════════════════ */

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --navy:       #00205B;
  --navy-deep:  #00132E;
  --navy-mid:   #001A40;
  --teal:       #00843D;
  --teal-light: #00B352;
  --white:      #FFFFFF;
  --silver:     #A8BDD0;
  --dim:        #5C7A94;
  --gold:       #F5A623;
  --red:        #E8354A;
  --card-bg:    rgba(255,255,255,0.035);
  --card-hover: rgba(255,255,255,0.06);
  --border:     rgba(255,255,255,0.07);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy-deep);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── SITE NAV ─────────────────────────────────────────────── */
.ct-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 56px;
  background: rgba(0,19,46,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 2rem; gap: 2rem;
}
.ct-nav__logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1.25rem; letter-spacing: 0.04em;
  white-space: nowrap;
}
.ct-nav__logo-icon {
  width: 32px; height: 32px; border-radius: 6px;
  background: linear-gradient(135deg, var(--teal), #005c2b);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 900; color: #fff;
  flex-shrink: 0;
}
.ct-nav__logo-tribe { color: var(--teal-light); }
.ct-nav__links { display: flex; gap: 1.75rem; }
.ct-nav__links a {
  color: var(--silver); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color .2s;
}
.ct-nav__links a:hover,
.ct-nav__links a.active { color: var(--white); }
.ct-nav__right { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }
.ct-nav__search {
  background: var(--card-bg); border: 1px solid var(--border);
  color: var(--white); padding: 0.4rem 0.9rem;
  border-radius: 4px; font-size: 0.8rem; outline: none; width: 180px;
}
.ct-nav__search::placeholder { color: var(--dim); }
.ct-nav__btn {
  background: var(--teal); color: var(--white);
  border: none; padding: 0.4rem 1rem;
  border-radius: 4px; font-size: 0.8rem; font-weight: 700;
  cursor: pointer; font-family: 'Barlow Condensed', sans-serif;
}

/* ── HERO ─────────────────────────────────────────────────── */
.ct-hero {
  position: relative;
  padding-top: 56px;
  overflow: hidden;
  min-height: 500px;
}
.ct-hero__action-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 20%;
  opacity: 0.18; filter: saturate(0.4);
}
.ct-hero__bg {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 90% 70% at 75% 50%, rgba(0,132,61,0.13) 0%, transparent 55%),
    linear-gradient(165deg, rgba(0,19,46,0.92) 0%, rgba(0,32,91,0.85) 50%, rgba(0,26,64,0.92) 100%);
}
.ct-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 80px 80px;
}
.ct-hero__watermark {
  position: absolute; right: -1%; top: -5%; z-index: 2;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(12rem, 26vw, 28rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.08);
  user-select: none; pointer-events: none;
}
.ct-hero__inner {
  position: relative; z-index: 5;
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px;
  min-height: 444px; padding: 0 2rem;
}
.ct-hero__info {
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 0; gap: 1.2rem;
}
.ct-hero__eyebrow { display: flex; align-items: center; gap: 0.75rem; }
.ct-hero__pill {
  background: var(--teal);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 2px;
}
.ct-hero__team-label {
  color: var(--dim); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.ct-hero__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3.8rem, 7.5vw, 7rem);
  line-height: 0.88;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.ct-hero__name-last { color: var(--teal-light); }
.ct-hero__attrs { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ct-hero__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 5.5rem; line-height: 1;
  color: #FFFFFF;
}
.ct-hero__vr { width: 1px; height: 44px; background: var(--border); }
.ct-hero__attr { display: flex; flex-direction: column; gap: 0.15rem; }
.ct-hero__attr-lbl {
  font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--dim);
}
.ct-hero__attr-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.5rem;
}
.ct-hero__vitals { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.ct-hero__vital { display: flex; flex-direction: column; gap: 0.15rem; }
.ct-hero__vital-lbl {
  font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--dim);
}
.ct-hero__vital-val { font-size: 0.875rem; font-weight: 600; color: var(--silver); }
.ct-hero__player {
  position: relative; display: flex; align-items: flex-end; justify-content: center;
}
.ct-hero__player::before {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 75%; height: 50%;
  background: radial-gradient(ellipse, rgba(0,179,82,0.22) 0%, transparent 70%);
  filter: blur(40px); z-index: 0;
}
.ct-hero__photo {
  position: relative; z-index: 1;
  width: 100%; max-width: 440px;
  object-fit: contain; object-position: bottom;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8)) drop-shadow(0 0 40px rgba(0,132,61,0.3));
}
.ct-hero__line {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: 10;
  background: linear-gradient(90deg, transparent 0%, var(--teal) 30%, var(--teal-light) 50%, var(--teal) 70%, transparent 100%);
}

/* ── STAT BAR ─────────────────────────────────────────────── */
.ct-statbar {
  background: rgba(0,10,28,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 56px; z-index: 150;
}
.ct-statbar__inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: stretch;
}
.ct-statbar__season {
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 2rem; border-right: 1px solid var(--border);
  min-width: 150px;
}
.ct-statbar__season-lbl {
  font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--dim);
}
.ct-statbar__season-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem;
}
.ct-statbar__cells { display: flex; flex: 1; }
.ct-statbar__cell {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 1rem 0;
  border-right: 1px solid var(--border);
  transition: background .2s; position: relative;
}
.ct-statbar__cell::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--teal-light); transition: width .3s;
}
.ct-statbar__cell:hover { background: rgba(0,179,82,0.05); }
.ct-statbar__cell:hover::after { width: 80%; }
.ct-statbar__cell:last-child { border-right: none; }
.ct-statbar__lbl {
  font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--dim); margin-bottom: 0.25rem;
}
.ct-statbar__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 2.2rem; line-height: 1;
}
.ct-statbar__num--neg { color: var(--red); }
.ct-statbar__num--hi  { color: var(--teal-light); }
.ct-statbar__toggles {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0 1.5rem; border-left: 1px solid var(--border);
}
.ct-statbar__toggle {
  padding: 0.3rem 0.7rem; border-radius: 3px;
  font-size: 0.7rem; font-weight: 700; cursor: pointer;
  border: 1px solid var(--border); background: none; color: var(--dim);
  font-family: 'Barlow Condensed', sans-serif; transition: all .2s;
}
.ct-statbar__toggle.is-active {
  background: var(--teal); border-color: var(--teal); color: var(--white);
}

/* ── NEWS STRIP ───────────────────────────────────────────── */
.ct-news-strip {
  background: var(--navy-mid);
  border-bottom: 2px solid var(--border);
}
.ct-news-strip__inner {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
}
.ct-news-strip__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0 0.85rem;
}
.ct-news-strip__title {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 0.95rem;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.ct-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 0 0 rgba(0,179,82,0.6);
  animation: ct-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes ct-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,179,82,0.6); }
  70%  { box-shadow: 0 0 0 7px rgba(0,179,82,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,179,82,0); }
}
.ct-news-strip__count { font-size: 0.72rem; color: var(--dim); font-weight: 500; }
.ct-news-strip__all {
  font-size: 0.75rem; color: var(--teal-light); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.ct-news-strip__scroll {
  display: flex; gap: 1rem; overflow-x: auto;
  padding-bottom: 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.ct-news-strip__scroll::-webkit-scrollbar { display: none; }

/* ── NEWS CARD ────────────────────────────────────────────── */
.ct-news-card {
  flex-shrink: 0; width: 295px;
  scroll-snap-align: start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.1rem 1.15rem;
  display: flex; flex-direction: column; gap: 0.55rem;
  cursor: pointer; transition: all .22s;
  position: relative; overflow: hidden;
}
.ct-news-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--teal); opacity: 0; transition: opacity .22s;
}
.ct-news-card:hover {
  border-color: rgba(0,179,82,0.35);
  background: var(--card-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.ct-news-card:hover::before { opacity: 1; }
.ct-news-card__top { display: flex; justify-content: space-between; align-items: center; }
.ct-news-card__source { display: flex; align-items: center; gap: 0.4rem; }
.ct-news-card__source-icon {
  width: 22px; height: 22px; border-radius: 4px;
  background: var(--navy); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; font-weight: 800;
  color: var(--teal-light); font-family: 'Barlow Condensed', sans-serif;
}
.ct-news-card__source-name { font-size: 0.7rem; font-weight: 700; color: var(--teal-light); }
.ct-news-card__time { font-size: 0.68rem; color: var(--dim); }
.ct-news-card__badge {
  display: inline-block; padding: 0.12rem 0.45rem; border-radius: 2px;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; width: fit-content;
}
.ct-news-card__badge--breaking { background: rgba(245,166,35,0.15); color: var(--gold);      border: 1px solid rgba(245,166,35,0.3); }
.ct-news-card__badge--trade    { background: rgba(232,53,74,0.12);   color: var(--red);       border: 1px solid rgba(232,53,74,0.25); }
.ct-news-card__badge--stats    { background: rgba(0,179,82,0.1);     color: var(--teal-light);border: 1px solid rgba(0,179,82,0.25); }
.ct-news-card__badge--rumour   { background: rgba(168,189,208,0.08); color: var(--silver);    border: 1px solid rgba(168,189,208,0.2); }
.ct-news-card__headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.05rem; line-height: 1.22; color: var(--white);
}
.ct-news-card__blurb {
  font-size: 0.77rem; color: var(--silver); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ct-news-card__footer {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; color: var(--dim);
  margin-top: auto; padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.ct-news-card__author { color: var(--silver); font-weight: 600; }
.ct-news-card__dot { opacity: 0.35; }
.ct-news-card__views { display: flex; align-items: center; gap: 0.3rem; margin-left: auto; }

/* ── PAGE BODY ────────────────────────────────────────────── */
.ct-page {
  max-width: 1400px; margin: 0 auto;
  padding: 2rem 2rem 5rem;
  display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem;
}

/* ── TABS ─────────────────────────────────────────────────── */
.ct-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.ct-tab {
  padding: 0.85rem 1.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dim); cursor: pointer;
  background: none; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all .2s;
}
.ct-tab:hover { color: var(--white); }
.ct-tab.is-active { color: var(--teal-light); border-bottom-color: var(--teal-light); }

/* ── SECTION HEADING ──────────────────────────────────────── */
.ct-section-hd {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.15rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.ct-section-hd::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── BIO GRID ─────────────────────────────────────────────── */
.ct-bio-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; margin-bottom: 2rem;
}
.ct-bio-cell {
  padding: 1rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ct-bio-cell:nth-child(4n)        { border-right: none; }
.ct-bio-cell:nth-last-child(-n+4) { border-bottom: none; }
.ct-bio-cell__lbl {
  font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--dim); margin-bottom: 0.3rem;
}
.ct-bio-cell__val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem;
}

/* ── DATA TABLE ───────────────────────────────────────────── */
.ct-table-wrap {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden; margin-bottom: 2rem;
}
.ct-table-wrap--scroll { overflow-x: auto; }
.ct-table {
  width: 100%; border-collapse: collapse; font-size: 0.82rem;
}
.ct-table thead th {
  font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--dim);
  padding: 0.65rem 0.75rem; text-align: center;
  border-bottom: 1px solid var(--border);
  font-weight: 600; background: rgba(0,0,0,0.25);
  white-space: nowrap;
}
.ct-table thead th:first-child { text-align: left; }
.ct-table tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.ct-table tbody tr:last-child { border-bottom: none; }
.ct-table tbody tr.ct-table__total { background: rgba(0,132,61,0.08); font-weight: 700; }
.ct-table tbody tr:hover { background: rgba(255,255,255,0.025); }
.ct-table td { padding: 0.7rem 0.75rem; text-align: center; color: var(--silver); }
.ct-table td:first-child { text-align: left; color: var(--white); font-weight: 600; }
.ct-table td.ct-td--link { color: var(--teal-light); font-weight: 700; }
.ct-table td.ct-td--pos  { color: var(--gold); font-weight: 700; }
.ct-table td.ct-td--neg  { color: var(--red); font-weight: 700; }
.ct-table td.ct-td--hi   { color: var(--teal-light); font-weight: 800; }

/* ── SIDEBAR ──────────────────────────────────────────────── */
.ct-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.ct-side-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.ct-side-card__hd {
  padding: 0.8rem 1.2rem; border-bottom: 1px solid var(--border);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dim); display: flex; justify-content: space-between; align-items: center;
}
.ct-side-card__hd a { font-size: 0.7rem; color: var(--teal-light); }

/* Roster list */
.ct-roster-item {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.65rem 1.2rem; border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.ct-roster-item:last-child { border-bottom: none; }
.ct-roster-item:hover,
.ct-roster-item.is-active { background: rgba(0,179,82,0.07); }
.ct-roster-item__num {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.9rem; color: var(--dim); width: 20px; text-align: right; flex-shrink: 0;
}
.ct-roster-item__avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--navy); border: 1px solid var(--border);
  overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800; color: var(--dim);
}
.ct-roster-item__avatar img { width: 100%; height: 100%; object-fit: cover; }
.ct-roster-item__name { font-size: 0.82rem; font-weight: 600; flex: 1; }
.ct-roster-item__pos  { font-size: 0.65rem; color: var(--dim); font-weight: 700; }
.ct-roster-item__pts  {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1rem; color: var(--teal-light);
}

/* Social links */
.ct-social-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1.2rem; border-bottom: 1px solid var(--border);
  font-size: 0.82rem; font-weight: 600; transition: background .15s;
}
.ct-social-link:last-child { border-bottom: none; }
.ct-social-link:hover { background: var(--card-hover); }
.ct-social-link__icon {
  width: 30px; height: 30px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.ct-social-link__icon--ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.ct-social-link__icon--th { background: #000; border: 1px solid rgba(255,255,255,0.15); }
.ct-social-link__handle { font-size: 0.72rem; color: var(--dim); margin-left: auto; }

/* ── STORY SINGLE PAGE ────────────────────────────────────── */
.ct-story-page { padding-top: 56px; }
.ct-story-hero {
  background: var(--navy-mid);
  border-bottom: 2px solid var(--teal);
  padding: 3rem 2rem 2rem;
}
.ct-story-hero__inner { max-width: 900px; margin: 0 auto; }
.ct-story-hero__player-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--teal-light); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.ct-story-hero__player-link::before { content: '←'; }
.ct-story-hero__badge { margin-bottom: 0.75rem; }
.ct-story-hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.0; margin-bottom: 1.25rem;
}
.ct-story-hero__meta {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap; font-size: 0.82rem; color: var(--silver);
}
.ct-story-hero__source { color: var(--teal-light); font-weight: 700; }
.ct-story-hero__dot { opacity: 0.35; }
.ct-story-body {
  max-width: 900px; margin: 0 auto; padding: 2.5rem 2rem 5rem;
}
.ct-story-body__content {
  font-size: 1.05rem; line-height: 1.75; color: var(--silver);
}
.ct-story-body__content p { margin-bottom: 1.5rem; }
.ct-story-body__content a { color: var(--teal-light); text-decoration: underline; }
.ct-story-body__source-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--card-bg); border: 1px solid var(--border);
  padding: 0.75rem 1.25rem; border-radius: 6px;
  color: var(--teal-light); font-weight: 700; font-size: 0.85rem;
  margin-top: 2rem; transition: all .2s;
}
.ct-story-body__source-link:hover { border-color: var(--teal-light); background: var(--card-hover); }

/* ── PLAYERS ARCHIVE ──────────────────────────────────────── */
.ct-archive { padding-top: 56px; }
.ct-archive__header {
  background: var(--navy-mid); border-bottom: 2px solid var(--teal);
  padding: 3rem 2rem 2rem;
}
.ct-archive__header-inner { max-width: 1400px; margin: 0 auto; }
.ct-archive__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 3rem; text-transform: uppercase;
}
.ct-archive__title span { color: var(--teal-light); }
.ct-archive__grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem; padding: 2.5rem 2rem 5rem;
}
.ct-player-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden; transition: all .22s;
  position: relative;
}
.ct-player-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--teal); opacity: 0; transition: opacity .22s;
}
.ct-player-card:hover { border-color: rgba(0,179,82,0.35); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.35); }
.ct-player-card:hover::before { opacity: 1; }
.ct-player-card__img-wrap {
  aspect-ratio: 3/4; background: var(--navy-mid);
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; position: relative;
}
.ct-player-card__img { width: 100%; height: 100%; object-fit: contain; object-position: bottom; }
.ct-player-card__num {
  position: absolute; top: 0.75rem; left: 0.75rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.5rem;
  color: rgba(255,255,255,0.35);
}
.ct-player-card__info { padding: 0.85rem 1rem; }
.ct-player-card__name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.1rem;
  text-transform: uppercase; line-height: 1.1; margin-bottom: 0.3rem;
}
.ct-player-card__meta { display: flex; justify-content: space-between; align-items: center; }
.ct-player-card__pos { font-size: 0.7rem; color: var(--dim); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.ct-player-card__pts { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--teal-light); }

/* ── UTILITIES ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }

/* ── TAB PANELS ───────────────────────────────────────────── */
.ct-tab-panel { display: none; }
.ct-tab-panel.is-active { display: block; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ct-hero__inner { grid-template-columns: 1fr; }
  .ct-hero__player { display: none; }
  .ct-page { grid-template-columns: 1fr; }
  .ct-sidebar { display: none; }
  .ct-bio-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-statbar__cells { overflow-x: auto; }
}
@media (max-width: 768px) {
  .ct-nav__links { display: none; }
  .ct-hero__name { font-size: 3rem; }
  .ct-bio-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-bio-cell:nth-child(4n) { border-right: 1px solid var(--border); }
  .ct-bio-cell:nth-child(2n) { border-right: none; }
}
