/* FPL360 League Lens — dark sports-editorial (#0e1428 / #00ff85) */
.fplll-body {
  margin: 0;
  background: #0e1428;
  color: #f4f5f7;
  font-family: 'Outfit', 'DM Sans', system-ui, sans-serif;
}

.fplll-wrap {
  --ll-bg: #0e1428;
  --ll-panel: #161e36;
  --ll-panel-2: #1a2240;
  --ll-border: rgba(255, 255, 255, 0.1);
  --ll-green: #00ff85;
  --ll-green-ink: #03331c;
  --ll-cyan: #00d4ff;
  --ll-violet: #a78bfa;
  --ll-muted: #94a3b8;
  --ll-text: #f8fafc;
  --ll-radius: 14px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 36px 20px 72px;
  color: var(--ll-text);
  font-family: 'Outfit', 'DM Sans', system-ui, sans-serif;
  background: transparent;
}

.fplll-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ll-green);
  margin-bottom: 10px;
}

.fplll-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
}
@media (max-width: 800px) {
  .fplll-hero { grid-template-columns: 1fr; }
  .fplll-hero__radar { display: none; }
}

.fplll-hero h1 {
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin: 0 0 8px;
  color: #fff;
}
.fplll-lead {
  font-size: 18px;
  color: var(--ll-muted);
  margin: 0 0 22px;
}

.fplll-form {
  display: grid;
  gap: 12px;
  max-width: 480px;
}
.fplll-field {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ll-muted);
}
.fplll-field em { color: var(--ll-green); font-style: normal; }
.fplll-field small { text-transform: none; letter-spacing: 0; font-weight: 500; }
.fplll-field input {
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--ll-border);
  background: var(--ll-panel);
  color: #fff;
}
.fplll-field input:focus {
  outline: none;
  border-color: var(--ll-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 133, 0.18);
}

.fplll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 13px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: var(--ll-green);
  color: var(--ll-green-ink);
  transition: transform 0.15s ease, background 0.15s ease;
}
.fplll-btn:hover { background: #02d76a; color: #fff; }
.fplll-btn--block { width: 100%; }
.fplll-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--ll-border);
}
.fplll-btn--ghost:hover {
  border-color: var(--ll-green);
  color: var(--ll-green);
  background: transparent;
}

.fplll-hint {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ll-muted);
  max-width: 520px;
}
.fplll-hint code {
  background: var(--ll-panel-2);
  padding: 2px 6px;
  border-radius: 4px;
  color: #e2e8f0;
}

.fplll-radar {
  position: relative;
  width: min(280px, 70vw);
  height: min(280px, 70vw);
  margin: 0 auto;
}
.fplll-radar span {
  position: absolute;
  inset: 10%;
  border: 1px dashed rgba(0, 255, 133, 0.35);
  border-radius: 50%;
}
.fplll-radar span:nth-child(2) { inset: 22%; }
.fplll-radar span:nth-child(3) { inset: 34%; }
.fplll-radar span:nth-child(4) { inset: 46%; border-style: solid; border-color: rgba(0, 255, 133, 0.55); }
.fplll-radar i {
  position: absolute;
  left: 50%; top: 50%;
  width: 70%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--ll-green));
  transform-origin: left center;
  animation: fplll-sweep 4s linear infinite;
}
.fplll-radar::before, .fplll-radar::after {
  content: '';
  position: absolute;
  background: rgba(0, 255, 133, 0.25);
}
.fplll-radar::before { left: 50%; top: 8%; bottom: 8%; width: 1px; }
.fplll-radar::after { top: 50%; left: 8%; right: 8%; height: 1px; }
@keyframes fplll-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.fplll-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin: 28px 0;
}
.fplll-card {
  background: var(--ll-panel);
  border: 1px solid var(--ll-border);
  border-radius: var(--ll-radius);
  padding: 20px 22px;
}
.fplll-card h2, .fplll-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.fplll-card p { margin: 0; color: var(--ll-muted); font-size: 14px; line-height: 1.55; }

