:root {
  --bg: #0a0a0b; --surface: #131417; --surface-2: #17181c; --surface-hover: #1d1f24;
  --border: rgba(255,255,255,.08); --border-strong: rgba(255,255,255,.14);
  --text: #f4f5f3; --text-muted: #8a8d94; --text-dim: #5f636b;
  --primary: #3987e5; --primary-soft: rgba(57,135,229,.16);
  --up: #4ade80; --up-soft: rgba(74,222,128,.13);
  --down: #f87171; --down-soft: rgba(248,113,113,.13);
  --live: #ff3b4f; --live-soft: rgba(255,59,79,.14);
  --gold: #f5c451;
  --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px; --radius-xl: 22px;
  --maxw: 1080px;
  --ease-out: cubic-bezier(.16,1,.3,1);
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: "Geist", "Inter", -apple-system, "Segoe UI", sans-serif;
  font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
button { font: inherit; color: inherit; }
.num { font-variant-numeric: tabular-nums; }
.mono { font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; }
.muted { color: var(--text-muted); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.glow {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(720px 420px at 78% -8%, rgba(57,135,229,.18), transparent 70%),
    radial-gradient(560px 360px at 8% 12%, rgba(255,59,79,.07), transparent 70%);
}
main, header, footer { position: relative; z-index: 1; }

/* ===== Header / footer ===== */
header.site {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); background: rgba(10,10,11,.74);
  border-bottom: 1px solid var(--border);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 20px; letter-spacing: -.02em; text-decoration: none; }
.brand img { height: 28px; width: auto; display: block; }
.brand.small { font-size: 16px; } .brand.small img { height: 22px; }
.nav-links { display: flex; gap: 28px; font-size: 15px; color: var(--text-muted); }
.nav-links a { text-decoration: none; transition: color .18s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { font-weight: 600; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; font-weight: 600;
  border-radius: var(--radius-sm); border: 0; cursor: pointer; white-space: nowrap;
  transition: transform .16s var(--ease-out), background .2s, box-shadow .2s;
}
.btn-primary { background: var(--primary); color: #fff; padding: 11px 20px; font-size: 15px; box-shadow: 0 8px 24px -8px rgba(57,135,229,.6); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost { background: var(--surface-2); padding: 11px 20px; font-size: 15px; border: 1px solid var(--border-strong); }
.btn-ghost:hover { background: var(--surface-hover); }
footer.site { border-top: 1px solid var(--border); margin-top: 72px; padding: 28px 0 40px; font-size: 14px; }
footer.site .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
@media (max-width: 760px) { .nav-links { display: none; } }

/* ===== Hero ===== */
.hero { padding: 56px 0 28px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted);
  border: 1px solid var(--border); background: var(--surface); padding: 6px 14px; border-radius: 999px;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 0 var(--live-soft); animation: livepulse 1.8s infinite; flex: none; }
@keyframes livepulse { 0% { box-shadow: 0 0 0 0 rgba(255,59,79,.55);} 70% { box-shadow: 0 0 0 8px rgba(255,59,79,0);} 100% { box-shadow: 0 0 0 0 rgba(255,59,79,0);} }
.hero h1 { font-size: clamp(36px, 6vw, 60px); line-height: 1.05; letter-spacing: -.035em; font-weight: 800; margin: 18px 0 14px; }
.hero .sub { color: var(--text-muted); max-width: 58ch; margin: 0 auto 22px; font-size: clamp(16px, 1.8vw, 18px); }
.status {
  display: inline-flex; align-items: center; gap: 10px; font-size: 14px;
  border: 1px solid var(--border-strong); background: var(--surface); border-radius: 999px; padding: 7px 16px 7px 10px;
}
.ring { width: 18px; height: 18px; transform: rotate(-90deg); }
.ring circle { fill: none; stroke: var(--border-strong); stroke-width: 2.5; }
.ring .ring-fg { stroke: var(--primary); stroke-linecap: round; stroke-dasharray: 50.27; stroke-dashoffset: 50.27; transition: stroke-dashoffset 1s linear; }
.status.stale .ring .ring-fg { stroke: var(--gold); }

/* ===== KPIs ===== */
.kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 12px 0 36px; }
.kpi { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px 18px; min-width: 0; }
.kpi .label { font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--text-muted); }
.kpi .value { font-size: 28px; font-weight: 700; letter-spacing: -.02em; margin: 4px 0 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kpi .foot { font-size: 13px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kpi .foot strong { color: var(--text); font-weight: 600; }
@media (max-width: 860px) {
  .kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kpi .foot { white-space: normal; }
  .kpi .value { font-size: 24px; }
}

/* ===== Board ===== */
.board-head, .card-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
h2 { font-size: 22px; letter-spacing: -.02em; margin: 0 0 2px; }
.board-head p, .card-head p { margin: 0; font-size: 14px; }
.seg { display: inline-flex; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 10px; padding: 3px; }
.seg button { border: 0; background: transparent; padding: 7px 14px; border-radius: 7px; font-size: 14px; font-weight: 600; color: var(--text-muted); cursor: pointer; }
.seg button[aria-selected="true"] { background: var(--surface-hover); color: var(--text); box-shadow: 0 0 0 1px var(--border-strong) inset; }

.rank-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.row {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: border-color .2s, background .2s;
  will-change: transform;
}
.row:hover { border-color: var(--border-strong); }
.row.open { border-color: rgba(57,135,229,.45); }
.row.leader { border-color: rgba(245,196,81,.32); }
.row-main {
  display: grid; align-items: center; gap: 14px; padding: 12px 18px 12px 12px; cursor: pointer;
  grid-template-columns: 44px 56px minmax(0, 1fr) 150px 132px;
  width: 100%; text-align: left; background: none; border: 0;
}
.row-main:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: var(--radius-lg); }
.pos { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.pos .n { font-size: 24px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.row.leader .pos .n { color: var(--gold); }
.move { display: inline-flex; align-items: center; gap: 2px; font-size: 11px; font-weight: 700; padding: 2px 6px; border-radius: 6px; line-height: 1.3; white-space: nowrap; }
.move.up { color: var(--up); background: var(--up-soft); }
.move.down { color: var(--down); background: var(--down-soft); }
.move.same { color: var(--text-muted); background: rgba(255,255,255,.06); }
.move.new { color: #8fbcf2; background: var(--primary-soft); letter-spacing: .04em; }
.avatar { width: 56px; height: 56px; border-radius: 14px; overflow: hidden; background: var(--surface-hover); flex: none; }
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.info { min-width: 0; }
.info .name { font-size: 19px; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.info .title { font-size: 14px; color: #c9cbd0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 2px 0 5px; }
.info .meta { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-muted); flex-wrap: wrap; }
.badge-live { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; color: var(--live); border: 1px solid rgba(255,59,79,.45); background: var(--live-soft); padding: 1px 6px; border-radius: 5px; }
.badge-live i { width: 5px; height: 5px; border-radius: 50%; background: var(--live); }
.chip { font-size: 11.5px; font-weight: 600; color: var(--text-muted); background: rgba(255,255,255,.06); padding: 1px 7px; border-radius: 5px; }
.trend-up { color: var(--up); } .trend-down { color: var(--down); }
.spark { width: 150px; height: 44px; display: block; overflow: visible; }
.viewers { text-align: right; }
.viewers .v { font-size: 26px; font-weight: 800; letter-spacing: -.03em; line-height: 1.05; }
.viewers .d { font-size: 12.5px; font-weight: 600; }
.viewers .mx { font-size: 12.5px; color: var(--text-muted); }
.share { height: 3px; margin: 0 18px 0 126px; border-radius: 2px; background: rgba(255,255,255,.05); overflow: hidden; }
.share span { display: block; height: 100%; background: var(--primary); border-radius: 2px; transition: width .6s var(--ease-out); }
.row-main + .share { margin-bottom: 12px; }

.detail { display: none; padding: 6px 18px 18px; border-top: 1px solid var(--border); margin-top: 0; }
.row.open .detail { display: block; }
.detail-grid { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 20px; margin-top: 14px; }
.thumb { display: block; position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16/9; background: var(--surface-hover); text-decoration: none; }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb .play { position: absolute; left: 10px; bottom: 10px; font-size: 12.5px; font-weight: 600; background: rgba(0,0,0,.72); padding: 4px 10px; border-radius: 6px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; margin-top: 14px; }
.stats div { font-size: 12px; color: var(--text-muted); }
.stats b { display: block; font-size: 16px; color: var(--text); font-weight: 700; }
.detail-chart { min-height: 220px; }
.detail-chart h4 { margin: 0 0 6px; font-size: 13px; font-weight: 600; color: var(--text-muted); }
.more { margin: 16px auto 0; display: flex; }

@media (max-width: 860px) {
  .row-main { grid-template-columns: 40px 48px minmax(0, 1fr) auto; gap: 12px; padding: 12px 14px 12px 10px; }
  .row-main .spark-cell { display: none; }
  .avatar { width: 48px; height: 48px; border-radius: 12px; }
  .share { margin-left: 110px; }
  .detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .row-main { grid-template-columns: 34px 40px minmax(0, 1fr) auto; gap: 10px; }
  .avatar { width: 40px; height: 40px; border-radius: 10px; }
  .pos .n { font-size: 20px; }
  .info .name { font-size: 16px; }
  .info .title { font-size: 13px; }
  .viewers .v { font-size: 20px; }
  .viewers .mx { display: none; }
  .share { margin: 0 14px 12px 94px; }
  .detail { padding: 4px 14px 14px; }
}

/* ===== Chart cards ===== */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 22px 22px 18px; margin-top: 36px; }
.bump, .area { width: 100%; }
.legend { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 10px; font-size: 13px; color: var(--text-muted); }
.legend span { display: inline-flex; align-items: center; gap: 7px; cursor: default; }
.legend i { width: 12px; height: 3px; border-radius: 2px; }
svg text { font-family: inherit; }
.axis text { fill: var(--text-muted); font-size: 11.5px; }
.axis path { display: none; }
.axis line { stroke: rgba(255,255,255,.06); }
.bump-line { fill: none; stroke-width: 2px; stroke-linejoin: round; stroke-linecap: round; transition: opacity .15s, stroke-width .15s; }
.bump-dot { stroke: var(--surface); stroke-width: 2px; }
.bump-label { font-size: 12.5px; font-weight: 600; fill: var(--text); }
.bump.hovering .series { opacity: .15; }
.bump.hovering .series.hl { opacity: 1; }
.bump.hovering .series.hl .bump-line { stroke-width: 3px; }
.crosshair { stroke: rgba(255,255,255,.28); stroke-width: 1px; }

/* ===== Method ===== */
.method { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; margin-top: 36px; }
.method > div { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 22px; }
.method h3 { margin: 0 0 8px; font-size: 17px; }
.method p { margin: 0 0 14px; color: var(--text-muted); font-size: 14.5px; }
.method .cta { background: linear-gradient(160deg, rgba(57,135,229,.16), var(--surface) 70%); }
@media (max-width: 760px) { .method { grid-template-columns: 1fr; } }

/* ===== Tooltip ===== */
.tip {
  position: fixed; z-index: 100; pointer-events: none; min-width: 150px; max-width: 280px;
  background: rgba(24,25,30,.97); border: 1px solid var(--border-strong); border-radius: 10px;
  padding: 9px 12px; font-size: 13px; box-shadow: 0 12px 34px -10px rgba(0,0,0,.7);
}
.tip .t { color: var(--text-muted); font-size: 12px; margin-bottom: 3px; }
.tip .r { display: flex; justify-content: space-between; gap: 14px; }
.tip .r b { font-variant-numeric: tabular-nums; }
.tip .sw { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }

.empty { text-align: center; padding: 48px 20px; color: var(--text-muted); background: var(--surface); border: 1px dashed var(--border-strong); border-radius: var(--radius-lg); }

/* ===== Subnav (Ahora / Resumen del día) ===== */
.subnav { display: inline-flex; gap: 4px; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 999px; padding: 4px; }
.subnav a { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--text-muted); text-decoration: none; }
.subnav a:hover { color: var(--text); }
.subnav a[aria-current="page"] { background: var(--surface-hover); color: var(--text); box-shadow: 0 0 0 1px var(--border-strong) inset; }

/* ===== Navegación de días ===== */
.daynav { display: inline-flex; align-items: center; gap: 6px; margin: 0 0 16px; }
.daynav-arrow { width: 40px; height: 40px; display: grid; place-items: center; font-size: 24px; line-height: 1; border-radius: 10px; border: 1px solid var(--border-strong); background: var(--surface); text-decoration: none; cursor: pointer; }
.daynav-arrow:hover { background: var(--surface-hover); }
.daynav-arrow[aria-disabled="true"] { opacity: .3; cursor: default; pointer-events: none; }
.daynav-date { position: relative; display: inline-flex; align-items: center; height: 40px; padding: 0 18px; border-radius: 10px; border: 1px solid var(--border-strong); background: var(--surface); font-weight: 700; font-size: 17px; cursor: pointer; }
.daynav-date input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.daynav-date input::-webkit-calendar-picker-indicator { position: absolute; inset: 0; width: 100%; height: 100%; cursor: pointer; }
.status .live-dot { display: inline-block; vertical-align: middle; margin-right: 4px; }
.status .muted { font-size: 12.5px; }
.status { line-height: 1.5; text-align: center; }

.avatar.sm { width: 40px; height: 40px; border-radius: 10px; }
.chip.gold { color: var(--gold); background: rgba(245,196,81,.12); }

/* ===== Franjas ===== */
.dayparts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-bottom: 36px; }
.dp { background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.dp.dim { opacity: .55; }
.dp-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.dp-name { font-weight: 700; font-size: 17px; letter-spacing: -.01em; }
.dp-range { font-size: 12.5px; color: var(--text-muted); }
.dp-status { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: var(--text-muted); background: rgba(255,255,255,.06); padding: 2px 8px; border-radius: 6px; white-space: nowrap; }
.dp-status.on { color: var(--live); background: var(--live-soft); }
.dp-winner { display: flex; align-items: center; gap: 10px; min-width: 0; }
.dp-w-info { min-width: 0; flex: 1; }
.dp-w-name { font-weight: 700; font-size: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dp-w-share { font-size: 12.5px; color: var(--text-muted); }
.dp-w-share strong { color: var(--text); }
.dp-crown { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(245,196,81,.14); color: var(--gold); font-size: 12px; font-weight: 800; flex: none; }
.dp-prog { font-size: 13px; color: #c9cbd0; text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; }
.dp-prog:hover { color: var(--text); text-decoration: underline; }
.dp-bar { display: flex; gap: 2px; height: 8px; border-radius: 4px; overflow: hidden; }
.dp-bar span { display: block; height: 100%; }
.dp-bar span:first-child { border-radius: 4px 0 0 4px; } .dp-bar span:last-child { border-radius: 0 4px 4px 0; }
.dp-rest { list-style: none; margin: 0; padding: 0; font-size: 13px; color: var(--text-muted); display: flex; flex-direction: column; gap: 3px; counter-reset: dp 1; }
.dp-rest li { display: flex; align-items: center; gap: 7px; counter-increment: dp; }
.dp-rest li::before { content: counter(dp) "."; width: 14px; color: var(--text-dim); font-variant-numeric: tabular-nums; }
.dp-rest i { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.dp-rest span { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dp-rest b { color: var(--text); font-weight: 600; }
.dp-empty { margin: 0; font-size: 14px; color: var(--text-muted); }
@media (max-width: 960px) { .dayparts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .dayparts { grid-template-columns: 1fr; } }

/* ===== Tabla del ranking del día ===== */
.day-table { display: flex; flex-direction: column; gap: 6px; }
.dt-row { display: grid; align-items: center; gap: 14px; grid-template-columns: 34px minmax(0, 1fr) 170px 100px 90px 96px 96px; padding: 10px 16px 10px 12px; background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--border); border-radius: var(--radius-md); }
.dt-row.leader { border-color: rgba(245,196,81,.32); }
.dt-row.leader .dt-pos { color: var(--gold); }
.dt-head { background: none; border: 0; padding-top: 0; padding-bottom: 2px; font-size: 11.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--text-muted); }
.dt-row .r { text-align: right; }
.dt-pos { font-size: 20px; font-weight: 800; text-align: center; }
.dt-ent { display: flex; align-items: center; gap: 12px; min-width: 0; }
.dt-info { display: flex; flex-direction: column; min-width: 0; }
.dt-name { font-weight: 700; font-size: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dt-sub { font-size: 13px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dt-sub a { color: #c9cbd0; text-decoration: none; }
.dt-sub a:hover { color: var(--text); text-decoration: underline; }
.dt-mob { display: none; font-size: 12px; color: var(--text-muted); }
.dt-hours b { font-size: 18px; font-weight: 800; letter-spacing: -.02em; display: block; }
.dt-hours small, .dt-max small { display: block; font-size: 12px; color: var(--text-muted); }
.dt-bar { display: block; height: 4px; border-radius: 2px; background: rgba(255,255,255,.06); margin: 4px 0 3px auto; overflow: hidden; }
.dt-bar span { display: block; height: 100%; background: var(--primary); border-radius: 2px; margin-left: auto; }
@media (max-width: 860px) {
  .dt-row { grid-template-columns: 28px minmax(0, 1fr) 118px; gap: 10px; }
  .dt-row .opt { display: none; }
  .dt-mob { display: block; }
  .dt-hours b { font-size: 16px; }
}

/* ===== Gráfico apilado / momentos / récords ===== */
.band-label { fill: var(--text-muted); font-size: 11.5px; font-weight: 600; }
.now-line { stroke: var(--live); stroke-width: 1.5px; stroke-dasharray: 3 3; }
.moment-n { fill: var(--gold); font-size: 11px; font-weight: 800; }
.moments { list-style: none; margin: 18px 0 0; padding: 16px 0 0; border-top: 1px solid var(--border); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 24px; }
.moments li { display: flex; gap: 12px; min-width: 0; font-size: 14px; }
.moments li > div { min-width: 0; }
.mo-n { width: 24px; height: 24px; flex: none; display: grid; place-items: center; border-radius: 50%; border: 2px solid var(--gold); color: var(--gold); font-size: 12px; font-weight: 800; }
.mo-body { color: var(--text-muted); font-size: 13.5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.mo-body a { color: #c9cbd0; }
.moments-empty { grid-column: 1 / -1; }
@media (max-width: 760px) { .moments { grid-template-columns: 1fr; } }

.records { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 20px; }
.rec { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border); min-width: 0; }
.rec-pos { width: 22px; text-align: center; font-weight: 800; color: var(--text-muted); flex: none; }
.rec.leader .rec-pos { color: var(--gold); }
.rec-info { flex: 1; min-width: 0; }
.rec-name { font-weight: 700; font-size: 15px; }
.rec-title { display: block; font-size: 12.5px; color: var(--text-muted); text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rec-title:hover { color: var(--text); text-decoration: underline; }
.rec-val { text-align: right; flex: none; }
.rec-val b { display: block; font-size: 17px; font-weight: 800; }
.rec-val small { font-size: 12px; color: var(--text-muted); }
@media (max-width: 760px) { .records { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
  .row, .share span { transition: none; }
}
