/* Zoo Trades brand system - Night Desk
   Chrome #161B22  Deep #0A0D11  Accent #3DDC84  Paper #0F1216 */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; }

/* Night Desk. Committed dark brand, same in every viewing context. */
:root {
  color-scheme: dark;
  --field: #161B22;
  --field-deep: #0A0D11;
  --wire: #3DDC84;
  --wire-deep: #3DDC84;
  --paper: #0F1216;
  --ink: #E8ECF1;
  --muted: #8C97A5;
  --rule: #212832;
  --card: #161B22;
  --grade-a: #2FBF6E;
  --grade-b: #3E8ED0;
  --grade-c: #D6952B;
  --grade-d: #D9453C;
  --grade-inc: #6B7280;
  --alert: #D9453C;
  --raised: #1D2530;
  --art: linear-gradient(135deg, #1D2530 0%, #0A0D11 100%);
  --shadow: 0 1px 2px rgba(0,0,0,.5), 0 8px 24px rgba(0,0,0,.4);
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  --cond: "Helvetica Neue", ui-sans-serif, system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { width: min(1120px, 100% - 2.5rem); margin-inline: auto; }
.narrow { width: min(700px, 100% - 2.5rem); margin-inline: auto; }

/* ---------- Masthead ---------- */
.masthead {
  background: var(--field);
  color: #fff;
  border-bottom: 4px solid var(--wire);
}
.masthead-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding: .85rem 0;
}
.logo {
  font-family: var(--cond);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -.02em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex; align-items: center; gap: .5rem;
  white-space: nowrap;
}
.logo-mark {
  background: var(--wire); color: var(--field-deep);
  width: 30px; height: 30px; border-radius: 6px;
  display: grid; place-items: center;
  font-size: .95rem; font-weight: 900;
}
.nav { display: flex; gap: 1.35rem; margin-left: auto; flex-wrap: wrap; }

@media (max-width: 720px) {
  .masthead-inner { flex-direction: column; align-items: flex-start; gap: .6rem; padding-bottom: 0; }
  .nav {
    margin-left: 0; width: 100%; flex-wrap: nowrap; gap: 1.1rem;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding-bottom: .55rem;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { white-space: nowrap; }
  .logo { font-size: 1.2rem; }
}
.nav a {
  text-decoration: none; font-size: .82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.82); padding: .3rem 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: #fff; border-bottom-color: var(--wire); }

/* ---------- Scorebar (ESPN strip) ---------- */
.scorebar {
  background: var(--field-deep);
  border-bottom: 1px solid rgba(255,255,255,.12);
  overflow-x: auto; scrollbar-width: thin;
}
.scorebar::-webkit-scrollbar { height: 6px; }
.scorebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); border-radius: 3px; }
.scorebar-inner { display: flex; }
.score {
  flex: none; width: 168px; padding: .55rem .8rem .6rem;
  border-right: 1px solid rgba(255,255,255,.1);
  text-decoration: none; color: #fff; display: block;
}
.score:hover { background: rgba(255,255,255,.06); }
.score-status {
  font-family: var(--mono); font-size: .58rem; font-weight: 700;
  letter-spacing: .1em; color: var(--wire); text-transform: uppercase;
  display: flex; justify-content: space-between; gap: .4rem;
}
.score-status span { color: rgba(255,255,255,.45); }
.score-teams {
  display: flex; align-items: center; gap: .4rem; margin: .25rem 0 .15rem;
  font-family: var(--cond); font-weight: 800; font-size: 1.02rem; letter-spacing: -.01em;
}
.score-teams .swap { color: var(--wire); font-size: .9rem; font-weight: 400; }
.score-line {
  font-size: .64rem; color: rgba(255,255,255,.52);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.score-grade {
  margin-top: .3rem; font-size: .6rem; color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: .3rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.score-grade .gradepill { font-size: .66rem; padding: 0 .3rem; }

/* ---------- Breaking bar ---------- */
.breaking {
  background: var(--alert); color: #fff;
  display: flex; align-items: center; gap: .7rem;
  padding: .5rem max(1.25rem, calc((100% - 1120px) / 2));
  font-size: .85rem;
}
.breaking-tag {
  font-family: var(--mono); font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  background: rgba(0,0,0,.28); padding: .2rem .45rem; border-radius: 3px; flex: none;
}
.breaking a {
  color: #fff; text-decoration: none; font-weight: 600;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.breaking a:hover { text-decoration: underline; }

/* ---------- ESPN front-page grid ---------- */
.front { display: grid; gap: 1.75rem; padding: 1.5rem 0 2rem; align-items: start; }
@media (min-width: 940px) { .front { grid-template-columns: minmax(0,1fr) 320px; gap: 2rem; } }

.sectionbar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border-bottom: 3px solid var(--raised); padding-bottom: .4rem;
  margin: 1.75rem 0 1rem;
}
.front-main > .sectionbar:first-child { margin-top: 0; }
.sectionbar h2 {
  font-family: var(--cond); font-weight: 800; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: .01em; margin: 0;
}
.sectionbar a {
  font-family: var(--mono); font-size: .66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); text-decoration: none; white-space: nowrap;
}
.sectionbar a:hover { color: var(--wire-deep); }

/* Lead unit */
.lead {
  display: block; text-decoration: none; background: var(--card);
  border: 1px solid var(--rule); border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 1.25rem;
}
.lead:hover { border-color: var(--wire); }
.lead-art {
  background: var(--art);
  padding: 2.4rem 1.25rem; display: flex; align-items: center;
  justify-content: center; gap: 1.4rem; position: relative;
}
.lead-art::after {
  content: attr(data-species); position: absolute; bottom: .55rem; left: .9rem;
  font-family: var(--mono); font-size: .6rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}
.lead-abbr {
  font-family: var(--cond); font-weight: 800; font-size: clamp(2rem, 7vw, 3.2rem);
  color: #fff; letter-spacing: -.03em; line-height: 1;
}
.lead-swap { color: var(--wire); font-size: clamp(1.4rem, 4vw, 2.2rem); }
.lead-body { padding: 1.1rem 1.25rem 1.25rem; }
.eyebrow {
  font-family: var(--mono); font-size: .63rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--wire-deep); margin: 0 0 .45rem;
}
.lead-body h2 {
  font-family: var(--cond); font-weight: 800; letter-spacing: -.025em;
  font-size: clamp(1.5rem, 4vw, 2.3rem); line-height: 1.08; margin: 0 0 .5rem; color: var(--ink);
}
.lead-sub { margin: 0 0 .85rem; color: var(--muted); font-size: 1rem; }
.lead-grades { display: flex; gap: 1rem; flex-wrap: wrap; }
.minigrade {
  display: flex; align-items: center; gap: .35rem;
  font-family: var(--mono); font-size: .66rem; text-transform: uppercase;
  letter-spacing: .07em; color: var(--muted);
}