.fplll-faq { max-width: 680px; margin-top: 20px; }
.fplll-faq h2 { font-size: 22px; font-weight: 900; color: #fff; }
.fplll-faq h3 { font-size: 15px; margin: 18px 0 6px; color: var(--ll-green); }
.fplll-faq p { color: var(--ll-muted); font-size: 14px; line-height: 1.65; margin: 0; }

/* Report */
.fplll-reporthead { text-align: center; margin-bottom: 28px; }
.fplll-reporthead h1 {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0 0 12px;
  color: #fff;
}
.fplll-intro {
  color: var(--ll-muted);
  max-width: 640px;
  margin: 0 auto 18px;
  line-height: 1.6;
}
.fplll-intro strong { color: var(--ll-green); }
.fplll-share { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.fplll-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(0, 255, 133, 0.12);
  border: 1px solid rgba(0, 255, 133, 0.35);
  color: var(--ll-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.fplll-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 860px) {
  .fplll-board { grid-template-columns: 1fr; }
}
.fplll-card--threat { grid-column: 1 / -1; }

.fplll-card__hd {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.fplll-card__hd span { color: var(--ll-muted); font-size: 12px; font-weight: 600; }

.fplll-eo { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.fplll-eo li {
  display: grid;
  grid-template-columns: 110px 1fr 52px;
  gap: 10px;
  align-items: center;
}
.fplll-eo__meta strong { display: block; font-size: 14px; color: #fff; }
.fplll-eo__meta em { font-style: normal; font-size: 11px; color: var(--ll-muted); font-weight: 700; }
.fplll-eo__bar {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.fplll-eo__overall {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: rgba(148, 163, 184, 0.35);
  border-radius: 999px;
}
.fplll-eo__league {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--ll-green);
  border-radius: 999px;
  z-index: 1;
}
.fplll-eo__pct {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: var(--ll-green);
  font-size: 13px;
}
.fplll-legend { margin-top: 12px; font-size: 12px; color: var(--ll-muted); }
.fplll-swatch {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 2px;
  margin-right: 4px;
  vertical-align: middle;
}
.fplll-swatch--g { background: var(--ll-green); }
.fplll-swatch--muted { background: rgba(148, 163, 184, 0.5); }

.fplll-caps { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.fplll-caps li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--ll-border);
}
.fplll-caps li:last-child { border-bottom: 0; }
.fplll-caps__rank {
  width: 28px; height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0e1428;
  color: var(--ll-green);
  font-weight: 800;
  font-size: 13px;
}
.fplll-caps__who strong { display: block; color: #fff; font-size: 14px; }
.fplll-caps__who small { color: var(--ll-muted); font-size: 12px; }
.fplll-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--ll-border);
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}
.fplll-tag--hot {
  background: rgba(0, 255, 133, 0.15);
  border-color: rgba(0, 255, 133, 0.45);
  color: var(--ll-green);
}

.fplll-you { margin: 0 0 12px; color: #fff; }
.fplll-threats { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.fplll-threats li {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--ll-panel-2);
  border: 1px solid rgba(0, 212, 255, 0.2);
}
.fplll-threats__who { display: flex; flex-wrap: wrap; gap: 8px; align-items: baseline; margin-bottom: 6px; }
.fplll-threats__who strong { color: #fff; }
.fplll-threats__who small { color: var(--ll-muted); }
.fplll-threats__notes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--ll-muted);
}
.fplll-warn { color: #fbbf24; }

.fplll-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 14px;
}
@media (max-width: 700px) {
  .fplll-split { grid-template-columns: 1fr; }
}
.fplll-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.fplll-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.fplll-chip--green {
  background: rgba(0, 255, 133, 0.14);
  color: var(--ll-green);
  border: 1px solid rgba(0, 255, 133, 0.35);
}
.fplll-chip--violet {
  background: rgba(167, 139, 250, 0.14);
  color: var(--ll-violet);
  border: 1px solid rgba(167, 139, 250, 0.35);
}

.fplll-sharebrief {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}
@media (max-width: 800px) {
  .fplll-sharebrief { grid-template-columns: 1fr; }
}
.fplll-sharebrief__preview img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--ll-border);
  background: #0b1020;
}
.fplll-softcta {
  margin-top: 14px !important;
  font-size: 13px !important;
}
.fplll-softcta a { color: var(--ll-green); text-decoration: none; font-weight: 700; }
.fplll-softcta a:hover { text-decoration: underline; }

.fplll-link { color: var(--ll-green); font-weight: 700; text-decoration: none; }
.fplll-link:hover { text-decoration: underline; }
.fplll-muted { color: var(--ll-muted) !important; }
.fplll-footnote {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  color: #64748b;
}

.fplll-error {
  text-align: center;
  padding: 48px 16px;
  background: var(--ll-panel);
  border-radius: var(--ll-radius);
  border: 1px solid var(--ll-border);
}
.fplll-error h1 { color: #fff; margin-bottom: 10px; }
