/* ===== NFLFANTASYEDGE.COM — Core Styles ===== */

:root {
  --green:   #16a34a;
  --green2:  #15803d;
  --green3:  #dcfce7;
  --dark:    #0f172a;
  --dark2:   #1e293b;
  --ink:     #0f172a;
  --sub:     #64748b;
  --border:  #e2e8f0;
  --off:     #f8fafc;
  --white:   #ffffff;
  --red:     #dc2626;
  --yellow:  #d97706;
  --accent:  #d97706;
  --max:     1200px;
  --disp:    'Outfit', sans-serif;
  --body:    'DM Sans', sans-serif;
}

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

html { overflow-x: clip; }
body {
  font-family: var(--body);
  background: #0f172a;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.5;
  overflow-x: clip;
  max-width: 100%;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--body); cursor: pointer; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--green);
}

.top-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
  margin-right: 8px;
  flex-shrink: 0;
}

.site-logo-text {
  font-family: var(--disp);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.site-logo-text span {
  color: var(--green);
  font-style: italic;
}

.site-logo-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--green);
  color: #fff;
  padding: 2px 6px;
  border-radius: 2px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.top-nav-item {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 6px 12px;
  border-radius: 3px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.top-nav-item:hover { color: #fff; background: rgba(255,255,255,0.08); }
.top-nav-item.active { color: var(--green); background: rgba(22,163,74,0.12); }

.top-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.top-cta-btn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--green);
  color: #fff;
  border: none;
  padding: 7px 16px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.top-cta-btn:hover { background: var(--green2); }

/* ===== HAMBURGER ===== */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
}

.mobile-nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-drawer.open { display: flex; }
.mobile-nav-drawer a {
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
}
.mobile-nav-drawer a:hover,
.mobile-nav-drawer a.active { color: #fff; background: rgba(255,255,255,0.06); }

/* ===== TICKER ===== */
.ticker-bar {
  background: var(--dark2);
  height: 30px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ticker-label {
  background: var(--green);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.9;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 0.3; }
}

.ticker-track { flex: 1; overflow: hidden; position: relative; }
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  border-right: 1px solid rgba(255,255,255,0.1);
}

.ticker-item .ticker-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

/* ===== SECTION BAR ===== */
.section-bar {
  background: #0b1120;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.section-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-label {
  font-family: var(--disp);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.section-date {
  font-size: 12px;
  color: #64748b;
}

/* ===== PAGE ===== */
.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px 60px;
}

/* ===== AUTOCOMPLETE ===== */
.ac-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  z-index: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.ac-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.1s;
}
.ac-item:last-child { border-bottom: none; }
.ac-item:hover, .ac-item.active { background: rgba(22,163,74,0.15); }
.ac-name { font-size: 14px; font-weight: 600; color: #fff; }
.ac-meta { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.4); }

/* ===== READING PROGRESS BAR ===== */
.read-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--green);
  z-index: 2000;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(22,163,74,0.6);
}

/* ===== INTERACTIVE PAGE LAYOUT ===== */
.ipage {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px 24px 80px;
}

/* Step bar */
.steps-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.35;
  transition: opacity 0.3s;
}

.step.active { opacity: 1; }

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--disp);
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
  flex-shrink: 0;
}

.step.active .step-num {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.step-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  transition: color 0.3s;
}

.step.active .step-label { color: #fff; }

.step-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 12px;
}

/* Player cards */
.player-cards-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.player-card {
  background: #1e293b;
  border: 2px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.2s;
}

.player-card.filled { border-color: rgba(22,163,74,0.4); }
.player-card:focus-within { border-color: var(--green); }

.player-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}

.player-card-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-family: var(--disp);
  font-size: 22px;
  font-weight: 800;
  padding: 6px 0;
  outline: none;
  transition: border-color 0.2s;
  letter-spacing: -0.01em;
}

.player-card-input::placeholder { color: rgba(255,255,255,0.2); font-weight: 600; }
.player-card-input:focus { border-bottom-color: var(--green); }

.player-card-input.shake {
  animation: shake 0.4s ease;
}
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-6px); }
  40%,80% { transform: translateX(6px); }
}

.player-card-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
}

.vs-badge {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 900;
  color: rgba(255,255,255,0.25);
  text-align: center;
  letter-spacing: 0.05em;
}

/* Format row */
.format-row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.format-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.format-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.format-select {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-family: var(--body);
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  cursor: pointer;
}

.isubmit-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--disp);
  font-size: 16px;
  font-weight: 800;
  padding: 11px 32px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  margin-left: auto;
  letter-spacing: 0.01em;
}