.dual { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* Headline list */
.hl-list { border-top: 1px solid var(--rule); }
.hl {
  display: grid; grid-template-columns: 84px minmax(0, 1fr); gap: .9rem; align-items: center;
  padding: .7rem .2rem; border-bottom: 1px solid var(--rule); text-decoration: none;
}
.hl > * { min-width: 0; }
.hl:hover { background: color-mix(in srgb, var(--wire) 8%, transparent); }
.hl-art {
  background: var(--raised); color: #fff; border-radius: 5px;
  font-family: var(--cond); font-weight: 800; font-size: .78rem;
  padding: .5rem .3rem; display: flex; align-items: center; justify-content: center;
  gap: .2rem; letter-spacing: -.01em;
}
.hl-art span { color: var(--wire); font-weight: 400; }
.hl-title { margin: 0 0 .15rem; font-weight: 700; font-size: .98rem; line-height: 1.3; }
.hl-meta {
  margin: 0; font-family: var(--mono); font-size: .63rem;
  text-transform: uppercase; letter-spacing: .07em; color: var(--muted);
}
.gradepill.sm { font-size: .62rem; padding: 0 .28rem; }

/* Right rail */
.front-rail { display: grid; gap: 1.25rem; }
.railbox { background: var(--card); border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; }
.railbar { background: var(--raised); padding: .55rem .9rem; }
.railbar h3 {
  margin: 0; color: #fff; font-family: var(--cond); font-weight: 800;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .05em;
}
.railList { list-style: none; margin: 0; padding: 0; counter-reset: r; }
.railList li {
  counter-increment: r; padding: .6rem .9rem .6rem 2.4rem;
  border-bottom: 1px solid var(--rule); position: relative; font-size: .9rem; line-height: 1.35;
}
.railList li:last-child { border-bottom: 0; }
.railList li::before {
  content: counter(r); position: absolute; left: .9rem; top: .6rem;
  font-family: var(--cond); font-weight: 800; font-size: .85rem; color: var(--wire-deep);
}
.railList a { text-decoration: none; font-weight: 600; display: block; }
.railList a:hover { color: var(--wire-deep); }
.railList span {
  display: block; font-family: var(--mono); font-size: .6rem;
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: .15rem;
}
.stat { padding: .75rem .9rem; border-bottom: 1px solid var(--rule); display: flex; gap: .75rem; align-items: baseline; }
.stat b { font-family: var(--cond); font-weight: 800; font-size: 1.35rem; color: var(--wire); flex: none; letter-spacing: -.02em; }
.stat span { font-size: .82rem; color: var(--muted); line-height: 1.4; }
.statnote { margin: 0; padding: .75rem .9rem; font-size: .8rem; }
.statnote a { font-weight: 700; text-decoration: none; color: var(--wire-deep); }
.railtext { margin: 0; padding: .85rem .9rem; font-size: .87rem; color: var(--muted); line-height: 1.5; }

@media (max-width: 720px) {
  .breaking { flex-wrap: nowrap; }
  .hl { grid-template-columns: 66px minmax(0, 1fr); gap: .7rem; }
  .hl-art { height: 46px; }
}

/* ---------- Hero ---------- */
.hero { padding: 3rem 0 2rem; border-bottom: 1px solid var(--rule); }
.kicker {
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--wire-deep);
  margin: 0 0 .75rem;
}
.hero h1 {
  font-family: var(--cond); font-weight: 800; letter-spacing: -.03em;
  font-size: clamp(2.1rem, 6vw, 3.9rem); line-height: 1.03; margin: 0 0 1rem;
}
.hero p { font-size: 1.15rem; color: var(--muted); margin: 0 0 1.5rem; max-width: 60ch; }

