:root {
  --bg: #e8edf2;
  --card: #ffffff;
  --ink: #333333;
  --muted: #8d969f;
  --line: #d6dde0;
  --link: #548eaa;
  --link-hover: #3d6f8a;
  --false: #c62828;
  --mixed: #ef6c00;
  --true: #2e7d32;
  --unk: #6f757b;
  --header: #ffffff;
  --btn: #548eaa;
  --btn-text: #ffffff;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Fira Sans", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  font-size: 15px;
}

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); }

.wrap {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
}

.top {
  background: var(--header);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  gap: 12px;
}
.mark {
  font-weight: 700;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -0.02em;
}
.mark:hover { color: var(--link); }
.bot-link {
  background: var(--btn);
  color: var(--btn-text);
  padding: 7px 14px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.bot-link:hover { color: var(--btn-text); filter: brightness(0.95); }

.hero {
  background: var(--card);
  border-radius: 3px;
  padding: 22px 24px;
  margin: 18px auto 16px;
}
.eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero h1 {
  font-size: 26px;
  line-height: 1.25;
  margin: 0 0 10px;
  font-weight: 700;
}
.lead { margin: 0; color: #4d4d4d; max-width: 640px; }
.hint { color: var(--muted); margin: 10px 0 0; font-size: 13px; }

.feed { padding-bottom: 48px; }
.feed-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 8px 0 12px;
}
.feed-head h2 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
}
.feed-head p { display: none; }

.cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card {
  background: var(--card);
  border-radius: 3px;
  padding: 20px 24px 22px;
  min-width: 0;
}
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}
.card-meta time { color: var(--muted); }
.card-meta .dot { color: var(--line); }
.badge {
  font-size: 12px;
  font-weight: 600;
}
.badge-false { color: var(--false); }
.badge-mixed { color: var(--mixed); }
.badge-true { color: var(--true); }
.badge-unverifiable { color: var(--unk); }

.card h2,
.card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}
.card h2 a,
.card h3 a { color: var(--ink); }
.card h2 a:hover,
.card h3 a:hover { color: var(--link); }

.hits-label {
  margin: 12px 0 6px;
  font-weight: 600;
  color: var(--false);
  font-size: 14px;
}
.hits-label.mute { color: var(--muted); font-weight: 500; }
.hits {
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
}
.hits li { margin-bottom: 4px; }
.claim-note { color: var(--muted); font-size: 14px; }
.model { margin: 12px 0 0; font-size: 13px; color: var(--muted); }
.more {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
}
code {
  font-size: 12px;
  background: #eef2f5;
  padding: 1px 5px;
  border-radius: 2px;
}

.player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  margin: 4px 0 12px;
  border-radius: 3px;
  overflow: hidden;
}
.player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.player.wide { margin: 16px 0 20px; }
.player.shorts {
  aspect-ratio: 9 / 16;
  max-width: 360px;
}
.player-time {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 2px;
  pointer-events: none;
}
.thumb {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #d6dde0;
  margin: 4px 0 12px;
  border-radius: 3px;
  overflow: hidden;
}
.thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0;
}
.thumb.wide { margin: 16px 0 20px; }

.empty {
  background: var(--card);
  border-radius: 3px;
  padding: 28px 24px;
}

.report {
  background: var(--card);
  border-radius: 3px;
  padding: 24px;
  margin: 18px auto 48px;
}
.report h1 {
  font-size: 28px;
  line-height: 1.25;
  margin: 8px 0 12px;
  font-weight: 700;
}
.report h2 {
  font-size: 18px;
  margin: 24px 0 10px;
}
.model-box {
  background: #f4f7f9;
  border-radius: 3px;
  padding: 14px 16px;
  margin: 16px 0;
}
.claims { padding-left: 18px; }
.claims li { margin-bottom: 14px; }
.claim { font-weight: 600; margin-bottom: 4px; }
.sources a { display: block; word-break: break-all; font-size: 13px; }
.cta-row { margin-top: 28px; }
.cta {
  display: inline-block;
  background: var(--btn);
  color: var(--btn-text);
  padding: 8px 16px;
  border-radius: 3px;
  font-weight: 500;
}
.cta:hover { color: var(--btn-text); }

footer {
  color: var(--muted);
  font-size: 13px;
  padding: 8px 0 32px;
}

@media (max-width: 800px) {
  .wrap { width: calc(100% - 24px); }
  .hero, .card, .report { padding: 16px; }
  .player.shorts { max-width: 100%; }
  .hero h1, .report h1 { font-size: 22px; }
  .card h2, .card h3 { font-size: 19px; }
}
