/* Self-hosted fonts (latin subsets pulled from Google Fonts 2026-08-21 —
   apps self-host per site policy; removes both Google origins from the page).
   Archivo is the variable font: one 34 KB file covers every weight 400–900. */
@font-face {
  font-family: 'Archivo'; font-style: normal; font-weight: 400 900; font-display: swap;
  src: url('../fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Mono'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/space-mono-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Mono'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/space-mono-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── humbleha.us site chrome (always-on top block) ──────────────────
   The page below is dark-only by design ("On Air"); the chrome strip still
   honours the site-wide hls-dark toggle with its own token set so the nav
   matches the rest of humbleha.us in either mode. */
:root {
  --c-bg: #f9f4ef;
  --c-ink: #1a1714;
  --c-ink2: #4d4438;
  --c-line: rgba(26, 23, 20, 0.12);
  --c-accent: #e8531a;
  --c-chip: rgba(26, 23, 20, 0.06);
}
[data-dark="true"] {
  --c-bg: #131316;
  --c-ink: #f0eadf;
  --c-ink2: #c9bfae;
  --c-line: rgba(240, 234, 223, 0.14);
  --c-accent: #f06535;
  --c-chip: rgba(255, 255, 255, 0.07);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: .75rem 1.25rem;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
  font-family: 'Space Mono', ui-monospace, monospace;
}
@media (max-width: 540px) { .site-nav { padding: .75rem 1rem; } }
.site-nav .nav-brand { display: flex; align-items: center; gap: .5rem; flex-shrink: 1; min-width: 0; }
.site-nav .nav-brand a { color: var(--c-ink); text-decoration: none; font-size: .875rem; font-weight: 600; }
.site-nav .nav-brand a:hover { color: var(--c-accent); }
.exp-badge {
  font-size: .65rem; font-weight: 700; letter-spacing: .08em;
  padding: .15rem .4rem; border-radius: .25rem;
  background: var(--c-chip); color: var(--c-ink2);
  flex-shrink: 0;
}
.site-nav .nav-right { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.donate-link {
  font-size: .8rem; color: var(--c-ink2); text-decoration: none;
  white-space: nowrap; position: relative;
}
.donate-link:hover { color: var(--c-accent); }
.donate-link::before {
  content: ''; position: absolute; top: 50%; left: 0;
  width: 100%; min-width: 44px; height: 44px;
  transform: translateY(-50%);
}
.dark-toggle {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--c-line); background: transparent;
  cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.dark-toggle::after { content: '☀️'; }
.dark-toggle::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 44px; height: 44px; transform: translate(-50%, -50%);
}
[data-dark="true"] .dark-toggle::after { content: '🌙'; }
.dark-toggle:focus-visible,
.donate-link:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 2px; }

/* ══ HumbleWATCHES "On Air" design below (claudedesign/humblewatches/on-air) ══ */
/* ==========================================================================
   HumbleWATCHES — landing page ("On Air" direction, 1b)
   Dark mode only. No JS on the page — the ticker is a pure CSS marquee.
   Tokens below are the design system; see CLAUDE.md before changing values.
   ========================================================================== */

:root {
  --bg: #09090b;          /* page */
  --line: #232327;        /* borders/dividers */
  --text: #f2eff6;        /* headings/primary */
  --muted: #9b9ba6;       /* body copy */
  --faint: #6d6d78;       /* metadata */
  --red: #ff2d1f;         /* brand red: CTAs, accents, live dots */
  --red-soft: #ff6b5e;    /* ticker text, hover */
  --red-deep: #170b0b;    /* ticker bg */
  --red-line: #3a1512;    /* ticker border */
  --panel-bg: #151217;    /* tray mockup surfaces (plum-dark family) */
  --panel-line: #2e2a35;
  --panel-card: #1c1922;
  --panel-chip: #2b2732;

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;
  --wrap: 1100px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--red-soft); }

h1, h2, h3, p { margin: 0; }

.meta { font-family: var(--font-mono); font-size: 11px; color: var(--faint); }
.accent { color: var(--red); }

/* ---------- Animations ---------- */
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
/* Hover marquee for stream titles: scrolls exactly the overflow distance (100cqw = title
   box width via container units), fast start easing out near the end, alternate = bounce. */
@keyframes title-scroll { to { transform: translateX(min(0px, calc(100cqw - 100%))); } }