/* ---------- Sections ---------- */
.section { padding: 2.75rem 0; }
.section + .section { border-top: 1px solid var(--rule); }
.section-head {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--cond); font-weight: 800; letter-spacing: -.02em;
  font-size: 1.5rem; margin: 0; text-transform: uppercase;
}
.section-head .rule { flex: 1; height: 3px; background: var(--wire); min-width: 2rem; }
.section-head a { font-size: .8rem; font-weight: 600; color: var(--muted); text-decoration: none; }
.section-head a:hover { color: var(--ink); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card {
  background: var(--card); border: 1px solid var(--rule); border-radius: 10px;
  padding: 1.25rem; text-decoration: none; display: flex; flex-direction: column;
  gap: .6rem; box-shadow: var(--shadow); transition: transform .12s ease, border-color .12s ease;
}
.card:hover { transform: translateY(-2px); border-color: var(--wire); }
.card h3 { font-family: var(--cond); font-weight: 800; font-size: 1.15rem; margin: 0; letter-spacing: -.02em; line-height: 1.2; }
.card p { margin: 0; color: var(--muted); font-size: .93rem; }
.card-meta {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  font-family: var(--mono); font-size: .7rem; text-transform: uppercase;
  letter-spacing: .08em; color: var(--muted);
}
.rank {
  background: var(--raised); color: #fff; font-family: var(--cond); font-weight: 800;
  width: 26px; height: 26px; border-radius: 5px; display: grid; place-items: center;
  font-size: .8rem; flex: none;
}
.card.featured { grid-column: 1 / -1; }
.card.featured h3 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }

/* ---------- Badges ---------- */
.badge {
  display: inline-block; font-family: var(--mono); font-size: .66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em; padding: .2rem .45rem;
  border-radius: 4px; border: 1px solid var(--rule); color: var(--muted);
}
.badge.completed { color: var(--grade-a); border-color: color-mix(in srgb, var(--grade-a) 40%, transparent); }
.badge.announced { color: var(--grade-b); border-color: color-mix(in srgb, var(--grade-b) 40%, transparent); }
.badge.stalled, .badge.in-progress { color: var(--grade-c); border-color: color-mix(in srgb, var(--grade-c) 40%, transparent); }