.isubmit-btn:hover { background: var(--green2); transform: translateY(-1px); }
.isubmit-btn:disabled { background: #374151; cursor: not-allowed; transform: none; }

.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* Loading bar */
.result-loading {
  background: #1e293b;
  border-radius: 12px;
  padding: 32px 28px;
  margin-bottom: 24px;
}

.result-loading-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.result-loading-fill {
  height: 100%;
  background: var(--green);
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
}

.result-loading-text {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* Verdict */
.verdict-wrap {
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  animation: fadeSlideUp 0.4s ease;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.verdict-players {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 36px 32px;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.verdict-player { text-align: center; }

.vp-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.start-tag { background: rgba(22,163,74,0.2); color: #4ade80; }
.sit-tag   { background: rgba(239,68,68,0.15); color: #f87171; }

.vp-name {
  font-family: var(--disp);
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.verdict-player.start .vp-name { color: #4ade80; }
.verdict-player.sit .vp-name   { color: rgba(255,255,255,0.4); }

/* Confidence ring */
.verdict-ring { text-align: center; }

.conf-svg {
  width: 120px;
  height: 120px;
  display: block;
  margin: 0 auto 6px;
}

.conf-pct-text {
  font-family: var(--disp);
  font-size: 26px;
  font-weight: 900;
  fill: #fff;
  dominant-baseline: auto;
}

.conf-label-text {
  font-size: 11px;
  fill: rgba(255,255,255,0.4);
  font-family: var(--body);
}

.conf-ring-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* Analysis */
.verdict-analysis {
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.verdict-analysis p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 14px;
}

.verdict-analysis p:last-child { margin-bottom: 0; }

.verdict-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
}

.verdict-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.verdict-reset {
  background: none;
  border: none;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.verdict-reset:hover { text-decoration: underline; }

.ipage-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  color: #f87171;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 24px;
}

/* How it works box */
.how-it-works-box {
  background: #1e293b;
  border-radius: 12px;
  padding: 28px;
  margin-top: 40px;
  border: 1px solid rgba(255,255,255,0.05);
}

.hiw-title {
  font-family: var(--disp);
  font-size: 16px;
  font-weight: 800;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hiw-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.hiw-num {
  font-family: var(--disp);
  font-size: 28px;
  font-weight: 900;
  color: rgba(22,163,74,0.25);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.hiw-item-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}

.hiw-item-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

/* ===== RANKINGS VISUAL UPGRADES ===== */
.rank-player-cell { min-width: 180px; }

.rank-player-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 2px;
}

.rank-player-sub {
  font-size: 11px;
  color: var(--sub);
  margin-bottom: 6px;
}

.proj-bar-wrap {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  width: 100%;
  max-width: 140px;
}

.proj-bar {
  height: 100%;
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}

.rank-proj-cell { text-align: center; }

.rank-proj-num {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.rank-proj-label {
  font-size: 10px;
  color: var(--sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rank-row.drafted { opacity: 0.4; }
.rank-row.drafted .rank-player-name { text-decoration: line-through; }

.drafted-toggle {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--sub);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.drafted-toggle:hover { border-color: var(--green); color: var(--green); }
.drafted-toggle.is-drafted { background: var(--green); color: #fff; border-color: var(--green); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--green2); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* ===== HERO ===== */
.hero {
  background: #0b1120;
  padding: 72px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11,17,32,0.92) 0%, rgba(11,17,32,0.72) 45%, rgba(11,17,32,0.45) 100%),
    linear-gradient(180deg, rgba(11,17,32,0.35) 0%, rgba(11,17,32,0.15) 50%, rgba(11,17,32,0.85) 100%);
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--disp);
  font-size: 80px;
  font-weight: 900;
  color: #fff;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 span { color: var(--green); }

/* Live dot */
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 6px;
  animation: livepulse 2s infinite;
  vertical-align: middle;
}
@keyframes livepulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 5px rgba(22,163,74,0); }
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat { flex: 1; }

.hero-stat-num {
  font-family: var(--disp);
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  margin: 0 32px;
}

.hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== QUICK PICK ===== */
.quickpick-section {
  background: #111827;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
}

.quickpick-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.quickpick-label {
  font-family: var(--disp);
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.qp-icon { font-size: 16px; }

.quickpick-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
}

.qp-input {
  flex: 1;
  min-width: 160px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: #fff;
  font-family: var(--body);
  font-size: 13px;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}

.qp-input::placeholder { color: rgba(255,255,255,0.3); }
.qp-input:focus { border-color: var(--green); background: rgba(255,255,255,0.1); }

.qp-vs {
  font-family: var(--disp);
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

.qp-select {
  padding: 10px 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: rgba(255,255,255,0.8);
  font-family: var(--body);
  font-size: 13px;
  outline: none;
  cursor: pointer;
}

.qp-btn {
  padding: 10px 22px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--disp);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}

.qp-btn:hover { background: var(--green2); transform: translateY(-1px); }
.qp-btn:disabled { background: #374151; cursor: not-allowed; transform: none; }

.qp-result {
  width: 100%;
}

.qp-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  padding: 10px 0;
}

.qp-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

.qp-answer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.qp-verdict-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.qp-verdict-name {
  font-family: var(--disp);
  font-size: 22px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.01em;
}

.qp-confidence {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 20px;
}

.qp-summary {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
}

.qp-full-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  white-space: nowrap;
}

.qp-full-link:hover { text-decoration: underline; }

.qp-error {
  font-size: 13px;
  color: #f87171;
  padding: 8px 0;
}

/* ===== TOOLS SECTION ===== */
.tools-section {
  background: #0f172a;
  padding: 0 0 60px;
}

.tools-section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.tools-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}

.tools-section-head .section-label {
  color: rgba(255,255,255,0.5);
}

.tools-section-head .section-date {
  color: rgba(255,255,255,0.3);
}

/* ===== FD GRID ===== */
.fd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}

.fd-card--featured {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  background: var(--green);
}

.fd-card--featured:hover {
  background: var(--green2);
  border-color: transparent;
}

.fd-card--featured .fd-card-title {
  font-size: 44px;
  color: #fff;
}

.fd-card--featured .fd-card-desc {
  color: rgba(255,255,255,0.75);
}

.fd-card--featured .fd-card-btn {
  display: inline-block;
  margin-top: auto;
  background: rgba(0,0,0,0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.fd-card--featured .fd-card-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

.fd-card {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
  position: relative;
  overflow: hidden;
}

.fd-card:hover {
  background: #263348;
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.fd-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.fd-card-title {
  font-family: var(--disp);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-top: 8px;
}

.fd-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  flex: 1;
}

.fd-card-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.03em;
  margin-top: 4px;
}

.fd-card:hover .fd-card-link { color: #4ade80; }

/* Featured card glow */
.fd-card-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
  transition: transform 0.3s;
}
.fd-card--featured:hover .fd-card-glow { transform: scale(1.3); }

/* ===== HOW IT WORKS ===== */
.how-section {
  background: #0b1120;
  padding: 56px 24px 64px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.how-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.how-title {
  font-family: var(--disp);
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.how-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.how-step {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.how-step-num {
  font-family: var(--disp);
  font-size: 48px;
  font-weight: 900;
  color: rgba(22,163,74,0.2);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.03em;
}

.how-step-title {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.how-step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

.how-connector {
  flex-shrink: 0;
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 16px;
  margin-top: 24px;
  position: relative;
}

.how-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid rgba(255,255,255,0.2);
  border-top: 1px solid rgba(255,255,255,0.2);
  transform: rotate(45deg);
}

/* ===== TOOL PAGES ===== */
.tool-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.tool-header {
  margin-bottom: 28px;
}

.tool-header h1 {
  font-family: var(--disp);
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}

.tool-header p {
  font-size: 14px;
  color: var(--sub);
}

.tool-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  margin-bottom: 24px;
}

.tool-form-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 20px;
}

.tool-vs {
  font-family: var(--disp);
  font-size: 22px;
  font-weight: 800;
  color: var(--sub);
  text-align: center;
  padding-bottom: 10px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sub);
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}

.form-input:focus { border-color: var(--green); }

.form-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  outline: none;
  cursor: pointer;
}

.tool-submit {
  width: 100%;
  padding: 13px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s;
}

.tool-submit:hover { background: var(--green2); }
.tool-submit:disabled { background: var(--sub); cursor: not-allowed; }

/* ===== AI RESULT ===== */
.ai-result {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.ai-result-header {
  background: var(--dark);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-verdict {
  font-family: var(--disp);
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
}

.ai-verdict-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ai-confidence {
  margin-left: auto;
  text-align: right;
}

.ai-confidence-val {
  font-family: var(--disp);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.ai-confidence-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ai-result-body {
  padding: 24px;
}

.ai-result-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 16px;
}

.ai-result-body p:last-child { margin-bottom: 0; }

.ai-loading {
  padding: 40px 24px;
  text-align: center;
  color: var(--sub);
}

.ai-loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== RANKINGS TABLE ===== */
.rankings-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
}

.rankings-header {
  background: var(--dark);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rankings-title {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.rankings-week {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.rankings-filters {
  display: flex;
  gap: 6px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.filter-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--white);
  color: var(--sub);
  cursor: pointer;
  transition: all 0.1s;
}

.filter-btn:hover { border-color: var(--green); color: var(--green); }
.filter-btn.active { background: var(--green); color: #fff; border-color: var(--green); }

.rankings-table { width: 100%; border-collapse: collapse; }

.rankings-table th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sub);
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--off);
}

.rankings-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.rankings-table tr:last-child td { border-bottom: none; }
.rankings-table tr:hover td { background: rgba(255,255,255,0.03); }

.rank-num {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 800;
  color: var(--sub);
  width: 40px;
}

.rank-num.top3 { color: var(--green); }

.player-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}

.player-team {
  font-size: 11px;
  color: var(--sub);
  margin-top: 2px;
}

.rank-proj {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
}

.rank-trend {
  font-size: 12px;
  font-weight: 700;
}

.rank-trend.up { color: var(--green); }
.rank-trend.down { color: var(--red); }
.rank-trend.same { color: var(--sub); }

/* ===== POSITION BADGES ===== */
.pos-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border-radius: 2px;
  text-transform: uppercase;
}

.pos-QB { background: #fde8e8; color: #991B1B; }
.pos-RB { background: #ffedd5; color: #9A3412; }
.pos-WR { background: #dcfce7; color: #166534; }
.pos-TE { background: #d1fae5; color: #065F46; }
.pos-K  { background: #fef9c3; color: #854D0E; }
.pos-DST { background: #dbeafe; color: #1E40AF; }

/* ===== WAIVER WIRE ===== */
.waiver-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
}

.waiver-rank {
  font-family: var(--disp);
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  min-width: 36px;
  text-align: center;
}

.waiver-player-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.waiver-meta {
  font-size: 12px;
  color: var(--sub);
  margin-bottom: 8px;
}

.waiver-analysis {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.55;
}

.waiver-ownership {
  text-align: right;
}

.waiver-own-val {
  font-family: var(--disp);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
}

.waiver-own-lbl {
  font-size: 10px;
  color: var(--sub);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== ARTICLE CARDS ===== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px 0;
}

.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.15s;
}

.article-card:hover { border-color: var(--green); }

.article-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.article-headline {
  font-family: var(--disp);
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

.article-card:hover .article-headline { color: var(--green); }

.article-body {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.55;
  margin-bottom: 12px;
}

.article-meta {
  font-size: 11px;
  color: var(--sub);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 28px 20px;
  font-size: 12px;
  line-height: 2;
  border-top: 3px solid var(--green);
  margin-top: 40px;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ===== LAYOUT HELPERS ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
  padding-top: 24px;
}

.sidebar-module {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px;
  margin-bottom: 16px;
}

.sidebar-module-title {
  font-family: var(--disp);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green);
}

/* ===== EDGE SCORE ===== */
.edge-score {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--disp);
  font-size: 15px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
}

.edge-score.high   { background: #dcfce7; color: #166534; }
.edge-score.medium { background: #fef9c3; color: #854D0E; }
.edge-score.low    { background: #fee2e2; color: #991B1B; }

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  gap: 6px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.15s;
}

.page-btn:hover { border-color: var(--green); color: var(--green); }
.page-btn.active { background: var(--green); color: #fff; border-color: var(--green); }

/* ===== POS TABS ===== */
.pos-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pos-tab {
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sub);
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--disp);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pos-tab:hover { border-color: var(--green); color: var(--green); }
.pos-tab.active { background: var(--green); color: #fff; border-color: var(--green); }

/* ===== SCORING ROW ===== */
.scoring-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 16px;
}

/* ===== RANKINGS TABLE ===== */
.rank-week-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.rankings-table-wrap {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}

.rankings-table {
  width: 100%;
  border-collapse: collapse;
}

.rankings-table thead th {
  background: rgba(0,0,0,0.25);
  color: #94a3b8;
  font-family: var(--disp);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 10px 12px;
  text-align: left;
}

.rankings-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}

.rankings-table tbody tr:last-child { border-bottom: none; }

.rankings-table tbody tr:hover { background: rgba(255,255,255,0.03); }

.rankings-table td {
  padding: 10px 12px;
  font-size: 13px;
  color: #cbd5e1;
  vertical-align: top;
}

.rank-num {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 800;
  color: #64748b;
  width: 40px;
}

.rank-num.top3 { color: #16a34a; }

.rank-player-name {
  font-family: var(--disp);
  font-size: 14px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 2px;
}

.rank-player-sub {
  font-size: 11px;
  color: #64748b;
  margin-bottom: 6px;
}

.rank-player-cell { min-width: 160px; }

.rank-proj-cell { text-align: center; }

.rank-proj-num {
  font-family: var(--disp);
  font-size: 16px;
  font-weight: 800;
  color: #16a34a;
}

.rank-proj-label {
  font-size: 10px;
  color: #64748b;
  text-transform: uppercase;
}

.rank-note {
  color: #94a3b8;
  line-height: 1.5;
  font-size: 12px;
}

.rank-action-cell { text-align: right; }

.drafted-toggle {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.drafted-toggle:hover { border-color: #16a34a; color: #16a34a; }

.drafted-toggle.is-drafted {
  background: rgba(22,163,74,0.15);
  border-color: #16a34a;
  color: #16a34a;
}

.rank-row.drafted td { opacity: 0.4; }

.rank-row.drafted .rank-player-name { text-decoration: line-through; }

.proj-bar-wrap {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.proj-bar {
  height: 100%;
  border-radius: 2px;
  transition: width 0.6s ease;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #64748b;
  font-size: 14px;
}

/* ===== WAIVER CARDS ===== */
.waiver-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.waiver-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px;
}

.waiver-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.waiver-name {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.waiver-meta {
  font-size: 12px;
  color: var(--sub);
  display: flex;
  align-items: center;
  gap: 6px;
}

.waiver-analysis {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 10px;
}

.waiver-priority {
  font-size: 12px;
  color: var(--sub);
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.waiver-priority strong { color: var(--dark); }

/* ===== TRADE ANALYZER ===== */
.trade-sides {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 20px;
}

.trade-side {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px;
}

.trade-side-label {
  font-family: var(--disp);
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green);
}

.trade-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--sub);
  padding-top: 40px;
}

/* ===== NEWS GRID ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.news-card {
  display: block;
  text-decoration: none;
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: translateY(14px);
}

.news-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease calc(var(--reveal-delay, 0s)), transform 0.4s ease calc(var(--reveal-delay, 0s)), border-color 0.2s, box-shadow 0.2s;
}

.news-card:hover {
  border-color: rgba(22,163,74,0.4);
  box-shadow: 0 0 0 1px rgba(22,163,74,0.15);
  transform: translateY(-2px);
}
/* Live feed cards render immediately (no reveal observer). */
.news-grid .news-card { opacity: 1; transform: none; cursor: default; display: flex; flex-direction: column; }
.news-grid .news-card:hover { transform: translateY(-2px); }
.news-src-badge { font-size: 10px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: #60a5fa; background: rgba(96,165,250,0.14); padding: 3px 8px; border-radius: 5px; }
.news-impact { color: #cbd5e1; font-size: 12.5px; line-height: 1.5; margin: 0 0 14px; background: rgba(22,163,74,0.08); border-left: 2px solid #16a34a; padding: 8px 11px; border-radius: 0 6px 6px 0; }
.news-impact span { display: block; color: #4ade80; font-weight: 800; font-size: 10px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
.news-card-read { margin-top: auto; align-self: flex-start; color: #4ade80; font-size: 13px; font-weight: 700; text-decoration: none; }
.news-card-read:hover { text-decoration: underline; }
.news-attrib { color: #475569; font-size: 11.5px; text-align: center; margin-top: 20px; }

.news-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.news-card-date {
  font-size: 11px;
  color: #64748b;
  margin-left: auto;
}

.news-date {
  font-size: 11px;
  color: #64748b;
}

.news-card-headline {
  font-family: var(--disp);
  font-size: 17px;
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1.3;
  margin-bottom: 8px;
}

.news-card-summary {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 14px;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #64748b;
}

.news-author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.news-card-read {
  font-size: 12px;
  font-weight: 600;
  color: #16a34a;
}

.news-search-input {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #f1f5f9;
  font-size: 13px;
  padding: 7px 12px;
  outline: none;
  width: 180px;
  transition: border-color 0.2s;
}

.news-search-input::placeholder { color: #64748b; }
.news-search-input:focus { border-color: #16a34a; }

/* Old list style (legacy article.php) */
.news-card-body {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.6;
  margin-bottom: 10px;
}

.news-card-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.news-card-link:hover { text-decoration: underline; }

/* ===== SHARED INTERACTIVE PAGE COMPONENTS ===== */

.ipage-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.ipage-title {
  font-family: var(--disp);
  font-size: 36px;
  font-weight: 900;
  color: #f1f5f9;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.ipage-sub {
  font-size: 14px;
  color: #94a3b8;
}

.ipage-answer {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 720px;
  margin-top: 10px;
}

.ipage-header-right { flex-shrink: 0; }

.data-source-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.2);
  padding: 6px 12px;
  border-radius: 20px;
}

/* Stat strip (waiver/injury) */
.ww-stat-strip {
  display: flex;
  align-items: center;
  background: var(--dark);
  border-radius: 10px;
  padding: 20px 28px;
  margin-bottom: 24px;
  gap: 0;
}

.ww-stat { flex: 1; }

.ww-stat-num {
  font-family: var(--disp);
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.ww-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ww-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  margin: 0 28px;
}

/* Controls row */
.ipage-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ipage-controls-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pos-filter-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pos-pill {
  font-family: var(--disp);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--sub);
  cursor: pointer;
  transition: all 0.15s;
}

.pos-pill:hover { border-color: var(--green); color: var(--green); }
.pos-pill.active { background: var(--green); color: #fff; border-color: var(--green); }

.ghost-btn {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: #94a3b8;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s;
}

.ghost-btn:hover { border-color: var(--green); color: var(--green); }

/* Loading state */
.ipage-loading {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
}

.ipage-loading-bar {
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
}

.ipage-loading-fill {
  height: 100%;
  background: var(--green);
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
}

.ipage-loading-text {
  font-size: 13px;
  color: #64748b;
}

.ipage-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  color: #f87171;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
}

.empty-state {
  padding: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--sub);
}

/* ===== WAIVER WIRE CARDS ===== */
.ww-list { display: flex; flex-direction: column; gap: 12px; }

.ww-card {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 20px 20px 16px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.ww-card:hover { border-color: var(--green); box-shadow: 0 2px 12px rgba(22,163,74,0.08); }

.ww-card-rank {
  font-family: var(--disp);
  font-size: 24px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  padding-top: 2px;
}

.ww-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 12px;
}

.ww-card-name {
  font-family: var(--disp);
  font-size: 20px;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.ww-card-meta {
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ww-prio-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.prio-high { background: rgba(22,163,74,0.12); color: #16a34a; }
.prio-med  { background: rgba(245,158,11,0.12); color: #d97706; }
.prio-low  { background: rgba(100,116,139,0.1); color: #64748b; }

.ww-card-analysis {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 14px;
}

.ww-card-bars { display: flex; flex-direction: column; gap: 8px; }

.ww-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ww-bar-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  width: 36px;
  flex-shrink: 0;
}

.ww-bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.ww-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--green);
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}

.trend-fill { background: #3b82f6; }

.ww-bar-val {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  min-width: 70px;
  text-align: right;
}

/* ===== INJURY CARDS ===== */
.inj-list { display: flex; flex-direction: column; gap: 10px; }

.inj-card {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  transition: border-color 0.15s;
}

.inj-card:hover { border-color: rgba(100,116,139,0.4); }

.inj-card-left { display: flex; }

.inj-status-bar {
  width: 4px;
  flex-shrink: 0;
}

.inj-card-body { flex: 1; padding: 16px 18px; }

.inj-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.inj-name {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.inj-meta {
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.inj-status-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.inj-impact {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}

.inj-card-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border-left: 1px solid rgba(255,255,255,0.07);
  min-width: 90px;
  gap: 6px;
}

.inj-impact-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

.inj-impact-track {
  width: 60px;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.inj-impact-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}

.inj-impact-score {
  font-family: var(--disp);
  font-size: 14px;
  font-weight: 800;
}

/* ===== TRADE ANALYZER INTERACTIVE ===== */
.trade-input-grid {
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  gap: 0;
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.trade-input-side { padding: 24px; }

.trade-side-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.trade-side-icon {
  font-size: 16px;
  font-weight: 700;
}

.give .trade-side-icon { color: #f87171; }
.get  .trade-side-icon { color: #4ade80; }

.trade-side-title {
  font-family: var(--disp);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.give .trade-side-title { color: rgba(255,255,255,0.6); }
.get  .trade-side-title { color: rgba(255,255,255,0.6); }

.trade-player-inputs { display: flex; flex-direction: column; gap: 10px; }

.trade-player-row { position: relative; }

.trade-player-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  color: #fff;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}

.trade-player-input::placeholder { color: rgba(255,255,255,0.2); }
.trade-player-input:focus { border-color: var(--green); background: rgba(255,255,255,0.08); }

.trade-vs-col {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
}

.trade-vs-icon {
  font-size: 20px;
  color: rgba(255,255,255,0.2);
  font-weight: 700;
}

/* Trade verdict */
.trade-verdict-header {
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trade-verdict-sides {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.trade-verdict-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.give-label { color: #f87171; }
.get-label  { color: #4ade80; }

.trade-verdict-player {
  font-family: var(--disp);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.trade-verdict-center { text-align: center; }

.trade-verdict-badge {
  font-family: var(--disp);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.trade-verdict-winner {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== NEWS LIST ===== */
.news-list {
  display: flex;
  flex-direction: column;
}

.news-list-item {
  display: block;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.12s;
}

.news-list-item:first-child { border-top: 1px solid var(--border); }
.news-list-item:hover .news-list-headline { color: var(--green); }

.news-list-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.news-list-headline {
  font-family: var(--disp);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 8px;
  transition: color 0.12s;
}

.news-list-summary {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.6;
  margin-bottom: 10px;
  max-width: 720px;
}

.news-list-byline {
  font-size: 12px;
  color: var(--sub);
  font-weight: 500;
}

/* ===== ARTICLE PAGE ===== */
.article-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 80px;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0 28px;
  font-size: 12px;
  color: var(--sub);
}

.article-breadcrumb a {
  color: var(--sub);
  text-decoration: none;
  transition: color 0.12s;
}

.article-breadcrumb a:hover { color: var(--green); }

.breadcrumb-sep { color: var(--border); }

.article-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.article-header { margin-bottom: 28px; }

.article-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.article-headline {
  font-family: var(--disp);
  font-size: 42px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
}

.article-byline-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.article-byline-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.article-byline-meta {
  font-size: 12px;
  color: var(--sub);
  margin-top: 2px;
}

.byline-dot { margin: 0 4px; }

.article-summary {
  font-size: 18px;
  color: var(--ink);
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.article-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #1a202c;
  margin-bottom: 22px;
}

.article-body p:last-child { margin-bottom: 0; }

/* Sidebar */
.article-sidebar { position: sticky; top: 72px; }

.sidebar-tool-links { display: flex; flex-direction: column; gap: 2px; }

.sidebar-tool-link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: color 0.12s;
}

.sidebar-tool-link:last-child { border-bottom: none; }
.sidebar-tool-link:hover .sidebar-tool-name { color: var(--green); }

.sidebar-tool-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
  transition: color 0.12s;
}

.sidebar-tool-desc {
  font-size: 12px;
  color: var(--sub);
}

/* Related articles */
.article-related {
  border-top: 2px solid var(--border);
  margin-top: 60px;
  padding-top: 32px;
}

.article-related-inner { max-width: 860px; }

.article-related-title {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.related-card {
  display: block;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}

.related-card:hover { border-color: var(--green); }
.related-card:hover .related-card-headline { color: var(--green); }

.related-card .pos-badge { margin-bottom: 10px; display: inline-block; }

.related-card-headline {
  font-family: var(--disp);
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 8px;
  transition: color 0.12s;
}

.related-card-meta {
  font-size: 11px;
  color: var(--sub);
}

/* ===== MATCHUP ANALYZER ===== */
.matchup-search-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.matchup-search-box {
  flex: 1;
  min-width: 220px;
  position: relative;
}

.matchup-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.matchup-search-input {
  width: 100%;
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #f1f5f9;
  font-size: 15px;
  padding: 11px 14px 11px 40px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.matchup-search-input::placeholder { color: #64748b; }
.matchup-search-input:focus { border-color: #16a34a; }

.matchup-result-card {
  display: flex;
  gap: 24px;
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
  animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.matchup-result-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.matchup-grade-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gc, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px color-mix(in srgb, var(--gc, #16a34a) 30%, transparent);
}

.matchup-grade-letter {
  font-family: var(--disp);
  font-size: 28px;
  font-weight: 900;
}

.matchup-grade-label {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

.matchup-result-right { flex: 1; }

.matchup-result-player {
  font-family: var(--disp);
  font-size: 22px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 4px;
}

.matchup-result-opp {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 14px;
}

.matchup-result-rec {
  font-weight: 700;
  margin-left: 8px;
}

.matchup-result-body p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0 0 8px;
}

.matchup-board-section { margin-top: 40px; }

.matchup-board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.matchup-board-title {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 800;
  color: #f1f5f9;
}

.matchup-board-list { display: flex; flex-direction: column; gap: 6px; }

.matchup-board-row {
  display: grid;
  grid-template-columns: 32px 30px 1fr 48px 1fr;
  gap: 12px;
  align-items: center;
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 12px 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: background 0.15s;
}

.matchup-board-row.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease calc(var(--reveal-delay, 0s)), transform 0.35s ease calc(var(--reveal-delay, 0s)), background 0.15s;
}

.matchup-board-row:hover { background: rgba(255,255,255,0.04); }

.matchup-board-rank {
  font-family: var(--disp);
  font-size: 16px;
  font-weight: 800;
  color: #64748b;
  text-align: center;
}

.matchup-board-name {
  font-family: var(--disp);
  font-size: 14px;
  font-weight: 700;
  color: #f1f5f9;
}

.matchup-board-meta {
  font-size: 11px;
  color: #64748b;
}

.matchup-board-grade {
  font-family: var(--disp);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  border-radius: 6px;
  padding: 4px 0;
  border: 1px solid;
}

.matchup-board-note {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.45;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .fd-grid { grid-template-columns: repeat(2, 1fr); }
  .fd-card--featured { grid-column: 1 / 3; grid-row: auto; }
  .fd-card--featured .fd-card-title { font-size: 36px; }
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .article-related-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .waiver-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .trade-sides { grid-template-columns: 1fr; }
  .trade-arrow { display: none; }
}

@media (max-width: 600px) {
  .top-bar-inner { padding: 0 12px 0 16px; height: 46px; }
  .top-nav { display: none; }
  .top-nav-right { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .hero { padding: 48px 20px 56px; overflow-x: clip; }
  .hero h1 { font-size: clamp(32px, 10.5vw, 52px); overflow-wrap: break-word; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat-divider { display: none; }
  .how-steps { flex-direction: column; gap: 32px; }
  .how-connector { display: none; }
  .quickpick-inner { flex-direction: column; align-items: flex-start; }
  .quickpick-form { width: 100%; }
  .player-cards-row { grid-template-columns: 1fr; }
  .vs-badge { text-align: center; }
  .verdict-players { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .hiw-grid { grid-template-columns: 1fr; }
  .format-row { flex-direction: column; align-items: stretch; }
  .isubmit-btn { margin-left: 0; justify-content: center; }
  .steps-bar { overflow-x: auto; }
  .step-label { display: none; }
  .fd-grid { grid-template-columns: 1fr; }
  .fd-card--featured { grid-column: auto; grid-row: auto; }
  .tool-form-row { grid-template-columns: 1fr; }
  .tool-vs { display: none; }
  .waiver-card { grid-template-columns: auto 1fr; }
  .waiver-ownership { display: none; }
  .rankings-table th:nth-child(4),
  .rankings-table td:nth-child(4) { display: none; }
  .tn-keyword-row { flex-direction: column; }
  .tn-generate-btn { width: 100%; }
  .tn-name-card { flex-wrap: wrap; gap: 10px; }
  .tn-name-actions { width: 100%; justify-content: flex-start; }
  .md-settings-row { flex-direction: column; }
  .cs-table th:nth-child(6), .cs-table td:nth-child(6) { display: none; }
  .md-round-row { flex-direction: column; gap: 4px; }
}

/* ===== STREAMING RESULT BOX ===== */
.stream-result-box {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 20px 22px;
  margin-top: 4px;
}
.stream-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #16a34a;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.stream-dots span {
  animation: streamBlink 1.2s infinite;
  opacity: 0;
}
.stream-dots span:nth-child(2) { animation-delay: .2s; }
.stream-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes streamBlink {
  0%,100% { opacity: 0; }
  50%      { opacity: 1; }
}
.stream-text {
  font-size: 14px;
  line-height: 1.7;
  color: #cbd5e1;
  white-space: pre-wrap;
  min-height: 40px;
}

/* ===== TEAM NAME GENERATOR ===== */

.tn-trending-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: rgba(22,163,74,0.07);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 20px;
}
.tn-trending-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #16a34a;
  white-space: nowrap;
}
.tn-trending-players {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tn-trending-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 3px 10px 3px 5px;
  font-size: 12px;
  color: #cbd5e1;
}
.tn-trend-count {
  font-size: 10px;
  color: #64748b;
}

.tn-generator-box {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tn-keyword-row {
  display: flex;
  gap: 10px;
}
.tn-keyword-input {
  flex: 1;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 14px;
  color: #f1f5f9;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.tn-keyword-input::placeholder { color: #475569; }
.tn-keyword-input:focus { border-color: #16a34a; }
.tn-generate-btn {
  background: #16a34a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, opacity .2s;
}
.tn-generate-btn:hover { background: #15803d; }
.tn-generate-btn:disabled { opacity: .5; cursor: not-allowed; }

.tn-cat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tn-cat-pill {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  cursor: pointer;
  font-family: inherit;
  transition: all .18s;
}
.tn-cat-pill:hover { border-color: rgba(255,255,255,0.25); color: #f1f5f9; }
.tn-cat-pill.active {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}

.tn-empty-prompt {
  text-align: center;
  padding: 60px 20px;
  color: #475569;
}
.tn-empty-icon { font-size: 40px; margin-bottom: 12px; }
.tn-empty-text { font-size: 16px; font-weight: 600; color: #64748b; margin-bottom: 6px; }
.tn-empty-sub  { font-size: 13px; color: #475569; }

.tn-names-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tn-name-card {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.tn-name-card:hover { border-color: rgba(255,255,255,0.15); }
.tn-name-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}
.tn-name-left {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.tn-name-text {
  font-size: 15px;
  font-weight: 700;
  color: #f1f5f9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 380px;
}
.tn-cat-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 4px;
  padding: 2px 7px;
  flex-shrink: 0;
}
.tn-name-actions {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}
.tn-explain-btn, .tn-copy-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: all .18s;
}
.tn-explain-btn:hover { border-color: #a855f7; color: #a855f7; }
.tn-copy-btn:hover    { border-color: #16a34a; color: #16a34a; }
.tn-copy-btn.copied   { border-color: #16a34a; color: #16a34a; }

.tn-explanation {
  max-height: 0;
  overflow: hidden;
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
  border-top: 0px solid rgba(255,255,255,0.06);
  padding: 0 16px;
  transition: max-height .3s ease, padding .3s ease, border-top-width .2s;
}
.tn-explanation.open {
  max-height: 100px;
  padding: 10px 16px 14px;
  border-top-width: 1px;
}

/* ===== CHEAT SHEET ===== */
.cs-pos-section { margin-bottom: 32px; }
.cs-pos-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cs-pos-count { font-size: 12px; color: #475569; }
.cs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.cs-table th {
  text-align: left;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #475569;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cs-table td { padding: 0; }
.cs-tier-row td {
  padding: 10px 10px 4px;
  background: transparent;
}
.cs-tier-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.cs-player-row {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background .15s;
}
.cs-player-row:hover { background: rgba(255,255,255,0.03); }
.cs-player-row td { padding: 9px 10px; vertical-align: middle; }
.cs-rank { color: #475569; font-size: 12px; font-weight: 700; width: 32px; }
.cs-player-cell { display: flex; align-items: center; gap: 6px; }
.cs-player-name { color: #f1f5f9; font-weight: 600; }
.cs-status-badge {
  font-size: 9px;
  font-weight: 800;
  border: 1px solid;
  border-radius: 3px;
  padding: 1px 4px;
  letter-spacing: .04em;
}
.cs-team { color: #64748b; font-size: 12px; }
.cs-proj { color: #16a34a; font-weight: 700; font-size: 13px; }
.cs-tier-dot { font-size: 11px; font-weight: 700; }
.cs-note { color: #64748b; font-size: 12px; max-width: 340px; }
@media print {
  .top-bar, .section-bar, .ipage-controls, .ipage-header, #csPrintBtn { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .cs-table { font-size: 10px; }
  .cs-player-name { color: #000 !important; }
  .cs-proj { color: #000 !important; }
}

/* ===== MOCK DRAFT ===== */
.md-settings-box {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.md-settings-row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.md-setting-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 110px;
}
.md-setting-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #64748b;
}
.md-setting-btn-group { justify-content: flex-end; }
.md-setting-btn-group .isubmit-btn { width: 100%; }

.md-board {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
}
.md-board-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}
.md-rounds-list { padding: 8px 0; }
.md-round-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background .15s;
}
.md-round-row:last-child { border-bottom: none; }
.md-round-row:hover { background: rgba(255,255,255,0.03); }
.md-round-num {
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  min-width: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.md-snake-note {
  font-size: 9px;
  background: rgba(59,130,246,0.15);
  color: #3b82f6;
  border-radius: 3px;
  padding: 1px 4px;
  font-weight: 600;
}
.md-round-pick {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 200px;
  flex-shrink: 0;
}
.md-pick-name {
  font-size: 14px;
  font-weight: 700;
  color: #f1f5f9;
}
.md-pick-reason {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}
.md-summary-box {
  margin: 0;
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(22,163,74,0.05);
}
.md-summary-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #16a34a;
  margin-bottom: 8px;
}
.md-summary-box p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* ── League Assistant (My Team) ─────────────────────────────────────────────── */
.assist-connect-box {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 24px;
  max-width: 560px;
}
.assist-label { display: block; font-size: 13px; color: #94a3b8; margin-bottom: 8px; font-weight: 600; }
.assist-input-row { display: flex; gap: 10px; }
.assist-input {
  flex: 1; background: #0f172a; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 12px 14px; color: #e2e8f0; font-size: 15px; font-family: inherit;
}
.assist-input:focus { outline: none; border-color: #22c55e; }
.assist-hint { font-size: 12px; color: #64748b; margin-top: 10px; }
.assist-error { font-size: 13px; color: #f87171; margin-top: 12px; }

.assist-section-title { font-size: 15px; font-weight: 700; color: #e2e8f0; margin: 8px 0 14px; }
.assist-league-list { display: flex; flex-direction: column; gap: 10px; }
.assist-league {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: #1e293b; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px;
  padding: 16px 18px; cursor: pointer; text-align: left; transition: border-color 0.15s, transform 0.1s;
  color: inherit; font-family: inherit; width: 100%;
}
.assist-league:hover { border-color: #22c55e; transform: translateY(-1px); }
.assist-league-name { font-size: 15px; font-weight: 700; color: #f1f5f9; }
.assist-league-meta { font-size: 12px; color: #94a3b8; margin-top: 3px; }
.assist-league-arrow { color: #22c55e; font-size: 18px; }

.mt-result { margin-top: 8px; }
.mt-header {
  display: flex; gap: 20px; align-items: center; background: #1e293b;
  border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 22px; margin-bottom: 18px;
}
.mt-header-body { flex: 1; }
.mt-league-name { font-size: 16px; font-weight: 800; color: #f1f5f9; margin-bottom: 8px; }
.mt-scoring { font-size: 11px; color: #94a3b8; font-weight: 600; background: rgba(255,255,255,0.06); padding: 2px 8px; border-radius: 999px; margin-left: 6px; }
.mt-outlook { font-size: 14px; line-height: 1.6; color: #cbd5e1; }

.mt-block { margin-bottom: 22px; }
.mt-block-title { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: #64748b; font-weight: 700; margin-bottom: 12px; }
.mt-verdicts { display: flex; flex-direction: column; gap: 8px; }
.mt-verdict { background: #1e293b; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 14px 16px; }
.mt-verdict-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mt-verdict-player { display: flex; align-items: center; gap: 10px; }
.mt-verdict-name { font-size: 14px; font-weight: 700; color: #f1f5f9; }
.mt-verdict-tag { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; border: 1px solid; white-space: nowrap; }
.mt-verdict-note { font-size: 13px; color: #94a3b8; line-height: 1.5; margin-top: 8px; }

.mt-need { display: flex; align-items: flex-start; gap: 10px; background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.2); border-radius: 10px; padding: 12px 14px; margin-bottom: 8px; }
.mt-need-note { font-size: 13px; color: #cbd5e1; line-height: 1.5; }

.mt-actions { margin: 8px 0 18px; }
.mt-premium-teaser {
  font-size: 13px; color: #cbd5e1; line-height: 1.6; background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(59,130,246,0.08));
  border: 1px solid rgba(34,197,94,0.2); border-radius: 10px; padding: 16px 18px;
}
@media (max-width: 560px) {
  .assist-input-row { flex-direction: column; }
  .mt-header { flex-direction: column; text-align: center; }
}

/* Flagship nav highlight */
.top-nav-item.nav-flagship { color: #22c55e; font-weight: 700; }
.top-nav-item.nav-flagship::before { content: "\2726"; margin-right: 5px; font-size: 11px; }

.assist-demo-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 16px; font-size: 13px; color: #94a3b8; }
.assist-demo-btn { background: none; border: none; color: #22c55e; font-weight: 700; font-size: 13px; cursor: pointer; padding: 0; font-family: inherit; }
.assist-demo-btn:hover { text-decoration: underline; }

.assist-league-season { font-size: 11px; font-weight: 700; color: #94a3b8; background: rgba(255,255,255,0.06); padding: 2px 8px; border-radius: 999px; margin-left: 6px; vertical-align: middle; }

/* Waiver moves + trades in the assistant */
.mt-move { background: rgba(22,163,74,0.06); border: 1px solid rgba(22,163,74,0.22); border-radius: 10px; padding: 14px 16px; margin-bottom: 8px; }
.mt-move-head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.mt-move-add { font-size: 11px; font-weight: 800; color: #22c55e; letter-spacing: 0.03em; }
.mt-move-player { font-size: 14px; font-weight: 700; color: #f1f5f9; }
.mt-move-team { font-size: 12px; color: #94a3b8; }
.mt-move-drop { font-size: 12px; color: #f87171; margin-top: 6px; font-weight: 600; }
.mt-move-reason { font-size: 13px; color: #94a3b8; line-height: 1.5; margin-top: 7px; }

.mt-trade { background: rgba(59,130,246,0.06); border: 1px solid rgba(59,130,246,0.22); border-radius: 10px; padding: 14px 16px; margin-bottom: 8px; }
.mt-trade-swap { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13px; color: #cbd5e1; }
.mt-trade-give b, .mt-trade-get b { color: #f1f5f9; }
.mt-trade-arrow { color: #3b82f6; font-size: 16px; }

/* Account / auth */
.acct-link { color: #e2e8f0; font-size: 13px; font-weight: 600; text-decoration: none; padding: 6px 12px; border: 1px solid rgba(255,255,255,0.14); border-radius: 7px; }
.acct-link:hover { border-color: #22c55e; color: #22c55e; }
.acct-logout { background: none; border: none; color: #64748b; font-size: 12px; cursor: pointer; margin-left: 10px; font-family: inherit; }
.acct-logout:hover { color: #f87171; }

.auth-head { text-align: center; margin: 8px 0 20px; }
.auth-logo { width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 14px; background: linear-gradient(135deg,#16a34a,#15803d); display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 8px 22px rgba(22,163,74,0.35); }
.auth-h1 { font-family: var(--disp); font-weight: 800; color: #fff; font-size: 26px; line-height: 1.15; margin-bottom: 8px; }
.auth-p { color: #94a3b8; font-size: 14px; line-height: 1.5; max-width: 340px; margin: 0 auto; }

.auth-card { background: linear-gradient(180deg,#18243c,#131f36); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 22px; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.auth-tabs { display: flex; gap: 4px; margin-bottom: 18px; background: #0f172a; padding: 4px; border-radius: 10px; }
.auth-tab { flex: 1; background: none; border: none; color: #94a3b8; padding: 9px; border-radius: 7px; font-weight: 700; font-size: 14px; cursor: pointer; font-family: var(--disp); transition: all 0.15s; }
.auth-tab:hover { color: #e2e8f0; }
.auth-tab.active { background: #16a34a; color: #fff; box-shadow: 0 2px 8px rgba(22,163,74,0.35); }

.auth-google { display: flex; justify-content: center; margin: 4px 0 2px; min-height: 42px; color-scheme: light; }
.auth-divider { display: flex; align-items: center; gap: 12px; color: #64748b; font-size: 12px; margin: 16px 0 16px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }

.auth-card .assist-label { font-size: 12.5px; margin-bottom: 6px; }
.auth-card .assist-input { width: 100%; background: #0f172a; border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 12px 14px; color: #e2e8f0; font-size: 15px; transition: border-color 0.15s, box-shadow 0.15s; }
.auth-card .assist-input:focus { border-color: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,0.18); }
#signupName { margin-bottom: 14px; }
.auth-sub { font-size: 12px; color: #64748b; margin-top: 16px; text-align: center; }
.auth-pass-label { display: flex; align-items: baseline; justify-content: space-between; }
.auth-forgot { color: #4ade80; font-size: 12px; font-weight: 600; cursor: pointer; }
.auth-forgot:hover { text-decoration: underline; }
.auth-notice { background: rgba(22,163,74,0.12); border: 1px solid rgba(34,197,94,0.3); color: #86efac; font-size: 13px; border-radius: 9px; padding: 11px 13px; margin-bottom: 16px; }
.auth-inline-notice { color: #86efac; font-size: 12.5px; margin-top: 8px; line-height: 1.45; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; align-items: start; }
.price-amt .price-per { font-family: var(--disp); font-size: 15px; font-weight: 700; color: #94a3b8; margin-left: 3px; }
.price-save { display: inline-block; margin-top: 6px; background: rgba(34,197,94,0.14); color: #4ade80; font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 999px; letter-spacing: 0.02em; }
.price-card { background: #131f36; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 26px 24px; position: relative; }
.price-card-pro { border-color: rgba(34,197,94,0.5); box-shadow: 0 0 0 1px rgba(34,197,94,0.25), 0 20px 50px rgba(0,0,0,0.4); background: linear-gradient(180deg,#16281f,#131f36); }
.price-badge { position: absolute; top: -11px; right: 20px; background: #16a34a; color: #fff; font-size: 10.5px; font-weight: 800; padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em; }
.price-tier { font-family: var(--disp); font-weight: 800; color: #fff; font-size: 16px; }
.price-amt { margin: 8px 0 2px; }
.price-amt b { font-family: var(--disp); font-size: 40px; font-weight: 800; color: #fff; }
.price-note { color: #64748b; font-size: 12.5px; margin-bottom: 18px; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 22px; }
.price-list li { color: #cbd5e1; font-size: 13.5px; line-height: 1.4; padding-left: 26px; position: relative; }
.price-list li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: #22c55e; font-weight: 800; }
.price-list li b { color: #fff; }
.price-btn { width: 100%; justify-content: center; text-align: center; }
.price-msg { color: #f87171; font-size: 12.5px; margin-top: 10px; text-align: center; }
.price-foot { text-align: center; color: #64748b; font-size: 12.5px; margin-top: 22px; }
.price-foot a { color: #4ade80; }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; } }

/* Assistant platform toggle (Sleeper / ESPN) */
.assist-plat-tab { padding: 8px 18px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.12); background: #131f36; color: #94a3b8; font-weight: 700; cursor: pointer; font-family: inherit; font-size: 14px; }
.assist-plat-tab.active { background: #22c55e; color: #0b1220; border-color: #22c55e; }

/* Demo-mode upgrade CTA (assistant): styled as an offer, not a red lock. */
.mt-locked.mt-demo-cta { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.32); }
.mt-locked.mt-demo-cta .mt-locked-title { color: #4ade80; }

/* Contact page */
.contact-card { display: flex; flex-direction: column; gap: 4px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; background: #131f36; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 16px 18px; margin-bottom: 10px; color: #cbd5e1; font-size: 14px; line-height: 1.5; }
.contact-ic { font-size: 20px; flex-shrink: 0; }
.contact-h { font-family: var(--disp); font-weight: 700; color: #fff; font-size: 14px; margin-bottom: 3px; }
.contact-row a { color: #4ade80; }

/* Legal pages */
.legal-page p { color: #cbd5e1; font-size: 14.5px; line-height: 1.7; margin-bottom: 14px; }
.legal-page h2 { font-family: var(--disp); color: #fff; font-size: 17px; font-weight: 800; margin: 26px 0 10px; }
.legal-page a { color: #4ade80; }
.legal-page a:hover { text-decoration: underline; }

/* Saved teams quick-access on the assistant */
.mt-saved { margin-bottom: 22px; }
.mt-saved-title { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: #64748b; font-weight: 700; margin-bottom: 10px; }
.mt-saved-list { display: flex; flex-wrap: wrap; gap: 10px; }
.mt-saved-team { display: flex; align-items: center; gap: 10px; background: #1e293b; border: 1px solid rgba(34,197,94,0.25); border-radius: 10px; padding: 12px 16px; cursor: pointer; color: inherit; font-family: inherit; }
.mt-saved-team:hover { border-color: #22c55e; }
.mt-saved-name { font-size: 14px; font-weight: 700; color: #f1f5f9; }
.mt-saved-meta { font-size: 11px; color: #94a3b8; }
.mt-signup-cta { margin-top: 16px; background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(59,130,246,0.1)); border: 1px solid rgba(34,197,94,0.25); border-radius: 10px; padding: 16px 18px; font-size: 13px; color: #cbd5e1; }
.mt-signup-cta a { color: #22c55e; font-weight: 700; text-decoration: none; }

/* Premium gating UI */
.mt-locked { background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(59,130,246,0.1)); border: 1px solid rgba(34,197,94,0.3); border-radius: 12px; padding: 20px; margin-bottom: 22px; text-align: center; }
.mt-locked-title { font-size: 15px; font-weight: 800; color: #f1f5f9; }
.mt-locked-sub { font-size: 13px; color: #cbd5e1; line-height: 1.6; margin-top: 8px; max-width: 460px; margin-left: auto; margin-right: auto; }
.mt-plan-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.mt-plan-badge { font-size: 11px; font-weight: 800; letter-spacing: 0.04em; color: #06240f; background: #22c55e; padding: 4px 12px; border-radius: 999px; }
/* Season Pass holders see their expiry here instead of a portal button. */
.mt-plan-note { font-size: 12px; color: #94a3b8; }
a.acct-logout { text-decoration: none; }
a.acct-logout:hover { color: #22c55e; }

/* Roster display + lineup moves in the assistant */
.mt-roster { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mt-roster-col { background: #1e293b; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 14px 16px; }
.mt-roster-head { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: #64748b; font-weight: 700; margin-bottom: 10px; }
.mt-roster-player { display: flex; align-items: center; gap: 9px; padding: 5px 0; }
.mt-roster-name { font-size: 13px; font-weight: 600; color: #e2e8f0; flex: 1; }
.mt-roster-team { font-size: 11px; color: #94a3b8; }
.mt-lineup { background: rgba(59,130,246,0.06); border-color: rgba(59,130,246,0.22); }
@media (max-width: 560px) { .mt-roster { grid-template-columns: 1fr; } }

/* Homepage: My Team feature band */
.myteam-band { position: relative; overflow: hidden; background: radial-gradient(72% 120% at 50% -12%, rgba(34,197,94,0.14), transparent 62%), linear-gradient(180deg, #0d1727, #0a1120); border-top: 1px solid rgba(34,197,94,0.22); border-bottom: 1px solid rgba(34,197,94,0.22); padding: 62px 20px; }
.myteam-band-inner { max-width: 960px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.myteam-band-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #22c55e; margin-bottom: 12px; }
.myteam-band-title { font-size: 32px; font-weight: 900; color: #f8fafc; margin: 0 0 12px; line-height: 1.15; }
.myteam-band-sub { font-size: 15px; color: #cbd5e1; line-height: 1.6; max-width: 620px; margin: 0 auto 34px; }
.myteam-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 34px; }
.myteam-feature { text-align: left; background: linear-gradient(180deg, #16233d, #111c31); border: 1px solid rgba(34,197,94,0.22); border-radius: 14px; padding: 22px 20px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.myteam-feature:hover { transform: translateY(-3px); border-color: rgba(34,197,94,0.5); box-shadow: 0 12px 32px rgba(34,197,94,0.16); }
.myteam-feature-ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(34,197,94,0.13); color: #4ade80; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.myteam-feature-ico svg { width: 22px; height: 22px; }
.myteam-feature-title { font-size: 15.5px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.myteam-feature-desc { font-size: 13px; color: #94a3b8; line-height: 1.5; }
.myteam-band .btn-primary { box-shadow: 0 8px 26px rgba(34,197,94,0.30); }
@media (max-width: 640px) { .myteam-features { grid-template-columns: 1fr; } .myteam-band-title { font-size: 25px; } }

/* Assistant dashboard tabs */
.mt-tabs { display: flex; align-items: center; gap: 6px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 20px; }
.mt-tab { background: none; border: none; border-bottom: 2px solid transparent; color: #94a3b8; font-size: 14px; font-weight: 700; padding: 10px 14px; cursor: pointer; font-family: inherit; }
.mt-tab:hover { color: #e2e8f0; }
.mt-tab.active { color: #22c55e; border-bottom-color: #22c55e; }
.mt-tab-reset { margin-left: auto; background: none; border: none; color: #64748b; font-size: 12px; cursor: pointer; font-family: inherit; }
.mt-tab-reset:hover { color: #e2e8f0; }
.mt-draft-cta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }

/* Free agents list */
.fa-intro { font-size: 13px; color: #94a3b8; line-height: 1.6; margin-bottom: 16px; }
.fa-intro b { color: #e2e8f0; }
.fa-fit-key { color: #22c55e; font-weight: 700; }
.fa-list { display: flex; flex-direction: column; gap: 8px; }
.fa-row { display: flex; align-items: center; gap: 14px; background: #1e293b; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 14px 16px; }
.fa-rank { font-size: 14px; font-weight: 800; color: #64748b; width: 22px; text-align: center; flex-shrink: 0; }
.fa-main { flex: 1; min-width: 0; }
.fa-top { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.fa-name { font-size: 14px; font-weight: 700; color: #f1f5f9; }
.fa-team { font-size: 12px; color: #94a3b8; }
.fa-fit { font-size: 10px; font-weight: 800; letter-spacing: 0.03em; color: #06240f; background: #22c55e; padding: 2px 8px; border-radius: 999px; text-transform: uppercase; }
.fa-note { font-size: 13px; color: #94a3b8; line-height: 1.5; margin-top: 6px; }
.fa-side { text-align: right; flex-shrink: 0; }
.fa-prio { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; border: 1px solid; }
.fa-adds { font-size: 11px; color: #64748b; margin-top: 5px; }
@media (max-width: 560px) { .fa-note { display: none; } }

/* Free agent stats */
.fa-meta { font-size: 11px; color: #64748b; }
.fa-inj { color: #f59e0b; font-weight: 700; }
.fa-stats { display: flex; align-items: center; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.fa-ppg { font-size: 15px; font-weight: 800; color: #22c55e; white-space: nowrap; }
.fa-ppg em { font-size: 10px; font-weight: 600; color: #64748b; font-style: normal; margin-left: 3px; }
.fa-statline { font-size: 12px; color: #cbd5e1; }

/* Free agent controls (filter + sort) */
.fa-controls { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.fa-pos-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.fa-pos-pill { background: #1e293b; border: 1px solid rgba(255,255,255,0.1); color: #94a3b8; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 999px; cursor: pointer; font-family: inherit; }
.fa-pos-pill:hover { color: #e2e8f0; }
.fa-pos-pill.active { background: #22c55e; color: #06240f; border-color: #22c55e; }

/* Draft assistant */
.draft-head { background: #1e293b; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 18px; margin-bottom: 14px; }
.draft-meta { font-size: 14px; color: #cbd5e1; }
.draft-meta b { color: #f1f5f9; }
.draft-slot-row { display: flex; align-items: center; gap: 10px; margin-top: 12px; font-size: 13px; color: #94a3b8; flex-wrap: wrap; }
.draft-slot-hint { font-size: 11px; color: #f59e0b; }
.draft-starters { font-size: 12px; color: #64748b; margin-top: 10px; }
.draft-notes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.draft-note { background: rgba(245,158,11,0.07); border: 1px solid rgba(245,158,11,0.22); border-radius: 8px; padding: 10px 14px; font-size: 12px; color: #fcd9a3; line-height: 1.5; }
.draft-strategy { background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(59,130,246,0.08)); border: 1px solid rgba(34,197,94,0.2); border-radius: 10px; padding: 14px 16px; font-size: 13px; color: #cbd5e1; line-height: 1.6; margin-bottom: 18px; }
.draft-board { display: flex; flex-direction: column; gap: 10px; }
.draft-round { background: #1e293b; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 14px 16px; }
.draft-round-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 4px; }
.draft-round-num { font-size: 14px; font-weight: 800; color: #f1f5f9; }
.draft-round-pick { font-size: 12px; color: #22c55e; font-weight: 700; }
.draft-round-note { font-size: 12px; color: #94a3b8; margin-bottom: 10px; line-height: 1.5; }
.draft-targets { display: flex; flex-direction: column; gap: 7px; }
.draft-target { display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.draft-target-name { font-size: 14px; font-weight: 700; color: #e2e8f0; }
.draft-target-note { font-size: 12px; color: #94a3b8; }

/* Ask-your-team chat */
.chat-wrap { display: flex; flex-direction: column; height: 62vh; min-height: 420px; }
.chat-msgs { flex: 1; overflow-y: auto; padding: 4px 2px; display: flex; flex-direction: column; gap: 10px; }
.chat-empty { color: #64748b; font-size: 13px; line-height: 1.6; text-align: center; margin: auto; max-width: 340px; }
.chat-msg { max-width: 82%; font-size: 14px; line-height: 1.55; padding: 11px 14px; border-radius: 12px; }
.chat-user { align-self: flex-end; background: #22c55e; color: #06240f; border-bottom-right-radius: 3px; font-weight: 500; }
.chat-bot { align-self: flex-start; background: #1e293b; border: 1px solid rgba(255,255,255,0.08); color: #e2e8f0; border-bottom-left-radius: 3px; }
.chat-bot strong { color: #fff; }
.chat-typing { display: flex; gap: 4px; }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: #64748b; animation: chatBlink 1.2s infinite both; }
.chat-typing span:nth-child(2) { animation-delay: .2s; } .chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes chatBlink { 0%,80%,100% { opacity: .3; } 40% { opacity: 1; } }
.chat-suggest { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.chat-chip { background: #1e293b; border: 1px solid rgba(34,197,94,0.3); color: #cbd5e1; font-size: 12px; padding: 8px 12px; border-radius: 999px; cursor: pointer; font-family: inherit; }
.chat-chip:hover { border-color: #22c55e; color: #fff; }
.chat-input-row { display: flex; gap: 8px; margin-top: 12px; }
.chat-input { flex: 1; background: #0f172a; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 12px 14px; color: #e2e8f0; font-size: 14px; font-family: inherit; }
.chat-input:focus { outline: none; border-color: #22c55e; }
.chat-send { background: #22c55e; color: #06240f; border: none; border-radius: 8px; padding: 0 20px; font-weight: 700; font-size: 14px; cursor: pointer; font-family: inherit; }
.chat-send:hover { background: #16a34a; }

/* Expandable player cards + weekly points chart */
.p-item.p-clickable { cursor: pointer; transition: border-color .15s; }
.p-item.p-clickable:hover { border-color: rgba(34,197,94,0.45); }
.p-chev { display: inline-block; color: #64748b; transition: transform .15s; font-weight: 800; margin-left: 6px; }
.p-item.open .p-chev { transform: rotate(90deg); color: #22c55e; }
.p-detail { display: none; }
.p-item.open .p-detail { display: block; }

/* Free agents: card moves to .p-item so the chart tucks inside it */
.fa-list .p-item { background: #1e293b; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; }
.fa-row { background: none; border: none; border-radius: 0; }
.fa-list .p-detail { padding: 2px 16px 14px; }
.mt-verdict .p-detail { padding-top: 12px; }

.pchart { margin-top: 2px; }
.pchart-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.pchart-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; color: #64748b; font-weight: 700; }
.pchart-summ { font-size: 12px; color: #94a3b8; }
.pchart-summ b { color: #22c55e; }
.pchart-svg { display: block; }

/* Trade evaluator */
.trade-form { background: #1e293b; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 20px; }
.trade-cols { display: flex; align-items: flex-start; gap: 14px; }
.trade-col { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.trade-col-h { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
.trade-in { font-size: 14px; }
.trade-swap-ico { color: #3b82f6; font-size: 20px; align-self: center; padding-top: 26px; }
.trade-result { margin-top: 18px; }
.trade-verdict-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.trade-verdict { font-size: 13px; font-weight: 800; padding: 5px 14px; border-radius: 999px; border: 1px solid; }
.trade-headline { font-size: 15px; font-weight: 700; color: #f1f5f9; }
.trade-meter { margin-bottom: 20px; }
.trade-meter-labels { display: flex; justify-content: space-between; font-size: 11px; color: #64748b; margin-bottom: 6px; }
.trade-meter-track { position: relative; height: 8px; border-radius: 999px; background: linear-gradient(90deg, #ef4444, #64748b 50%, #22c55e); }
.trade-meter-mark { position: absolute; top: -4px; width: 16px; height: 16px; border-radius: 50%; border: 3px solid #0f172a; transform: translateX(-50%); }
.trade-sides { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.trade-side { background: #0f172a; border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 14px; }
.trade-side-h { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.trade-side-players { font-size: 14px; font-weight: 700; color: #f1f5f9; margin-bottom: 6px; }
.trade-side-note { font-size: 12px; color: #94a3b8; line-height: 1.5; }
.trade-analysis { font-size: 14px; color: #cbd5e1; line-height: 1.6; background: rgba(59,130,246,0.06); border: 1px solid rgba(59,130,246,0.2); border-radius: 10px; padding: 14px 16px; }
@media (max-width: 560px) { .trade-sides { grid-template-columns: 1fr; } .trade-swap-ico { display: none; } }

/* Share card */
.mt-share-row { margin: -6px 0 18px; }
.share-btn { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #22c55e; font-weight: 700; font-size: 13px; padding: 8px 16px; border-radius: 8px; cursor: pointer; font-family: inherit; }
.share-btn:hover { background: rgba(34,197,94,0.18); }
.card-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.75); display: flex; align-items: center; justify-content: center; z-index: 1000; padding: 20px; }
.card-modal-inner { max-width: 560px; width: 100%; text-align: center; }
.card-img { width: 100%; border-radius: 12px; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.card-modal-actions { display: flex; gap: 10px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.card-modal-hint { color: #94a3b8; font-size: 13px; margin-top: 12px; }

/* Player stat bars (in expanded card) */
.sbars { margin-top: 14px; }
.sbars-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; color: #64748b; font-weight: 700; margin-bottom: 10px; }
.sbar { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.sbar-label { font-size: 12px; color: #94a3b8; width: 88px; flex-shrink: 0; }
.sbar-track { flex: 1; height: 8px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; }
.sbar-fill { height: 100%; border-radius: 999px; }
.sbar-val { font-size: 12px; font-weight: 700; color: #e2e8f0; width: 42px; text-align: right; flex-shrink: 0; }

/* Nav Tools dropdown */
.top-nav-dd { position: relative; }
.top-nav-ddbtn { background: none; border: none; font-family: inherit; cursor: pointer; display: inline-flex; align-items: center; }
.dd-caret { font-size: 9px; opacity: 0.7; margin-left: 3px; }
.top-nav-menu { position: absolute; top: 100%; right: 0; min-width: 196px; background: #0f172a; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 6px; box-shadow: 0 14px 36px rgba(0,0,0,0.45); display: none; flex-direction: column; z-index: 60; }
.top-nav-dd:hover .top-nav-menu, .top-nav-dd:focus-within .top-nav-menu { display: flex; }
.top-nav-menu a { color: #cbd5e1; text-decoration: none; font-size: 13px; font-weight: 600; padding: 9px 12px; border-radius: 7px; white-space: nowrap; }
.top-nav-menu a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.top-nav-menu a.active { color: var(--green); }
.acct-link { white-space: nowrap; }

/* Rich footer */
.site-footer { text-align: left; padding: 44px 20px 28px; line-height: 1.6; }
/* Email signup band */
.footer-signup { max-width: 1120px; margin: 0 auto 32px; padding: 24px 28px; border-radius: 16px; background: radial-gradient(80% 140% at 0% 0%, rgba(34,197,94,0.10), transparent 60%), #101a2e; border: 1px solid rgba(34,197,94,0.22); }
.footer-signup-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-signup-h { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 18px; color: #fff; }
.footer-signup-sub { font-size: 13.5px; color: #94a3b8; margin-top: 3px; }
.footer-signup-form { display: flex; gap: 10px; flex: 1; min-width: 280px; max-width: 460px; }
.footer-signup-input { flex: 1; min-width: 0; padding: 11px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.14); background: #0b1220; color: #fff; font-family: inherit; font-size: 14px; }
.footer-signup-input:focus { outline: none; border-color: var(--green); }
.footer-signup-btn { background: var(--green); color: #04120a; font-weight: 800; border: none; border-radius: 8px; padding: 11px 20px; cursor: pointer; font-family: inherit; font-size: 14px; white-space: nowrap; }
.footer-signup-btn:hover { filter: brightness(1.06); }
.footer-signup-msg { max-width: 1120px; margin: 10px auto 0; font-size: 13px; min-height: 18px; }
@media (max-width: 560px) { .footer-signup-form { max-width: none; } }

.footer-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.7fr repeat(4, 1fr); gap: 30px; }
.footer-logo { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 20px; color: #fff; margin-bottom: 10px; }
.footer-logo span { color: var(--green); }
.footer-tag { color: #94a3b8; font-size: 13px; line-height: 1.6; margin: 0 0 14px; max-width: 270px; }
.footer-cta { color: var(--green); font-weight: 700; font-size: 13px; text-decoration: none; }
.footer-cta:hover { text-decoration: underline; }
.footer-h { color: #f1f5f9; font-size: 12px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-col a { display: block; color: #94a3b8; text-decoration: none; font-size: 13px; padding: 5px 0; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { max-width: 1120px; margin: 34px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); color: #64748b; font-size: 12px; text-align: center; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; } .footer-brand { grid-column: 1 / -1; } }

/* Team strength (DNA) */
.dna { display: flex; flex-direction: column; gap: 10px; }
.dna-row { display: flex; align-items: center; gap: 12px; }
.dna-pos { font-size: 13px; font-weight: 800; color: #e2e8f0; width: 34px; flex-shrink: 0; }
.dna-track { flex: 1; height: 10px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; }
.dna-fill { height: 100%; border-radius: 999px; transition: width .5s ease; }
.dna-label { font-size: 12px; font-weight: 700; width: 118px; text-align: right; flex-shrink: 0; }
.dna-ppg { color: #64748b; font-weight: 500; }

/* Percentile stat dots (statcast style) */
.sbar-scale { flex: 1; position: relative; height: 8px; border-radius: 999px; background: linear-gradient(90deg, #ef4444 0%, #eab308 50%, #22c55e 100%); opacity: 0.9; }
.sbar-dot { position: absolute; top: 50%; width: 22px; height: 22px; border-radius: 50%; transform: translate(-50%,-50%); border: 3px solid #0f172a; display: flex; align-items: center; justify-content: center; }
.sbar-pct { font-size: 10px; font-weight: 800; color: #06240f; }

/* Stat leaders table */
.st-wrap { overflow-x: auto; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; }
.st-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 640px; }
.st-table thead th { background: #1e293b; color: #94a3b8; font-weight: 700; text-align: right; padding: 12px 14px; white-space: nowrap; position: sticky; top: 0; }
.st-table th.st-rk, .st-table th.st-pl { text-align: left; }
.st-table th.st-sort { cursor: pointer; user-select: none; }
.st-table th.st-sort:hover { color: #22c55e; }
.st-table td { padding: 11px 14px; text-align: right; border-top: 1px solid rgba(255,255,255,0.05); color: #cbd5e1; }
.st-table td.st-rk { color: #64748b; font-weight: 700; text-align: left; width: 34px; }
.st-table td.st-pl { text-align: left; color: #f1f5f9; font-weight: 600; white-space: nowrap; }
.st-team { color: #64748b; font-weight: 500; font-size: 11px; }
.st-table td.st-ppg { color: #22c55e; font-weight: 800; }
.st-table tbody tr:hover { background: rgba(255,255,255,0.03); }

.draft-adp { font-size: 10px; font-weight: 800; color: #3b82f6; background: rgba(59,130,246,0.14); padding: 2px 7px; border-radius: 999px; white-space: nowrap; }

.adp-range { color: #64748b; font-size: 12px; }
.adp-note { font-size: 12px; color: #64748b; margin-top: 12px; }

/* Depth charts */
.dc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.dc-col { background: #1e293b; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 14px; }
.dc-col-h { margin-bottom: 10px; }
.dc-player { display: flex; align-items: center; gap: 9px; font-size: 13px; color: #cbd5e1; padding: 7px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.dc-player:first-of-type { border-top: none; }
.dc-starter { color: #f1f5f9; font-weight: 700; }
.dc-rank { width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,0.06); color: #64748b; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dc-starter .dc-rank { background: rgba(34,197,94,0.18); color: #22c55e; }
.dc-empty { font-size: 12px; color: #64748b; padding: 6px 0; }
@media (max-width: 700px) { .dc-grid { grid-template-columns: 1fr 1fr; } }

/* Player compare */
.cmp-form { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; background: #1e293b; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 16px; }
.cmp-in { flex: 1; min-width: 180px; }
.cmp-vs { font-size: 12px; font-weight: 800; color: #64748b; }
.cmp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.cmp-grid.cmp-single { grid-template-columns: 1fr; }
.cmp-card { background: #1e293b; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 18px; }
.cmp-head { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.cmp-name { font-size: 17px; font-weight: 800; color: #f1f5f9; }
.cmp-team { font-size: 12px; color: #94a3b8; }
.cmp-meta { font-size: 12px; color: #64748b; margin-top: 6px; }
.cmp-ppg { font-size: 14px; color: #94a3b8; margin-top: 12px; }
.cmp-ppg b { font-size: 26px; color: #22c55e; }
.cmp-ppg span { font-size: 12px; }
.cmp-line { font-size: 13px; color: #cbd5e1; margin-top: 6px; }
@media (max-width: 620px) { .cmp-grid { grid-template-columns: 1fr; } .cmp-form { flex-direction: column; align-items: stretch; } .cmp-vs { text-align: center; } }

.pc-g { color: #22c55e; font-weight: 700; }
.pc-r { color: #ef4444; font-weight: 700; }

/* Chat window (real-chat look) */
.chat-window { display: flex; flex-direction: column; height: 64vh; min-height: 480px; background: #0f172a; border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; overflow: hidden; }
.chat-window-head { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 13px; font-weight: 700; color: #e2e8f0; background: #131c2e; }
.chat-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
.chat-window-head .chat-sub { font-size: 11px; color: #64748b; font-weight: 500; margin-left: auto; }
.chat-window .chat-msgs { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chat-row { display: flex; align-items: flex-end; gap: 8px; }
.chat-row.user { justify-content: flex-end; }
.chat-row.bot { justify-content: flex-start; }
.chat-ava { width: 28px; height: 28px; border-radius: 50%; background: rgba(34,197,94,0.15); color: #22c55e; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.chat-window .chat-msg { max-width: 78%; font-size: 14px; line-height: 1.55; padding: 10px 14px; border-radius: 14px; }
.chat-window .chat-user { background: #22c55e; color: #06240f; border-bottom-right-radius: 4px; font-weight: 500; }
.chat-window .chat-bot { background: #1e293b; border: 1px solid rgba(255,255,255,0.08); color: #e2e8f0; border-bottom-left-radius: 4px; }
.chat-empty { color: #64748b; font-size: 13px; line-height: 1.6; text-align: center; margin: auto; max-width: 320px; }
.chat-empty-ava { width: 40px; height: 40px; border-radius: 50%; background: rgba(34,197,94,0.12); color: #22c55e; display: flex; align-items: center; justify-content: center; font-size: 20px; margin: 0 auto 12px; }
.chat-foot { border-top: 1px solid rgba(255,255,255,0.07); padding: 12px 14px; background: #0b1220; }
.chat-foot .chat-suggest { margin: 0 0 10px; }
.chat-foot .chat-input-row { margin-top: 0; }

/* IDP (defensive) position badges */
.pos-DL, .pos-LB, .pos-DB, .pos-DE, .pos-DT, .pos-NT, .pos-OLB, .pos-ILB, .pos-CB, .pos-S, .pos-SS, .pos-FS, .pos-EDGE { background: #e0e7ff; color: #3730a3; }

/* Player photos */
.pl-img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; background: #1e293b; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.08); }
.pl-img-off { visibility: hidden; }
.fa-row > .pl-img { margin-right: 2px; }
.cmp-img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: #0f172a; border: 2px solid rgba(255,255,255,0.1); flex-shrink: 0; }
.cmp-head { display: flex; align-items: center; gap: 12px; }
.cmp-name-row { display: flex; align-items: center; gap: 8px; }

/* Rankings player cell with photo */
.rank-player-flex { display: flex; align-items: center; gap: 11px; }
.rank-player-flex .pl-img { width: 36px; height: 36px; }
.rank-player-info { min-width: 0; flex: 1; }

/* Draft board */
.db-hide { font-size: 12px; color: #94a3b8; display: flex; align-items: center; gap: 5px; cursor: pointer; }
.db-list { display: flex; flex-direction: column; gap: 6px; }
.db-row { display: flex; align-items: center; gap: 12px; background: #1e293b; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 10px 14px; cursor: pointer; transition: border-color .12s, opacity .12s; }
.db-row:hover { border-color: rgba(34,197,94,0.35); }
.db-rk { width: 26px; font-size: 13px; font-weight: 800; color: #64748b; text-align: center; flex-shrink: 0; }
.db-check { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; font-size: 12px; color: #22c55e; flex-shrink: 0; }
.db-info { flex: 1; min-width: 0; }
.db-name { font-size: 14px; font-weight: 700; color: #f1f5f9; }
.db-meta { font-size: 12px; color: #94a3b8; margin-top: 3px; }
.db-adp { font-size: 14px; font-weight: 800; color: #3b82f6; flex-shrink: 0; }
.db-best { border-color: #22c55e; box-shadow: 0 0 0 1px rgba(34,197,94,0.4); }
.db-best-tag { font-size: 10px; font-weight: 800; text-transform: uppercase; color: #06240f; background: #22c55e; padding: 2px 7px; border-radius: 999px; margin-left: 6px; }
.db-drafted { opacity: 0.4; }
.db-drafted .db-name { text-decoration: line-through; }
.db-drafted .db-check { background: #22c55e; border-color: #22c55e; color: #06240f; }

/* Draft plan/live mode toggle + live board */
.draft-modes { display: inline-flex; gap: 4px; background: #0f172a; border: 1px solid rgba(255,255,255,0.1); border-radius: 9px; padding: 3px; margin-bottom: 16px; }
.draft-mode { background: none; border: none; color: #94a3b8; font-size: 13px; font-weight: 700; padding: 7px 16px; border-radius: 6px; cursor: pointer; font-family: inherit; }
.draft-mode.active { background: #22c55e; color: #06240f; }
.dl-status { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: #e2e8f0; margin-bottom: 16px; }
.dl-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); animation: chatBlink 1.5s infinite; }
.dl-recs { display: flex; flex-direction: column; gap: 8px; }
.dl-rec { display: flex; align-items: center; gap: 11px; background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.25); border-radius: 10px; padding: 11px 14px; }
.dl-rec-badge { font-size: 10px; font-weight: 800; text-transform: uppercase; color: #06240f; background: #22c55e; padding: 2px 8px; border-radius: 999px; }
.dl-rec-name { font-size: 14px; font-weight: 700; color: #f1f5f9; }
.dl-rec-meta { font-size: 12px; color: #94a3b8; margin-top: 3px; }
.dl-mine { display: flex; flex-wrap: wrap; gap: 8px; }
.dl-mine-chip { display: inline-flex; align-items: center; gap: 6px; background: #1e293b; border: 1px solid rgba(255,255,255,0.08); border-radius: 999px; padding: 5px 12px; font-size: 13px; color: #e2e8f0; }
.dl-none { font-size: 13px; color: #64748b; }

.st-pl-flex { display: flex; align-items: center; gap: 9px; }
.st-pl-flex .pl-img { width: 30px; height: 30px; }
.dc-player .pl-img { width: 26px; height: 26px; }

/* ── Player sheet (wide profile) ─────────────────────────────────────────── */
/* Server-rendered fallback (crawlers/no-JS); JS replaces it for interactive users. */
.pl-ssr { padding: 4px 2px; }
.pl-ssr h2 { font-family: var(--disp); color: #fff; font-size: 22px; font-weight: 800; }
.pl-ssr h2 span { color: #94a3b8; font-size: 14px; font-weight: 600; }
.pl-ssr p { color: #cbd5e1; font-size: 14px; line-height: 1.6; margin: 8px 0 16px; }
.pl-ssr h3 { font-family: var(--disp); color: #fff; font-size: 15px; margin: 16px 0 10px; }

.pl-hero { display: flex; align-items: center; gap: 22px; background: linear-gradient(120deg,#131f36,#0f172a); border: 1px solid rgba(255,255,255,0.08); border-left: 5px solid #334155; border-radius: 16px; padding: 22px 24px; margin-top: 8px; }
.pl-hero-photo { flex-shrink: 0; }
.pl-hero-img { width: 132px; height: 132px; border-radius: 16px; object-fit: cover; object-position: top center; background: #1e293b; border: 2px solid rgba(255,255,255,0.12); }
.pl-hero-mid { flex: 1; min-width: 0; }
.pl-hero-badges { display: flex; align-items: center; gap: 8px; }
.pl-hero-team { color: #94a3b8; font-weight: 700; font-size: 13px; }
.pl-hero-name { font-family: var(--disp); font-weight: 800; color: #fff; font-size: 30px; line-height: 1.1; margin: 6px 0 4px; }
.pl-hero-meta { color: #94a3b8; font-size: 13px; }
.pl-hero-grade { flex-shrink: 0; width: 88px; height: 88px; border-radius: 16px; color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 8px 22px rgba(0,0,0,0.35); }
.pl-hero-grade-g { font-family: var(--disp); font-weight: 800; font-size: 38px; line-height: 1; }
.pl-hero-grade-t { font-size: 9.5px; font-weight: 700; margin-top: 4px; opacity: 0.95; padding: 0 4px; }

.pl-bio { display: flex; gap: 22px; margin-top: 12px; flex-wrap: wrap; }
.pl-bio-i { display: flex; flex-direction: column; }
.pl-bio-n { font-family: var(--disp); font-weight: 800; color: #fff; font-size: 16px; line-height: 1; }
.pl-bio-l { color: #64748b; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

.pl-verdict { color: #e2e8f0; font-size: 15px; line-height: 1.6; background: #0f172a; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 15px 18px; margin: 14px 0; }

.pl-full { margin-top: 16px; }
.gl-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.gl-tab { border: 1px solid rgba(255,255,255,0.1); background: #0f172a; color: #94a3b8; font-family: var(--disp); font-weight: 700; font-size: 13px; padding: 6px 15px; border-radius: 999px; cursor: pointer; transition: all 0.12s; }
.gl-tab:hover { color: #e2e8f0; }
.gl-tab.on { background: #16a34a; border-color: #16a34a; color: #fff; }
.gl-scroll { overflow-x: auto; }
.gl-table { min-width: 100%; font-size: 13px; }
/* Right-align numeric columns so digits line up; WK/OPP stay left.
   `table.gl-table` raises specificity so these beat the shared .pj-table rules. */
table.gl-table th, table.gl-table td { padding: 8px 12px; text-align: right; white-space: nowrap; }
table.gl-table th.gl-wk, table.gl-table td.gl-wk, table.gl-table th.gl-opp, table.gl-table td.gl-opp { text-align: left; }
.gl-table td.gl-wk { color: #94a3b8; font-weight: 700; }
.gl-table td.gl-fpts { color: #4ade80; font-family: var(--disp); font-weight: 800; background: rgba(34,197,94,0.06); }
.gl-table th.gl-fpts { background: rgba(34,197,94,0.06); }
.gl-vs { color: #cbd5e1; }
.gl-at { color: #94a3b8; }
.gl-bye { color: #475569; }
.gl-table tbody tr:hover td { background: rgba(255,255,255,0.03); }
.gl-table tbody tr:hover td.gl-fpts { background: rgba(34,197,94,0.12); }
.gl-empty { color: #64748b; font-size: 13px; text-align: center; padding: 24px; }

.pl-cols { display: grid; grid-template-columns: 1.7fr 1fr; gap: 16px; align-items: start; }
.pl-main, .pl-side { display: flex; flex-direction: column; gap: 16px; }
.pl-panel { background: #131f36; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 16px; }
.pl-panel h3 { font-family: var(--disp); font-weight: 800; color: #fff; font-size: 14px; margin-bottom: 12px; }
.pl-panel h3 span { color: #64748b; font-weight: 600; font-size: 11px; }
.pl-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(72px, 1fr)); gap: 14px 10px; }
.pl-stat { display: flex; flex-direction: column; }
.pl-stat-n { font-family: var(--disp); font-weight: 800; color: #fff; font-size: 19px; line-height: 1; }
.pl-stat-l { color: #64748b; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 5px; }
.pl-line { color: #94a3b8; font-size: 12.5px; margin-top: 12px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.06); }
.pl-row { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 13.5px; color: #94a3b8; }
.pl-row:last-child { border-bottom: none; }
.pl-row b { color: #fff; font-family: var(--disp); }
.pl-news { display: flex; flex-direction: column; }
.pl-news h3 { margin-bottom: 6px; }
.pl-news-item { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pl-news-item:last-child { border-bottom: none; padding-bottom: 0; }
.pl-news-head { color: #e2e8f0; font-weight: 700; font-size: 13.5px; line-height: 1.35; }
.pl-news-item:hover .pl-news-head { color: #4ade80; }
.pl-news-meta { color: #64748b; font-size: 11px; margin-top: 4px; }
.pl-news-desc { color: #94a3b8; font-size: 12.5px; line-height: 1.45; margin-top: 5px; }
.pl-news-impact { color: #cbd5e1; font-size: 12.5px; line-height: 1.45; margin-top: 7px; background: rgba(22,163,74,0.08); border-left: 2px solid #16a34a; padding: 6px 9px; border-radius: 0 6px 6px 0; }
.pl-news-impact span { color: #4ade80; font-weight: 800; font-size: 10px; text-transform: uppercase; letter-spacing: 0.04em; display: block; margin-bottom: 2px; }
.pl-news-src { display: inline-block; margin-top: 8px; color: #60a5fa; font-size: 12px; font-weight: 600; }
.pl-news-src:hover { text-decoration: underline; }
.pl-news-foot { color: #475569; font-size: 10.5px; margin-top: 12px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.06); }

/* Comments */
#plCmt { margin-top: 16px; }
.cmt-count { color: #94a3b8; font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.cmt-loading, .cmt-empty { color: #64748b; font-size: 13px; padding: 10px 0; }
.cmt-login { background: #0f172a; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 14px 16px; color: #94a3b8; font-size: 13.5px; }
.cmt-login a { color: #4ade80; font-weight: 700; }
.cmt-form { display: flex; gap: 11px; margin-bottom: 20px; }
.cmt-form-in { flex: 1; }
.cmt-input { width: 100%; background: #0f172a; border: 1px solid rgba(255,255,255,0.1); color: #e2e8f0; border-radius: 10px; padding: 11px 13px; font-size: 13.5px; font-family: var(--body); outline: none; resize: vertical; min-height: 44px; }
.cmt-input:focus { border-color: #16a34a; }
.cmt-form-row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.cmt-hint { color: #64748b; font-size: 11.5px; }
.cmt-post { background: #16a34a; color: #fff; border: none; font-weight: 700; font-size: 13px; padding: 8px 20px; border-radius: 8px; cursor: pointer; }
.cmt-post:hover { background: #15803d; }
.cmt-post:disabled { opacity: 0.5; cursor: default; }
.cmt-list { display: flex; flex-direction: column; gap: 16px; }
.cmt { display: flex; gap: 11px; }
.cmt-ava { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg,#16a34a,#15803d); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--disp); font-weight: 800; font-size: 15px; }
.cmt-main { flex: 1; min-width: 0; }
.cmt-top { display: flex; align-items: center; gap: 10px; margin-bottom: 3px; }
.cmt-name { color: #fff; font-weight: 700; font-size: 13.5px; }
.cmt-time { color: #64748b; font-size: 11.5px; }
.cmt-del { margin-left: auto; background: none; border: none; color: #64748b; font-size: 11.5px; cursor: pointer; }
.cmt-del:hover { color: #f87171; }
.cmt-body { color: #cbd5e1; font-size: 13.5px; line-height: 1.5; white-space: pre-wrap; word-break: break-word; }

.pl-links { display: flex; flex-direction: column; gap: 9px; }
.pl-links .isubmit-btn, .pl-links .ghost-btn { justify-content: center; text-align: center; }
.pl-panel .sbars, .pl-panel .pchart { margin: 0; }

/* Career stats table */
.ct-scroll { overflow-x: auto; }
.ct-table { min-width: 100%; font-size: 13px; }
.ct-table th { padding: 7px 9px; }
.ct-table td { padding: 8px 9px; white-space: nowrap; }
.ct-season { color: #fff; font-family: var(--disp); font-weight: 700; }
.ct-ppg { color: #4ade80; font-weight: 800; }
.ct-latest td { background: rgba(34,197,94,0.06); }
.ct-latest .ct-season { color: #4ade80; }

/* Clear percentile bars */
.sbars-cap { color: #64748b; font-size: 12px; line-height: 1.45; margin-bottom: 16px; }
.pb-row { margin-bottom: 15px; }
.pb-row:last-child { margin-bottom: 0; }
.pb-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.pb-label { color: #cbd5e1; font-size: 13px; font-weight: 600; }
.pb-val { color: #fff; font-family: var(--disp); font-weight: 800; font-size: 15px; }
.pb-track { height: 9px; background: rgba(255,255,255,0.07); border-radius: 999px; overflow: hidden; }
.pb-fill { height: 100%; border-radius: 999px; transition: width 0.5s ease; }
.pb-foot { display: flex; justify-content: space-between; align-items: baseline; margin-top: 5px; }
.pb-pct { font-size: 11.5px; color: #94a3b8; }
.pb-pct b { font-weight: 800; }
.pb-desc { font-size: 11.5px; font-weight: 800; }

/* Interactive weekly bars */
.wk-chart .pchart-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; font-size: 12px; }
.wk-chart .pchart-title { color: #94a3b8; }
.wk-chart .pc-g { color: #22c55e; font-weight: 700; }
.wk-chart .pc-r { color: #ef4444; font-weight: 700; }
.wk-chart .pchart-summ { color: #94a3b8; }
.wk-chart .pchart-summ b { color: #fff; }
.wk-scroll { overflow-x: auto; padding-bottom: 4px; }
.wk-scroll::-webkit-scrollbar { height: 6px; }
.wk-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 999px; }
.wk-bars { display: flex; gap: 6px; align-items: flex-end; height: 168px; min-width: 100%; }
.wk-col { flex: 1 1 0; min-width: 28px; display: flex; flex-direction: column; align-items: center; height: 100%; cursor: default; }
.wk-val { font-size: 10.5px; font-weight: 800; color: #cbd5e1; margin-bottom: 4px; white-space: nowrap; }
.wk-val.dnp { color: #475569; font-weight: 600; }
.wk-track { flex: 1; width: 100%; max-width: 34px; display: flex; align-items: flex-end; }
.wk-fill { width: 100%; border-radius: 3px 3px 0 0; min-height: 3px; transition: filter 0.12s, transform 0.12s; transform-origin: bottom; }
.wk-col:hover .wk-fill { filter: brightness(1.25); }
.wk-col:hover .wk-val { color: #fff; }
.wk-col.best .wk-fill { box-shadow: 0 0 0 2px rgba(255,255,255,0.25) inset; }
.wk-num { font-size: 10px; color: #64748b; margin-top: 6px; font-weight: 600; }
@media (max-width: 760px) {
  .pl-cols { grid-template-columns: 1fr; }
  .pl-hero-name { font-size: 24px; }
  .pl-hero-img { width: 100px; height: 100px; }
  .pl-hero-grade { width: 72px; height: 72px; }
  .pl-hero-grade-g { font-size: 30px; }
}

/* ── Projections / Advanced Stats tables ─────────────────────────────────── */
.pj-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.pj-table th { text-align: left; color: #64748b; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 9px 10px; border-bottom: 1px solid rgba(255,255,255,0.1); white-space: nowrap; }
.pj-table td { padding: 8px 10px; border-bottom: 1px solid rgba(255,255,255,0.05); color: #cbd5e1; }
.pj-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.pj-rk { color: #64748b; font-weight: 700; width: 34px; }
.pj-pl, .av-pl { color: #fff; font-weight: 600; min-width: 160px; }
.pj-posrank { color: #64748b; font-size: 11px; font-weight: 700; }
.pj-proj { font-weight: 800; color: #fff; }
.pj-ppg { color: #4ade80; font-weight: 700; }
.av-hot { color: #fbbf24; font-weight: 800; }
.av-scroll { overflow-x: auto; }
.av-table { min-width: 660px; }
.pl-link { color: inherit; text-decoration: none; }
.pl-link:hover { color: #4ade80; text-decoration: underline; text-underline-offset: 2px; }

/* ── Bye Weeks ───────────────────────────────────────────────────────────── */
.bye-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.bye-card { background: #131f36; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; }
.bye-card-h { display: flex; align-items: center; justify-content: space-between; background: #16a34a; color: #fff; font-family: var(--disp); font-weight: 800; font-size: 15px; padding: 9px 13px; }
.bye-card-n { font-family: var(--body); font-weight: 600; font-size: 11px; opacity: 0.9; }
.bye-teams { display: flex; flex-direction: column; }
.bye-team { display: flex; align-items: center; gap: 9px; padding: 9px 13px; color: #e2e8f0; font-weight: 600; font-size: 13.5px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.bye-team:last-child { border-bottom: none; }
.bye-team:hover { background: rgba(255,255,255,0.04); }
.bye-logo { width: 24px; height: 24px; object-fit: contain; flex-shrink: 0; }

/* ── RB Handcuffs ────────────────────────────────────────────────────────── */
.hc-list { display: flex; flex-direction: column; gap: 8px; }
.hc-head { display: grid; grid-template-columns: 120px 1fr 1.4fr; gap: 14px; padding: 4px 14px; color: #64748b; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.hc-row { display: grid; grid-template-columns: 120px 1fr 1.4fr; gap: 14px; align-items: center; background: #131f36; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 10px 14px; }
.hc-team { display: flex; align-items: center; gap: 8px; color: #cbd5e1; font-family: var(--disp); font-weight: 700; font-size: 13px; }
.hc-starter { display: flex; align-items: center; gap: 9px; color: #fff; font-weight: 700; font-size: 14px; }
.hc-starter:hover span { color: #4ade80; }
.hc-cuffs { display: flex; gap: 10px; flex-wrap: wrap; }
.hc-cuff { display: flex; align-items: center; gap: 8px; color: #cbd5e1; font-size: 13px; font-weight: 600; position: relative; }
.hc-cuff.primary { color: #e2e8f0; }
.hc-cuff:hover span:not(.hc-tag) { color: #4ade80; }
.hc-tag { background: rgba(22,163,74,0.16); color: #4ade80; font-size: 9px; font-weight: 800; padding: 2px 7px; border-radius: 999px; text-transform: uppercase; }
.hc-cuff .pl-img, .hc-starter .pl-img { width: 30px; height: 30px; }
.hc-none { color: #64748b; font-size: 12.5px; font-style: italic; }
@media (max-width: 700px) { .hc-head { display: none; } .hc-row { grid-template-columns: 1fr; gap: 8px; } }

/* ── Strength of Schedule (defense vs position) ──────────────────────────── */
.sos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.sos-col { background: #131f36; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; overflow: hidden; }
.sos-col-h { display: block; text-align: center; padding: 9px; font-size: 13px; border-radius: 0; }
.sos-col-sub { text-align: center; font-size: 9.5px; color: #64748b; text-transform: uppercase; letter-spacing: 0.05em; padding: 5px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sos-row { display: flex; align-items: center; gap: 8px; padding: 6px 11px; border-bottom: 1px solid rgba(255,255,255,0.04); border-left: 3px solid transparent; }
.sos-rk { color: #64748b; font-size: 10.5px; font-weight: 700; width: 18px; flex-shrink: 0; }
.sos-logo { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }
.sos-tm { color: #e2e8f0; font-weight: 700; font-size: 12.5px; }
.sos-easy { border-left-color: #16a34a; background: rgba(22,163,74,0.07); }
.sos-mid { border-left-color: #f59e0b; }
.sos-hard { border-left-color: #ef4444; background: rgba(239,68,68,0.06); }
@media (max-width: 700px) { .sos-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Research Hub ────────────────────────────────────────────────────────── */
.rh-group { margin-bottom: 26px; }
.rh-group-h { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.rh-group-t { font-family: var(--disp); font-weight: 800; color: #fff; font-size: 17px; }
.rh-group-s { color: #64748b; font-size: 13px; }
.rh-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.rh-card { display: flex; align-items: center; gap: 13px; background: #131f36; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 15px; transition: transform 0.12s, border-color 0.12s; }
.rh-card:hover { transform: translateY(-2px); border-color: rgba(34,197,94,0.4); }
.rh-card-ic { flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px; background: rgba(22,163,74,0.14); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.rh-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.rh-card-t { font-family: var(--disp); font-weight: 700; color: #fff; font-size: 15px; }
.rh-card-d { color: #94a3b8; font-size: 12.5px; line-height: 1.4; margin-top: 2px; }
.rh-card-arrow { color: #475569; font-size: 18px; flex-shrink: 0; transition: color 0.12s, transform 0.12s; }
.rh-card:hover .rh-card-arrow { color: #22c55e; transform: translateX(3px); }

/* ── Mock Draft Simulator ────────────────────────────────────────────────── */
/* While a draft is running, break the page out of the narrow content column
   so the full board fits (overrides the inline max-width on #mdPage). */
.ipage.sim-wide { max-width: 1640px !important; padding-left: 18px; padding-right: 18px; }

.sim-bar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: linear-gradient(180deg,#0b1322,#0a1120); border: 1px solid rgba(255,255,255,0.09); border-radius: 12px;
  padding: 11px 14px; margin-bottom: 14px; position: sticky; top: 8px; z-index: 30;
  box-shadow: 0 6px 22px rgba(0,0,0,0.35);
}
.sim-bar-l { display: flex; align-items: center; gap: 10px; }
.sim-logo { font-family: var(--disp); font-weight: 800; color: #fff; font-size: 15px; letter-spacing: -0.2px; }
.sim-pk { font-size: 12.5px; color: #cbd5e1; background: rgba(255,255,255,0.07); padding: 3px 9px; border-radius: 6px; font-weight: 600; }
.sim-bar-c { flex: 1; min-width: 180px; text-align: center; }
.sim-clock-you { color: #22c55e; font-weight: 800; font-size: 15px; font-family: var(--disp); }
.sim-clock-team { color: #94a3b8; font-size: 13px; }
.sim-clock-team b { color: #e2e8f0; }
.sim-bar-c.you { animation: simPulse 1.4s infinite; }
@keyframes simPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.55; } }
.sim-bar-r { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.sim-viewtog { display: inline-flex; background: rgba(255,255,255,0.06); border-radius: 8px; padding: 3px; }
.sim-viewtog button { border: none; background: none; color: #94a3b8; font-family: var(--disp); font-weight: 700; font-size: 12.5px; padding: 6px 13px; border-radius: 6px; cursor: pointer; }
.sim-viewtog button.on { background: #16a34a; color: #fff; }

/* Saturated, Sleeper-style position badge (scoped to the simulator) */
.sim-badge { display: inline-block; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 0.03em; padding: 2px 6px; border-radius: 4px; text-transform: uppercase; vertical-align: middle; }

/* Tab bar (FantasyPros-style organized nav) */
.sim-tabs { display: flex; gap: 4px; margin-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; }
.sim-tab { border: none; background: none; color: #94a3b8; font-family: var(--disp); font-weight: 700; font-size: 13.5px; padding: 10px 16px; cursor: pointer; border-bottom: 2.5px solid transparent; margin-bottom: -1px; transition: color 0.12s; }
.sim-tab:hover { color: #e2e8f0; }
.sim-tab.on { color: #22c55e; border-bottom-color: #16a34a; }

.sim-layout { display: grid; grid-template-columns: 1fr 320px; gap: 16px; align-items: start; }
.sim-main { min-width: 0; }
.sim-side { background: #131f36; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 14px; position: sticky; top: 74px; }

/* Suggestions cards (2-up, large photo) */
.sim-sug-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.sim-sug { display: flex; align-items: center; gap: 13px; background: #131f36; border: 1px solid rgba(255,255,255,0.07); border-left: 4px solid #64748b; border-radius: 12px; padding: 14px; position: relative; }
.sim-sug-rank { position: absolute; top: -9px; left: 14px; background: #16a34a; color: #fff; font-size: 9.5px; font-weight: 800; padding: 2px 9px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em; box-shadow: 0 2px 6px rgba(0,0,0,0.3); }
.sim-sug-photo { flex-shrink: 0; }
.sim-sug-photo .pl-img { width: 56px; height: 56px; border: 2px solid rgba(255,255,255,0.12); }
.sim-sug-idn { flex: 1; min-width: 0; }
.sim-sug-name { font-family: var(--disp); font-weight: 800; color: #fff; font-size: 16.5px; line-height: 1.15; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sim-sug-meta { font-size: 13px; color: #94a3b8; margin: 4px 0 8px; }
.sim-sug-stats { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sim-sug-stat { font-size: 12px; color: #cbd5e1; background: rgba(255,255,255,0.06); padding: 3px 9px; border-radius: 6px; }
.sim-sug-stat b { color: #fff; font-size: 13px; }
.sim-sug-reason { display: inline-block; font-size: 11.5px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.sim-sug-reason.need { background: rgba(22,163,74,0.16); color: #4ade80; }
.sim-sug-reason.value { background: rgba(217,119,6,0.16); color: #fbbf24; }
.sim-sug-reason.depth { background: rgba(148,163,184,0.14); color: #cbd5e1; }
.sim-sug .sim-draft-btn { flex-shrink: 0; padding: 10px 20px; font-size: 13.5px; }

/* Cheat sheet columns */
.sim-cheat { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.sim-cheat-col { background: #131f36; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; overflow: hidden; }
.sim-cheat-hd { color: #fff; font-family: var(--disp); font-weight: 800; font-size: 12px; text-align: center; padding: 7px; letter-spacing: 0.04em; }
.sim-cheat-row { display: flex; align-items: center; gap: 6px; padding: 7px 9px; border-bottom: 1px solid rgba(255,255,255,0.04); cursor: pointer; transition: background 0.1s; }
.sim-cheat-row:hover { background: rgba(255,255,255,0.05); }
.sim-cheat-rk { color: #64748b; font-size: 11px; font-weight: 700; width: 16px; flex-shrink: 0; }
.sim-cheat-nm { flex: 1; min-width: 0; color: #e2e8f0; font-size: 12.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sim-cheat-tm { color: #94a3b8; font-size: 10.5px; flex-shrink: 0; width: 26px; text-align: right; }
.sim-cheat-adp { color: #cbd5e1; font-size: 11.5px; font-weight: 800; flex-shrink: 0; width: 32px; text-align: right; }
.sim-cheat-sub { display: flex; justify-content: space-between; padding: 5px 9px; font-size: 9px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #64748b; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sim-cheat-empty { color: #475569; font-size: 11px; text-align: center; padding: 10px; }

/* Teams grid */
.sim-teams { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; }
.sim-tcard { background: #131f36; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 12px; }
.sim-tcard.me { border-color: rgba(34,197,94,0.4); box-shadow: 0 0 0 1px rgba(34,197,94,0.25); }
.sim-tcard-hd { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.sim-tcard-hd .sim-bava { width: 28px; height: 28px; font-size: 13px; }
.sim-tcard-nm { font-family: var(--disp); font-weight: 700; color: #fff; font-size: 13.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sim-tmini { display: flex; align-items: center; gap: 7px; padding: 5px 7px; margin-bottom: 3px; background: #0f172a; border-left: 3px solid #64748b; border-radius: 6px; }
.sim-tmini-nm { flex: 1; min-width: 0; color: #cbd5e1; font-size: 12px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sim-tmini-pk { color: #64748b; font-size: 10.5px; font-weight: 600; flex-shrink: 0; }

@media (max-width: 820px) {
  .sim-layout { grid-template-columns: 1fr; }
  .sim-side { position: static; }
  .sim-cheat { grid-template-columns: repeat(2, 1fr); }
  .sim-sug-list { grid-template-columns: 1fr; }
}
.sim-btn { border: none; cursor: pointer; font-family: var(--disp); font-weight: 700; font-size: 13px; padding: 9px 13px; border-radius: 9px; transition: transform 0.12s, background 0.12s, opacity 0.12s; }
.sim-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.sim-btn-auto { background: linear-gradient(135deg,#16a34a,#15803d); color: #fff; }
.sim-btn-auto:not(:disabled):hover { transform: translateY(-1px); }
.sim-btn-pilot { background: #d97706; color: #fff; }
.sim-btn-pilot:hover { background: #b45309; }
.sim-btn-ghost { background: rgba(255,255,255,0.06); color: #cbd5e1; }
.sim-btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }

.sim-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 16px; align-items: start; }
.sim-col-main, .sim-col-side { background: #131f36; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 14px; }
.sim-panel-head { font-family: var(--disp); font-weight: 800; color: #fff; font-size: 14px; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.sim-team-tag { font-family: var(--body); font-weight: 600; font-size: 11.5px; color: #4ade80; background: rgba(22,163,74,0.14); padding: 2px 9px; border-radius: 999px; }
.sim-search { width: 100%; background: #0f172a; border: 1px solid rgba(255,255,255,0.1); color: #e2e8f0; border-radius: 9px; padding: 9px 12px; font-size: 13px; font-family: var(--body); outline: none; margin: 8px 0 10px; }
.sim-search:focus { border-color: #16a34a; }

.sim-pool { max-height: 620px; overflow-y: auto; display: flex; flex-direction: column; gap: 7px; }
.sim-prow { display: flex; align-items: center; gap: 13px; background: #0f172a; border: 1px solid rgba(255,255,255,0.05); border-left: 4px solid #64748b; border-radius: 10px; padding: 10px 14px; }
.sim-prow-rk { flex-shrink: 0; width: 22px; text-align: center; color: #64748b; font-family: var(--disp); font-weight: 800; font-size: 13px; }
.sim-prow .pl-img { width: 46px; height: 46px; }
.sim-prow-idn { flex: 1; min-width: 0; }
.sim-prow-name { font-family: var(--disp); font-weight: 700; color: #fff; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sim-prow-meta { font-size: 12.5px; color: #94a3b8; margin-top: 4px; }
.sim-prow-stats { display: flex; gap: 20px; flex-shrink: 0; }
.sim-prow-stat { display: flex; flex-direction: column; align-items: center; min-width: 40px; }
.sim-prow-num { color: #e2e8f0; font-family: var(--disp); font-weight: 800; font-size: 15px; line-height: 1; }
.sim-prow-lbl { color: #64748b; font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em; margin-top: 3px; }
@media (max-width: 620px) { .sim-prow-stats { gap: 12px; } .sim-prow-stat { min-width: 34px; } }
.sim-draft-btn { flex-shrink: 0; background: #16a34a; border: none; color: #fff; font-weight: 700; font-size: 12.5px; padding: 7px 14px; border-radius: 8px; cursor: pointer; transition: background 0.12s; }
.sim-draft-btn:hover:not(:disabled) { background: #15803d; }
.sim-draft-btn:disabled { background: rgba(255,255,255,0.08); color: #64748b; cursor: not-allowed; }

.sim-trow { display: flex; align-items: center; gap: 10px; padding: 7px 8px; margin-bottom: 4px; background: #0f172a; border-left: 3px solid #64748b; border-radius: 7px; }
.sim-trow-idn { flex: 1; min-width: 0; }
.sim-trow-name { font-weight: 700; color: #e2e8f0; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sim-trow-meta { font-size: 11px; color: #94a3b8; margin-top: 1px; }
.sim-trow-pk { flex-shrink: 0; font-size: 11.5px; color: #64748b; font-weight: 600; }

.sim-lrow { display: flex; align-items: center; gap: 7px; padding: 6px 0; font-size: 12.5px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.sim-lrow.mine { background: rgba(22,163,74,0.08); border-radius: 6px; padding: 6px 8px; }
.sim-lpk { color: #64748b; font-weight: 600; min-width: 34px; }
.sim-lname { flex: 1; color: #e2e8f0; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sim-lteam { color: #94a3b8; font-size: 11px; max-width: 90px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sim-empty { color: #64748b; font-size: 13px; padding: 14px 4px; text-align: center; }

.sim-result { background: #131f36; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 20px; }
.sim-result-head { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-bottom: 12px; }
.sim-grade { flex-shrink: 0; width: 116px; height: 116px; border-radius: 18px; color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
.sim-grade-letter { font-family: var(--disp); font-weight: 800; font-size: 46px; line-height: 1; }
.sim-grade-num { font-size: 13px; font-weight: 600; opacity: 0.92; margin-top: 4px; }
.sim-result-copy { flex: 1; min-width: 220px; }
.sim-result-copy h2 { font-family: var(--disp); color: #fff; font-size: 22px; margin-bottom: 6px; }
.sim-result-copy p { color: #94a3b8; font-size: 14px; line-height: 1.5; margin-bottom: 14px; }
.sim-result-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.sim-result-roster { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 20px; }

/* Draft board grid (team columns x round rows), FantasyPros/Sleeper style */
.sim-board-scroll { overflow-x: auto; border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); background: #0b1322; padding: 10px; }
/* width:100% + minmax(_,1fr) lets columns share the container and shrink to fit
   (no min-width:max-content, which forced content-width and overflowed). */
.sim-board { display: grid; gap: 5px; width: 100%; }
.sim-bname { word-break: break-word; }
.sim-bcell { border-radius: 8px; font-size: 12px; }
.sim-bcorner { min-height: 40px; }
.sim-bhead { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; padding: 6px 4px 8px; }
.sim-bava { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--disp); font-weight: 800; font-size: 15px; box-shadow: 0 2px 6px rgba(0,0,0,0.35); }
.sim-bhead.me .sim-bava { box-shadow: 0 0 0 3px rgba(34,197,94,0.35), 0 2px 6px rgba(0,0,0,0.35); }
.sim-bteam { color: #cbd5e1; font-family: var(--disp); font-weight: 700; font-size: 11px; line-height: 1.15; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sim-bhead.me .sim-bteam { color: #4ade80; }
.sim-brnum { display: flex; align-items: center; justify-content: center; color: #64748b; font-weight: 700; font-size: 12px; }
.sim-bpick { position: relative; overflow: hidden; padding: 7px 8px; min-height: 66px; display: flex; flex-direction: column; justify-content: space-between; }
.sim-bpick.me { box-shadow: inset 0 0 0 2px rgba(15,23,42,0.55), 0 0 0 2px #22c55e; }
.sim-bphoto { position: absolute; right: -6px; bottom: 0; height: 52px; width: auto; object-fit: contain; opacity: 0.95; pointer-events: none; }
.sim-bphoto-logo { height: 40px; right: 4px; bottom: 6px; opacity: 0.9; }
.sim-bpick-hd { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 4px; z-index: 1; }
.sim-bname { font-weight: 800; font-size: 11.5px; line-height: 1.12; max-width: 66%; text-shadow: 0 1px 0 rgba(255,255,255,0.25); }
.sim-bpk { font-size: 10px; font-weight: 800; opacity: 0.8; flex-shrink: 0; }
.sim-bposteam { position: relative; z-index: 1; align-self: flex-start; color: #fff; font-size: 9.5px; font-weight: 800; letter-spacing: 0.02em; padding: 2px 6px; border-radius: 5px; }
.sim-bempty { background: #0f172a; border: 1px dashed rgba(255,255,255,0.07); min-height: 66px; display: flex; align-items: center; justify-content: center; color: #475569; font-size: 10px; text-align: center; padding: 4px; }
.sim-bempty.me { background: rgba(22,163,74,0.06); border-color: rgba(34,197,94,0.22); }
.sim-bempty.now { border-style: solid; border-color: #22c55e; color: #22c55e; font-weight: 700; animation: simPulse 1.4s infinite; }
.sim-board-topbar { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.sim-board-title { font-family: var(--disp); font-weight: 800; color: #fff; font-size: 18px; }

/* Draft analysis (standings, position ranks, insights) */
.sim-analysis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 16px 0; }
.sim-acard { background: #0f172a; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 16px; margin-bottom: 14px; position: relative; }
.sim-analysis-grid .sim-acard { margin-bottom: 0; }
.sim-acard-h { font-family: var(--disp); font-weight: 800; color: #fff; font-size: 15px; margin-bottom: 14px; }

.sim-stand { display: flex; flex-direction: column; gap: 6px; }
.sim-stand-row { display: flex; align-items: center; gap: 10px; padding: 5px 6px; border-radius: 7px; }
.sim-stand-row.me { background: rgba(34,197,94,0.1); }
.sim-stand-rk { width: 20px; color: #64748b; font-weight: 800; font-size: 12px; text-align: center; flex-shrink: 0; }
.sim-stand-nm { width: 130px; flex-shrink: 0; color: #e2e8f0; font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: flex; align-items: center; gap: 6px; }
.sim-stand-row.me .sim-stand-nm { color: #4ade80; }
.sim-stand-you { background: #16a34a; color: #fff; font-size: 8.5px; font-weight: 800; padding: 1px 6px; border-radius: 999px; text-transform: uppercase; }
.sim-stand-bar { flex: 1; height: 8px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; }
.sim-stand-bar > span { display: block; height: 100%; border-radius: 999px; }
.sim-stand-sc { width: 40px; text-align: right; color: #cbd5e1; font-weight: 800; font-size: 13px; flex-shrink: 0; }

.sim-pr { display: flex; flex-direction: column; gap: 9px; }
.sim-pr-row { display: flex; align-items: center; gap: 10px; }
.sim-pr-lbl { width: 66px; flex-shrink: 0; color: #94a3b8; font-size: 12.5px; font-weight: 700; }
.sim-pr-bar { flex: 1; height: 8px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; }
.sim-pr-bar > span { display: block; height: 100%; border-radius: 999px; }
.sim-pr-rk { width: 42px; text-align: right; color: #e2e8f0; font-weight: 800; font-size: 13px; flex-shrink: 0; }

.sim-ins-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sim-ins { display: flex; gap: 11px; align-items: flex-start; }
.sim-ins-ic { flex-shrink: 0; font-size: 17px; line-height: 1.2; }
.sim-ins-t { font-family: var(--disp); font-weight: 700; color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 3px; }
.sim-ins-d { color: #94a3b8; font-size: 13px; line-height: 1.45; }
.sim-ins-d b { color: #e2e8f0; }
.sim-sr-block { margin-top: 14px; }
.sim-sr-h { font-family: var(--disp); font-weight: 700; color: #cbd5e1; font-size: 12.5px; margin-bottom: 8px; }
.sim-sr-h span { color: #64748b; font-weight: 600; font-size: 11px; }
.sim-sr-list { display: flex; flex-wrap: wrap; gap: 7px; }
.sim-sr { display: inline-flex; align-items: center; gap: 7px; background: #0f172a; border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 6px 10px; font-size: 12.5px; color: #e2e8f0; }
.sim-sr .sr-tag { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; padding: 2px 6px; border-radius: 4px; }
.sim-sr.steal .sr-tag { background: rgba(22,163,74,0.18); color: #4ade80; }
.sim-sr.reach .sr-tag { background: rgba(239,68,68,0.18); color: #f87171; }
.sim-sr .sr-g { font-weight: 800; }
.sim-sr.steal .sr-g { color: #4ade80; }
.sim-sr.reach .sr-g { color: #f87171; }

.sim-ai-block { margin-top: 16px; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 14px; }

/* Premium gate */
.premium-gate { position: relative; overflow: hidden; }
.premium-gate .premium-lock { display: none; }
.premium-gate.locked .premium-gate-inner { filter: blur(6px); opacity: 0.5; pointer-events: none; user-select: none; }
.premium-gate.locked .premium-lock { display: flex; position: absolute; inset: 0; align-items: center; justify-content: center; padding: 16px; background: rgba(15,23,42,0.35); }
.premium-lock-in { text-align: center; max-width: 340px; background: #131f36; border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 20px; box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.premium-lock-ic { font-size: 30px; margin-bottom: 8px; }
.premium-lock-tx b { display: block; font-family: var(--disp); color: #fff; font-size: 16px; margin-bottom: 5px; }
.premium-lock-tx span { display: block; color: #94a3b8; font-size: 13px; line-height: 1.45; margin-bottom: 14px; }

@media (max-width: 820px) {
  .sim-analysis-grid { grid-template-columns: 1fr; }
  .sim-ins-list { grid-template-columns: 1fr; }
}

.sim-analysis-card { background: #0f172a; border: 1px solid rgba(255,255,255,0.09); border-radius: 12px; padding: 16px 18px; margin: 4px 0 16px; }
.sim-analysis-load { color: #94a3b8; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.sim-an-err { color: #fca5a5; font-size: 14px; }
.sim-an-head { font-family: var(--disp); font-weight: 800; color: #fff; font-size: 15px; margin-bottom: 8px; }
.sim-an-verdict { color: #cbd5e1; font-size: 14px; line-height: 1.55; margin-bottom: 14px; }
.sim-an-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 6px; }
.sim-an-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 6px; }
.sim-an-good { color: #4ade80; }
.sim-an-bad { color: #f87171; }
.sim-an-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sim-an-list li { font-size: 13px; color: #cbd5e1; line-height: 1.45; padding-left: 16px; position: relative; }
.sim-an-list.good li::before { content: '+'; position: absolute; left: 0; color: #4ade80; font-weight: 800; }
.sim-an-list.bad li::before { content: '!'; position: absolute; left: 0; color: #f87171; font-weight: 800; }
.sim-an-line { font-size: 13px; color: #cbd5e1; line-height: 1.5; margin-top: 10px; }
.sim-an-tag { display: inline-block; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 6px; margin-right: 6px; vertical-align: middle; }
.sim-an-tag.good { background: rgba(22,163,74,0.16); color: #4ade80; }
.sim-an-tag.bad { background: rgba(239,68,68,0.16); color: #f87171; }
.sim-an-tag.neutral { background: rgba(148,163,184,0.16); color: #cbd5e1; }

@media (max-width: 820px) {
  .sim-grid { grid-template-columns: 1fr; }
  .sim-result-roster { grid-template-columns: 1fr; }
  .sim-bar { position: static; }
  .sim-an-cols { grid-template-columns: 1fr; }
}

/* ── "Sync your league" promo modal ──────────────────────────────────────── */
.nfe-sync { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; font-family: var(--body); }
.nfe-sync.open { display: flex; }
.nfe-sync-back { position: absolute; inset: 0; background: rgba(2,6,23,0.72); backdrop-filter: blur(3px); animation: nfeSyncFade 0.25s ease; }
@keyframes nfeSyncFade { from { opacity: 0; } to { opacity: 1; } }
.nfe-sync-card {
  position: relative; width: 100%; max-width: 480px;
  background: linear-gradient(180deg, #131f36, #0f172a);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
  padding: 30px 28px 24px; text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: nfeSyncPop 0.28s cubic-bezier(0.16,1,0.3,1);
}
@keyframes nfeSyncPop { from { opacity: 0; transform: translateY(18px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
.nfe-sync-x { position: absolute; top: 14px; right: 16px; background: none; border: none; color: #64748b; font-size: 13px; font-weight: 600; cursor: pointer; padding: 4px; }
.nfe-sync-x:hover { color: #cbd5e1; }
.nfe-sync-badge { display: inline-block; background: rgba(22,163,74,0.15); color: #4ade80; font-size: 12px; font-weight: 700; padding: 6px 13px; border-radius: 999px; margin-bottom: 16px; letter-spacing: 0.2px; }
.nfe-sync-h { font-family: var(--disp); font-weight: 800; font-size: 25px; line-height: 1.2; color: #fff; margin-bottom: 12px; }
.nfe-sync-h em { color: #22c55e; font-style: italic; }
.nfe-sync-sub { font-size: 14px; line-height: 1.55; color: #94a3b8; margin-bottom: 22px; }
.nfe-sync-feats { display: flex; flex-direction: column; gap: 12px; text-align: left; margin-bottom: 24px; }
.nfe-sync-feat { display: flex; gap: 12px; align-items: flex-start; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 13px 15px; }
.nfe-sync-feat-ico { flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg,#16a34a,#15803d); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.nfe-sync-feat-t { font-weight: 700; color: #e2e8f0; font-size: 14px; margin-bottom: 2px; }
.nfe-sync-feat-d { font-size: 12.5px; color: #94a3b8; line-height: 1.45; }
.nfe-sync-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg,#16a34a,#15803d); color: #fff;
  font-family: var(--disp); font-weight: 700; font-size: 16px;
  padding: 15px; border-radius: 12px; box-shadow: 0 8px 24px rgba(22,163,74,0.38);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nfe-sync-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(22,163,74,0.5); }
.nfe-sync-later { display: block; width: 100%; margin-top: 10px; background: none; border: none; color: #64748b; font-size: 13px; cursor: pointer; padding: 8px; }
.nfe-sync-later:hover { color: #94a3b8; }
@media (max-width: 480px) {
  .nfe-sync-h { font-size: 22px; }
  .nfe-sync-card { padding: 26px 20px 20px; }
  .nfe-sync-x span { display: none; }
}

/* ── Ask the Coach: sitewide chat widget ─────────────────────────────────── */
.nfe-cw { position: fixed; right: 20px; bottom: 20px; z-index: 900; font-family: var(--body); }

.nfe-cw-fab {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff; border: none; cursor: pointer;
  padding: 12px 18px 12px 15px; border-radius: 999px;
  font-family: var(--disp); font-weight: 700; font-size: 14px;
  box-shadow: 0 8px 26px rgba(22,163,74,0.42), 0 2px 6px rgba(0,0,0,0.3);
  position: relative; transition: transform 0.15s, box-shadow 0.15s;
}
.nfe-cw-fab:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(22,163,74,0.5); }
.nfe-cw-fab-ico { font-size: 18px; line-height: 1; }
.nfe-cw-fab-dot {
  position: absolute; top: 8px; right: 12px; width: 9px; height: 9px; border-radius: 50%;
  background: #fbbf24; box-shadow: 0 0 0 0 rgba(251,191,36,0.6); animation: nfeCwPulse 2s infinite;
}
@keyframes nfeCwPulse { 0% { box-shadow: 0 0 0 0 rgba(251,191,36,0.55); } 70% { box-shadow: 0 0 0 9px rgba(251,191,36,0); } 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0); } }
.nfe-cw.open .nfe-cw-fab { display: none; }

.nfe-cw-tip {
  position: absolute; right: 0; bottom: 66px; width: 250px;
  background: #1e293b; color: #e2e8f0; border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px; padding: 13px 30px 13px 14px; font-size: 13px; line-height: 1.45;
  box-shadow: 0 12px 34px rgba(0,0,0,0.45);
  opacity: 0; transform: translateY(8px); pointer-events: none; transition: opacity 0.25s, transform 0.25s;
}
.nfe-cw-tip.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nfe-cw-tip strong { color: #22c55e; }
.nfe-cw-tip::after { content: ''; position: absolute; right: 24px; bottom: -7px; width: 14px; height: 14px; background: #1e293b; border-right: 1px solid rgba(255,255,255,0.09); border-bottom: 1px solid rgba(255,255,255,0.09); transform: rotate(45deg); }
.nfe-cw-tip-x { position: absolute; top: 6px; right: 8px; background: none; border: none; color: #64748b; font-size: 18px; line-height: 1; cursor: pointer; }
.nfe-cw.open .nfe-cw-tip { display: none; }

/* Light theme chat panel (FantasyPros-style) */
.nfe-cw-panel {
  position: absolute; right: 0; bottom: 0; width: 410px; max-width: calc(100vw - 32px);
  height: 610px; max-height: calc(100vh - 40px);
  background: #ffffff; border: 1px solid #e2e8f0; border-radius: 18px;
  box-shadow: 0 24px 64px rgba(15,23,42,0.28); display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(16px) scale(0.98); pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.nfe-cw.open .nfe-cw-panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.nfe-cw-head {
  position: relative; padding: 15px 46px 13px 18px;
  background: #ffffff; color: #0f172a; flex-shrink: 0; border-bottom: 1px solid #eef2f6;
}
.nfe-cw-head-t { font-family: var(--disp); font-weight: 800; font-size: 16px; color: #0f172a; display: flex; align-items: center; gap: 8px; }
.nfe-cw-head-sub { font-size: 11.5px; color: #94a3b8; margin-top: 2px; }
.nfe-cw-hdot { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 6px rgba(22,163,74,0.6); }
.nfe-cw-close { position: absolute; top: 12px; right: 14px; background: #f1f5f9; border: none; color: #64748b; width: 28px; height: 28px; border-radius: 50%; font-size: 18px; line-height: 1; cursor: pointer; }
.nfe-cw-close:hover { background: #e2e8f0; color: #0f172a; }

/* Quota pill (free messages remaining + Upgrade) — centered chip */
.nfe-cw-quota { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 9px 14px; background: #fffbeb; border-bottom: 1px solid #fef3c7; font-size: 12px; color: #92400e; font-weight: 600; flex-shrink: 0; }
.nfe-cw-quota-lock { font-size: 11px; opacity: 0.85; }
.nfe-cw-quota-up { color: #b45309; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.nfe-cw-quota-up:hover { color: #92400e; }

.nfe-cw-msgs { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 14px; background: #ffffff; }
.nfe-cw-welcome { display: flex; gap: 11px; align-items: flex-start; color: #475569; font-size: 13.5px; line-height: 1.55; background: #f8fafc; border: 1px solid #eef2f6; border-radius: 14px; padding: 13px; }
.nfe-cw-welcome-ava { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg,#16a34a,#15803d); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.nfe-cw-row { display: flex; gap: 8px; }
.nfe-cw-row.u { justify-content: flex-end; }
.nfe-cw-ava { display: none; }
.nfe-cw-bub { max-width: 82%; padding: 10px 13px; border-radius: 14px; font-size: 14px; line-height: 1.55; }
.nfe-cw-bub.u { background: #16a34a; color: #fff; border-bottom-right-radius: 4px; }
.nfe-cw-bub.b { background: transparent; color: #1e293b; padding: 0; max-width: 100%; }
.nfe-cw-bub.b strong { color: #0f172a; }
.nfe-cw-cta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.nfe-cw-cta a { font-size: 12.5px; font-weight: 700; padding: 8px 13px; border-radius: 9px; }
.nfe-cw-cta a:first-child { background: #f1f5f9; color: #334155; }
.nfe-cw-cta a:last-child { background: #d97706; color: #fff; }

.nfe-cw-typing { display: inline-flex; gap: 4px; align-items: center; padding: 4px 0; }
.nfe-cw-typing span { width: 6px; height: 6px; border-radius: 50%; background: #cbd5e1; animation: nfeCwBlink 1.2s infinite; }
.nfe-cw-typing span:nth-child(2) { animation-delay: 0.2s; }
.nfe-cw-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes nfeCwBlink { 0%,60%,100% { opacity: 0.3; } 30% { opacity: 1; } }

/* Bot message links + actions */
.nfe-cw-bwrap { display: flex; flex-direction: column; align-items: flex-start; max-width: 100%; }
.nfe-cw-link { color: #2563eb; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(37,99,235,0.35); }
.nfe-cw-link:hover { border-bottom-color: #2563eb; }
.nfe-cw-acts { display: flex; gap: 2px; margin: 7px 0 0 -3px; }
.nfe-cw-acts button { background: none; border: none; cursor: pointer; font-size: 13px; padding: 3px 6px; border-radius: 6px; filter: grayscale(0.5); opacity: 0.55; }
.nfe-cw-acts button:hover { background: #f1f5f9; opacity: 1; }
.nfe-cw-acts button.on { background: #dcfce7; filter: none; opacity: 1; }

.nfe-cw-foot { flex-shrink: 0; padding: 10px 14px 12px; border-top: 1px solid #eef2f6; background: #ffffff; }
.nfe-cw-chips-row { position: relative; margin-bottom: 10px; }
.nfe-cw-chips { display: flex; gap: 7px; overflow-x: auto; padding-right: 30px; scrollbar-width: none; -ms-overflow-style: none; }
.nfe-cw-chips::-webkit-scrollbar { display: none; }
.nfe-cw-chip { flex-shrink: 0; white-space: nowrap; background: #f1f5f9; border: 1px solid #e2e8f0; color: #334155; font-size: 12.5px; padding: 7px 13px; border-radius: 999px; cursor: pointer; transition: background 0.12s; }
.nfe-cw-chip:hover { background: #e2e8f0; }
.nfe-cw-chips-arrow { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; border-radius: 50%; border: 1px solid #e2e8f0; background: #fff; color: #64748b; font-size: 16px; line-height: 1; cursor: pointer; box-shadow: -8px 0 8px rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; }
.nfe-cw-chips-arrow:hover { background: #f1f5f9; color: #0f172a; }
.nfe-cw-disc { text-align: center; color: #94a3b8; font-size: 10.5px; margin-top: 9px; }
.nfe-cw-inrow { display: flex; gap: 8px; }
.nfe-cw-input { flex: 1; background: #f8fafc; border: 1px solid #e2e8f0; color: #0f172a; border-radius: 999px; padding: 12px 16px; font-size: 14px; font-family: var(--body); outline: none; }
.nfe-cw-input::placeholder { color: #94a3b8; }
.nfe-cw-input:focus { border-color: #16a34a; background: #fff; }
.nfe-cw-send { flex-shrink: 0; width: 44px; height: 44px; background: #16a34a; border: none; color: #fff; border-radius: 50%; font-size: 16px; cursor: pointer; transition: background 0.12s; }
.nfe-cw-send:hover { background: #15803d; }

@media (max-width: 560px) {
  .nfe-cw { right: 14px; bottom: 14px; }
  .nfe-cw-fab-label { display: none; }
  .nfe-cw-fab { padding: 14px; }
  .nfe-cw-panel { width: calc(100vw - 24px); height: calc(100vh - 90px); }
}

/* Photo containers for waiver / injury / cheat sheet / draft targets */
.ww-card-idn { display: flex; align-items: center; gap: 10px; }
.inj-idn { display: flex; align-items: center; gap: 10px; }
.cs-pl-flex { display: inline-flex; align-items: center; gap: 8px; }
.cs-pl-flex .pl-img { width: 26px; height: 26px; }
.matchup-board-row > .pl-img { width: 30px; height: 30px; }
.draft-target > .pl-img { width: 26px; height: 26px; align-self: center; }