/* ---------- Ticker ---------- */
.ticker {
  padding: 9px 0;
  background: var(--red-deep);
  border-bottom: 1px solid var(--red-line);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--red-soft);
}
.ticker-track { display: flex; width: max-content; animation: ticker 78s linear infinite; } /* ~3s per item × 12 items per half; scale duration with item count to keep speed constant */
.ticker-group { display: flex; gap: 32px; padding-right: 32px; flex-shrink: 0; }

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 20px 36px;
  border-bottom: 1px solid var(--line);
}
.brand { font-size: 16px; font-weight: 900; letter-spacing: .02em; }
.brand:hover { color: var(--text); }
.brand-slash { color: var(--red); }
.nav-links { display: flex; gap: 26px; }
.nav-links a { font-size: 12px; font-weight: 700; letter-spacing: .1em; color: #8f8f9a; }
.nav-links a:hover { color: var(--red-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .03em;
  padding: 14px 26px;
  border-radius: 8px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-buy {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 44px -14px var(--red);
}
.btn-buy:hover { color: #fff; box-shadow: 0 20px 50px -14px var(--red); }
.btn-ghost { border: 1px solid #33333a; color: #c9c9d2; font-weight: 700; padding: 13px 22px; }
.btn-dark { background: var(--bg); color: #fff; padding: 15px 30px; }
.btn-dark:hover { color: #fff; }
.btn-sm { font-size: 12px; padding: 9px 18px; border-radius: 7px; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 44px;
  align-items: center;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 64px 36px 72px;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1d0d0c;
  border: 1px solid #4a1a15;
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 26px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--red-soft);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(44px, 6vw, 62px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.lede { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 440px; margin: 22px 0 30px; }
.cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-copy .meta { display: block; margin-top: 18px; }

/* ---------- Tray panel mockup ---------- */
.hero-shot { position: relative; display: flex; justify-content: center; }
.glow {
  position: absolute;
  inset: -8% -4%;
  background: radial-gradient(55% 55% at 50% 42%, var(--red), transparent 70%);
  opacity: .17;
  filter: blur(44px);
  pointer-events: none;
}
.panel {
  position: relative;
  width: 392px;
  flex-shrink: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--panel-bg);
  border: 1px solid var(--panel-line);
  border-radius: 14px;
  box-shadow: 0 50px 100px -30px rgba(0, 0, 0, .85);
  overflow: hidden;
}
.panel-head { display: flex; align-items: center; gap: 13px; padding: 16px; border-bottom: 1px solid #2b2733; }
.rec-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 12px #ff3b30;
  animation: pulse 2s ease-in-out infinite;
}
.panel-head-text { flex: 1; }
.panel-app { font-size: 10px; font-weight: 700; letter-spacing: .22em; color: #8f8a99; }
.panel-alert { font-size: 17px; font-weight: 700; color: #f4f1f8; margin-top: 3px; }
.gear { color: #8f8a99; }
.panel-group, .panel-row { display: flex; align-items: center; gap: 11px; padding: 15px 16px 12px; color: #b3ac9c; }
/* group toggle is a real <button> */
.panel-group { width: 100%; background: none; border: none; font: inherit; cursor: pointer; text-align: left; }
.group-chevron { transition: transform .2s ease; flex-shrink: 0; }
.group-block.is-collapsed .group-chevron { transform: rotate(-90deg); }
.group-block.is-collapsed .group-body { display: none; }
.group-block.is-collapsed .panel-group { padding-bottom: 15px; }
.panel-row { padding: 14px 16px; border-top: 1px solid #2b2733; }
.group-name { font-size: 12px; font-weight: 700; letter-spacing: .16em; white-space: nowrap; }
.panel-group .group-name { flex: 1; }
.row-note { font-size: 10px; font-weight: 700; letter-spacing: .1em; color: #6f6a78; flex: 1; white-space: nowrap; }
.group-count {
  width: 24px; height: 24px; border-radius: 50%;
  background: #26232d; color: #d6d1df;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
/* Stream card: grip rail | text | full-bleed thumbnail flush to the card edge (like the real app) */
.stream { display: flex; padding: 0; background: var(--panel-card); border-radius: 12px; margin: 0 12px 10px; overflow: hidden; cursor: grab; }
.stream.dragging { opacity: .45; cursor: grabbing; outline: 1.5px dashed var(--red-soft); outline-offset: -1.5px; }
.grip { display: flex; flex-direction: column; gap: 3px; justify-content: center; padding: 0 10px 0 12px; border-right: 1px solid #2b2733; }
.grip span { width: 13px; height: 2px; background: #3d3846; border-radius: 2px; }
.stream-body { flex: 1; min-width: 0; padding: 14px 12px; }
.stream-channel { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 13px; font-weight: 600; color: #b7b1c2; }
.stream-channel svg { color: #6f6a7a; }
.stream-title {
  font-size: 14px; font-weight: 700; color: #f4f1f8;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-top: 4px;
  container-type: inline-size;
}
.stream-title span { display: inline-block; }
.stream-title:hover { text-overflow: clip; }
.stream-title:hover span { animation: title-scroll 2.4s ease-out infinite alternate; }
.stream-actions { display: flex; gap: 6px; margin-top: 12px; }
.stream-actions .chip { border: none; font-family: inherit; cursor: pointer; }
a.chip-watch:hover { color: #fff; }
button.chip:hover { color: #fff; background: #35313d; }
.chip { background: var(--panel-chip); color: #cfcad8; font-size: 12px; font-weight: 600; padding: 7px 11px; border-radius: 999px; white-space: nowrap; }
.chip-watch { background: var(--red); color: #fff; font-weight: 700; padding: 7px 14px; }
.thumb {
  width: 112px; align-self: stretch; min-height: 100px;
  position: relative; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: rgba(255, 255, 255, .55);
  overflow: hidden;
}
/* Real channel avatars, layered over gradient+initials fallback (shows if the image fails) */
.thumb-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.thumb-mb { background: linear-gradient(135deg, #43304e 0%, #22303f 100%); }
.thumb-h3 { background: linear-gradient(135deg, #8b3ae0 0%, #d54bcf 100%); }
.badge {
  position: absolute; top: 7px; right: 7px;
  z-index: 1;
  display: flex; align-items: center; gap: 4px;
  border-radius: 0 999px 999px 0;
  padding: 4px 9px 4px 7px;
  font-size: 9px; font-weight: 800; letter-spacing: .08em;
  white-space: nowrap;
}
.badge i { width: 5px; height: 5px; border-radius: 50%; }
.badge-live { background: #b3150f; color: #fff; }
.badge-live i { background: #ff8a80; }
.badge-soon { background: #6b4304; color: #ffd9a1; }
.badge-soon i { background: #ffb02e; }
.panel-footer { display: flex; align-items: center; gap: 20px; padding: 15px 16px; border-top: 1px solid #2b2733; font-size: 14px; font-weight: 600; color: #d6d1df; white-space: nowrap; }
.panel-footer .grow { flex: 1; }
.panel-footer .quit { font-weight: 700; color: var(--red-soft); }

/* ---------- Demo modals (native <dialog>) ---------- */
dialog { padding: 0; border: none; color: inherit; }
dialog::backdrop { background: rgba(5, 5, 7, .74); backdrop-filter: blur(3px); }
.modal-close {
  background: none; border: none; cursor: pointer;
  color: #8f8a99; font-size: 19px; line-height: 1; padding: 2px 5px;
}
.modal-close:hover { color: #fff; }
/* PiP window — same chrome as the real floating player */
.pip-modal {
  width: min(640px, 92vw);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--panel-bg);
  border: 1px solid var(--panel-line);
  border-radius: 13px;
  box-shadow: 0 60px 130px -30px rgba(0, 0, 0, .9);
  overflow: hidden;
}
.pip-bar { display: flex; align-items: center; gap: 11px; padding: 10px 13px; background: #0d0b10; border-bottom: 1px solid var(--panel-line); }
.pip-menu { display: flex; flex-direction: column; gap: 3px; }
.pip-menu span { width: 14px; height: 1.6px; background: #8f8a99; border-radius: 2px; }
.pip-logo { color: var(--red); font-weight: 800; font-size: 13px; letter-spacing: .01em; }
.pip-channel { color: #b7b1c2; font-size: 13px; font-weight: 600; border-left: 1px solid var(--panel-line); padding-left: 11px; white-space: nowrap; }
.pip-title { flex: 1; min-width: 0; color: #f4f1f8; font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pip-pin { color: #8f8a99; flex-shrink: 0; }
.pip-stage { position: relative; aspect-ratio: 16 / 9; background: #1c1922; }
.pip-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pip-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 2; }
.pip-note { margin: 0; padding: 9px 13px; font-family: var(--font-mono); font-size: 10px; color: var(--faint); border-top: 1px solid var(--panel-line); }
/* Tweet compose — Alfred-style bar */
.tweet-modal {
  position: relative;
  width: min(560px, 92vw);
  background: var(--panel-bg);
  border: 1px solid var(--panel-line);
  border-radius: 16px;
  box-shadow: 0 60px 130px -30px rgba(0, 0, 0, .9);
  overflow: hidden;
}
.tweet-close { position: absolute; top: 10px; right: 10px; }
.tweet-row { display: flex; gap: 15px; padding: 20px 20px 16px; align-items: flex-start; }
.tweet-x { font-size: 27px; line-height: 1.15; color: #f4f1f8; }
.tweet-text {
  flex: 1;
  background: none; border: none; outline: none; resize: none;
  color: #f4f1f8;
  font: 600 17px/1.5 -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  padding-right: 18px;
}
.tweet-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 20px; border-top: 1px solid var(--panel-line); }

/* ---------- Features ---------- */
.features { max-width: var(--wrap); margin: 0 auto; padding: 56px 36px 64px; border-top: 1px solid var(--line); }
.features-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.features h2 { font-size: 34px; font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; }
.feature-rows { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.feature-rows li { border-bottom: 1px solid var(--line); }
.feature-rows summary {
  display: grid;
  grid-template-columns: 70px 1fr 1.2fr 28px;
  gap: 20px;
  align-items: baseline;
  padding: 18px 0;
  cursor: pointer;
  list-style: none; /* hide default disclosure triangle */
}
.feature-rows summary::-webkit-details-marker { display: none; }
.feature-rows summary:hover h3 { color: var(--red-soft); }
.feature-rows .num { font-family: var(--font-mono); font-size: 12px; color: var(--red); }
.feature-rows h3 { font-size: 19px; font-weight: 800; text-transform: uppercase; }
.feature-rows p { font-size: 13px; line-height: 1.55; color: var(--muted); }
.expand {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--faint);
  justify-self: end;
  transition: transform .2s ease, color .2s ease;
}
details[open] .expand { transform: rotate(45deg); color: var(--red); } /* + becomes × */
details[open] summary h3 { color: var(--red-soft); }
.feature-detail { padding: 0 48px 22px 90px; }
.feature-detail p { font-size: 14px; line-height: 1.65; color: var(--muted); }

/* ---------- Buy band ---------- */
.buy-band { background: var(--red); color: #170505; text-align: center; padding: 56px 36px; }
.buy-band h2 {
  font-size: clamp(34px, 5vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.buy-band p { font-size: 15px; font-weight: 600; opacity: .75; margin-bottom: 26px; }
.buy-band a:hover { color: #fff; }

/* ---------- Footer (blog.humbleha.us structure, On Air palette) ---------- */
.footer { border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 48px 36px 40px;
}
.footer-brand .brand { font-size: 15px; }
.footer-brand p { font-size: 13px; line-height: 1.6; color: var(--muted); margin: 12px 0 20px; max-width: 260px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 4px;
}
.footer-col a { font-size: 13px; font-weight: 600; color: var(--muted); }
.footer-col a:hover { color: var(--red-soft); }
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px 36px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--faint);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 52px; padding-top: 48px; }
  .nav-links { display: none; }
  .feature-rows summary { grid-template-columns: 44px 1fr 28px; }
  .feature-rows summary p { grid-column: 2; }
  .feature-detail { padding: 0 28px 20px 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .nav, .hero, .features, .footer-grid, .footer-legal { padding-left: 20px; padding-right: 20px; }
  .buy-band { padding-left: 20px; padding-right: 20px; }
  .hero { gap: 44px; }
  .hero h1 { font-size: clamp(38px, 11vw, 44px); }
  .panel { width: 100%; max-width: 392px; }
  /* 320px fix (site addition): grid items default to min-width:auto, so the
     panel-footer's nowrap row (~310px min-content) was propping the stacked
     hero column open past narrow viewports → horizontal scroll. Let the
     column shrink and slim the footer row so it fits ~280px. */
  .hero-copy, .hero-shot { min-width: 0; }
  .panel-footer { gap: 12px; padding: 15px 12px; font-size: 13px; }
  /* "GET HUMBLEWATCHES" is one unbreakable word — 34px overflows ~280px */
  .buy-band h2 { font-size: clamp(26px, 8.5vw, 44px); }
  /* Brand wordmark + buy button must share ~280px */
  .nav { gap: 12px; }
  .nav .btn-sm { padding: 9px 12px; }
  /* Tighter card internals so chips never touch the thumbnail on small screens */
  .grip { padding: 0 8px 0 10px; }
  .stream-body { padding: 12px 10px; }
  .thumb { width: 96px; }
  .chip { padding: 6px 10px; font-size: 11px; }
  .chip-watch { padding: 6px 12px; }
  .feature-rows h3 { font-size: 16px; }
  .footer-legal { flex-direction: column; align-items: flex-start; gap: 6px; }
}
@media (max-width: 380px) {
  /* Most minimal: drop the Tweet chip rather than let it collide */
  .stream-actions .chip:nth-child(3) { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .live-dot, .rec-dot { animation: none; }
  .stream-title:hover span { animation: none; }
  .btn { transition: none; }
  .group-chevron { transition: none; }
  .expand { transition: none; }
}