.gradepill {
  font-family: var(--cond); font-weight: 800; font-size: .95rem;
  padding: .15rem .5rem; border-radius: 5px; color: #fff; background: var(--grade-inc);
  display: inline-block; line-height: 1.35;
}
.g-A { background: var(--grade-a); } .g-B { background: var(--grade-b); }
.g-C { background: var(--grade-c); } .g-D, .g-F { background: var(--grade-d); }
.g-INC { background: var(--grade-inc); }

/* ---------- Trade page ---------- */
.article { padding: 2.5rem 0 3rem; }
.article h1 {
  font-family: var(--cond); font-weight: 800; letter-spacing: -.03em;
  font-size: clamp(1.9rem, 5.5vw, 3.2rem); line-height: 1.05; margin: 0 0 .75rem;
}
.standfirst { font-size: 1.2rem; color: var(--muted); margin: 0 0 1.5rem; }
.byline {
  font-family: var(--mono); font-size: .72rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule); margin-bottom: 1.75rem;
  display: flex; gap: .75rem; flex-wrap: wrap; align-items: center;
}
.article p { margin: 0 0 1.15rem; }
.article h2 {
  font-family: var(--cond); font-weight: 800; text-transform: uppercase;
  font-size: 1.15rem; letter-spacing: -.01em; margin: 2.25rem 0 1rem;
  padding-bottom: .45rem; border-bottom: 3px solid var(--wire); display: inline-block;
}

.dealbox {
  background: var(--card); border: 1px solid var(--rule); border-left: 4px solid var(--wire);
  border-radius: 8px; padding: 1.1rem 1.25rem; margin: 0 0 1.75rem;
}
.dealbox h4 {
  font-family: var(--mono); font-size: .7rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--muted); margin: 0 0 .75rem;
}
.dealrow { padding: .55rem 0; border-top: 1px solid var(--rule); font-size: .95rem; }
.dealrow:first-of-type { border-top: 0; }
.dealrow strong { font-weight: 700; }
.dealrow .route { color: var(--muted); font-size: .86rem; display: block; margin-top: .15rem; }

.grades { display: grid; gap: .75rem; margin: 0 0 1.75rem; }
.graderow {
  display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start;
  background: var(--card); border: 1px solid var(--rule); border-radius: 8px; padding: .9rem 1rem;
}
.graderow .team { font-family: var(--cond); font-weight: 800; font-size: 1rem; margin: 0 0 .2rem; }
.graderow .note { margin: 0; font-size: .92rem; color: var(--muted); }

.why {
  background: var(--raised);
  border-radius: 8px; padding: 1rem 1.25rem; margin: 0 0 1.75rem;
  font-size: .95rem;
}
.why b { font-family: var(--mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--wire-deep); display: block; margin-bottom: .4rem; }

.sources { font-size: .88rem; color: var(--muted); }
.sources li { margin-bottom: .35rem; }

/* ---------- Table ---------- */
.tablewrap { overflow-x: auto; border: 1px solid var(--rule); border-radius: 10px; background: var(--card); }
table { border-collapse: collapse; width: 100%; min-width: 720px; font-size: .92rem; }
th, td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--rule); }
th {
  font-family: var(--mono); font-size: .68rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); background: var(--raised);
  position: sticky; top: 0;
}
tbody tr:hover { background: color-mix(in srgb, var(--wire) 7%, transparent); }
td a { font-weight: 600; text-decoration: none; }
td a:hover { color: var(--wire-deep); }
tr:last-child td { border-bottom: 0; }

/* ---------- Signup ---------- */
.signup {
  background: var(--raised); color: #fff; border-radius: 12px;
  padding: 2rem 1.75rem; margin: 0;
  display: grid; gap: 1rem; align-items: center;
}
@media (min-width: 760px) { .signup { grid-template-columns: 1.3fr 1fr; gap: 2rem; } }
.signup h3 { font-family: var(--cond); font-weight: 800; font-size: 1.5rem; margin: 0 0 .4rem; letter-spacing: -.02em; }
.signup p { margin: 0; color: rgba(255,255,255,.78); font-size: .95rem; }
.signup form { display: flex; gap: .5rem; flex-wrap: wrap; }
.signup input {
  flex: 1 1 200px; padding: .7rem .85rem; border-radius: 7px; font-size: .95rem;
  border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1); color: #fff;
  font-family: inherit;
}
.signup input::placeholder { color: rgba(255,255,255,.55); }
.signup button {
  padding: .7rem 1.2rem; border-radius: 7px; border: 0; cursor: pointer;
  background: var(--wire); color: var(--field-deep); font-weight: 800;
  font-family: var(--cond); font-size: .95rem; text-transform: uppercase; letter-spacing: .03em;
}
.signup button:hover { background: #fff; }

/* ---------- Footer ---------- */
.foot {
  background: var(--field-deep); color: rgba(255,255,255,.62);
  padding: 2.5rem 0 3rem; margin-top: 3rem; font-size: .88rem;
}
.foot a { color: rgba(255,255,255,.85); }
.foot-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.foot h5 {
  font-family: var(--mono); font-size: .68rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--wire); margin: 0 0 .6rem;
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: .3rem; }
.disclaimer {
  margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.12);
  font-size: .8rem; color: rgba(255,255,255,.45);
}

.backlink {
  font-family: var(--mono); font-size: .72rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); text-decoration: none;
  display: inline-block; margin-bottom: 1.5rem;
}
.backlink:hover { color: var(--wire-deep); }

/* ---------- Photography ---------- */
.lead-art { padding: 0; display: block; min-height: 0; }
.lead-art::after { display: none; }
.lead-photo {
  width: 100%; height: clamp(220px, 34vw, 380px); object-fit: cover; display: block;
  filter: saturate(1.02);
}
.lead-art { position: relative; }
.lead-codes {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  gap: 1.4rem; background: linear-gradient(180deg, rgba(10,13,17,.15) 0%, rgba(10,13,17,.78) 100%);
  text-shadow: 0 2px 18px rgba(0,0,0,.65);
}
.credit {
  position: absolute; left: .8rem; bottom: .5rem; right: .8rem;
  font-family: var(--mono); font-size: .55rem; letter-spacing: .04em;
  color: rgba(255,255,255,.62); line-height: 1.4;
}
.credit a { color: rgba(255,255,255,.82); }

.card-art { position: relative; margin: -1.25rem -1.25rem .35rem; overflow: hidden; border-radius: 10px 10px 0 0; }
.card-photo { width: 100%; height: 168px; object-fit: cover; display: block; }
.card-code {
  position: absolute; left: .7rem; bottom: .55rem;
  font-family: var(--cond); font-weight: 800; font-size: .95rem; color: #fff;
  background: rgba(10,13,17,.72); padding: .15rem .5rem; border-radius: 4px;
  letter-spacing: -.01em; backdrop-filter: blur(3px);
}
.card.featured .card-photo { height: 260px; }

.hl-art {
  position: relative; display: block; padding: 0; overflow: hidden;
  width: 100%; min-width: 0; height: 54px; border-radius: 5px;
  background: var(--raised); flex: none;
}
.hl-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block; opacity: .9;
}
.hl-art .hl-code {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--cond); font-weight: 800; font-size: .6rem; color: #fff;
  background: linear-gradient(180deg, rgba(10,13,17,.25), rgba(10,13,17,.72));
  letter-spacing: -.01em; gap: .12rem; text-shadow: 0 1px 6px rgba(0,0,0,.8);
}

.hero-art { margin: 0 0 1.75rem; position: relative; }
.hero-photo {
  width: 100%; height: clamp(200px, 32vw, 360px); object-fit: cover;
  display: block; border-radius: 8px; border: 1px solid var(--rule);
}
.hero-art figcaption { position: static; }
.hero-art .credit {
  position: static; display: block; margin-top: .45rem; color: var(--muted);
  font-size: .58rem;
}
.hero-art .credit a { color: var(--muted); }

@media (max-width: 720px) {
  .card-photo { height: 140px; }
  .card.featured .card-photo { height: 180px; }
}

/* ---------- Video ---------- */
.videowrap { margin: 2.25rem 0 0; }
.video {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  background: var(--raised); border: 1px solid var(--rule);
  border-radius: 8px; overflow: hidden;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.videometa {
  margin: .6rem 0 0; font-size: .85rem; color: var(--muted); line-height: 1.5;
}
.videometa span {
  display: block; font-family: var(--mono); font-size: .6rem;
  text-transform: uppercase; letter-spacing: .08em; margin-top: .25rem;
}
.playdot {
  position: absolute; top: .6rem; right: .6rem; z-index: 2;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(10,13,17,.78); color: var(--wire);
  display: grid; place-items: center; font-size: .62rem;
  padding-left: 2px; backdrop-filter: blur(3px);
}
