:root {
  --bg-primary: #0a0a0c;
  --bg-card: #141418;
  --bg-card-hover: #1a1a20;
  --bg-card-active: #1c1e2a;
  --border: #222230;
  --border-active: #3b82f6;
  --text-primary: #e8e8ed;
  --text-secondary: #8888a0;
  --text-muted: #555568;
  --accent: #1d9bf0;
  --accent-glow: rgba(29, 155, 240, 0.15);
  --live-color: #8b6cff;
  --live-glow: rgba(139, 108, 255, 0.22);
  --upcoming-color: #f59e0b;
  --sub-color: #f472b6;
  --sub-glow: rgba(244, 114, 182, 0.15);
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --scanner-red: #e82127;
  --scanner-glow: rgba(232, 33, 39, 0.55);
  --avatar-schedule: 40px;
  --avatar-room: 44px;
  --avatar-room-mobile: 40px;
  --avatar-chip: 20px;
  --avatar-chip-live: 24px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-display);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.page-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  z-index: 9999;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.35rem 1.25rem 3.25rem;
}

/* Header */
header {
  margin-bottom: 1.1rem;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.header-meta {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  margin-top: 0.35rem;
}

/* Local time only in-flow. Freshness used to wrap and shove the page. */
.header-status {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.45rem;
  min-height: 1.35em;
}

.header-status .subtitle,
.header-status .live-status {
  margin: 0;
  font-size: 0.88rem;
  white-space: nowrap;
}

.header-status.live-status-tappable {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

#live-status-line:not(.is-checking) {
  display: none;
}

#live-status-line.is-checking {
  display: inline-flex;
  align-items: center;
}

/* Right cluster: the two controls (push alerts + dashboard links), grouped. */
.header-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  margin-left: auto;
}

.push-menu {
  display: inline-flex;
  align-items: center;
  margin-right: 0.1rem;
}

.push-menu[hidden],
.push-menu.hidden {
  display: none !important;
}

.push-menu-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.85rem;
}

.push-menu-btn:hover,
.push-menu-btn[aria-expanded="true"] {
  color: var(--text-primary);
  border-color: var(--border-active);
}

.push-menu-btn[aria-pressed="true"] {
  color: var(--accent);
  border-color: rgba(29, 155, 240, 0.45);
  background: var(--accent-glow);
}

.push-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.45rem);
  z-index: 12;
  width: auto;
  max-width: 22rem;
  margin-left: auto;
  box-sizing: border-box;
  padding: 0.75rem 0.85rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.push-panel:not([hidden]) {
  display: block;
}

.push-panel-kicker {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.push-panel-title {
  margin: 0.15rem 0 0.25rem;
  font-weight: 650;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.push-panel-copy {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

.push-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.push-pref-btn {
  font-family: inherit;
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card-hover);
  color: var(--text-primary);
  cursor: pointer;
}

.push-pref-btn--on {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.push-pref-btn:hover {
  border-color: var(--border-active);
  background: var(--bg-card-hover);
}

.push-pref-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.push-pref-status {
  font-size: 0.76rem;
  color: var(--upcoming-color);
  margin: 0.45rem 0 0;
  line-height: 1.35;
}

.push-pref-status:empty {
  display: none;
}

.push-barb-pref {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
}

.push-barb-pref[hidden] {
  display: none !important;
}

.push-barb-pref input {
  margin: 0;
}

.header-meta .toggle-row {
  margin-top: 0;
}

.barb-master {
  appearance: none;
  background: transparent;
  border: 1px solid var(--border);
  width: 2rem;
  height: 2rem;
  padding: 0;
  border-radius: 999px;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.barb-master:hover {
  opacity: 0.85;
  border-color: rgba(244, 114, 182, 0.45);
}

.barb-master[aria-pressed="true"] {
  opacity: 1;
  border-color: rgba(244, 114, 182, 0.65);
  box-shadow: 0 0 10px rgba(244, 114, 182, 0.2);
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.tagline {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.1rem;
}

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.site-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Quiet link to /history — Apple Podcasts purple, no label */
.history-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 6px;
  color: #872ec4;
  font-size: 0.78rem;
  line-height: 1;
  text-decoration: none;
  opacity: 0.7;
  flex-shrink: 0;
}

.history-mark:hover,
.history-mark:focus-visible {
  opacity: 1;
  background: rgba(135, 46, 196, 0.16);
  outline: none;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-family: var(--font-mono);
  font-weight: 400;
}

#local-clock {
  color: var(--accent);
}

.live-status {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.live-status.hidden {
  display: none;
}

.live-status-tappable {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s ease;
}

.live-status-tappable:hover,
.live-status-tappable:focus-visible {
  color: var(--text-secondary);
  outline: none;
}

.live-status.is-checking {
  color: var(--text-secondary);
}

.live-meta-pulse {
  animation: live-meta-pulse 0.6s ease-out;
}

@keyframes live-meta-pulse {
  0%   { color: var(--live-color, #ef4444); }
  100% { color: inherit; }
}

/* KITT-style scanner — shown while server is stale / checking (not realtime). */
.kitt-scanner {
  display: inline-block;
  position: relative;
  width: 3.25rem;
  height: 0.375rem;
  margin-right: 0.5rem;
  vertical-align: middle;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.kitt-scanner__sweep {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  border-radius: 50%;
  background: var(--scanner-red);
  box-shadow:
    0 0 0.35rem var(--scanner-glow),
    0 0 0.65rem var(--scanner-glow);
  animation: kitt-scan 1.8s ease-in-out infinite;
}

@keyframes kitt-scan {
  0%, 100% { left: 0; }
  50%      { left: calc(100% - 0.5rem); }
}

@media (prefers-reduced-motion: reduce) {
  .kitt-scanner__sweep {
    animation: none;
    left: 50%;
    margin-left: -0.25rem;
  }

  .host-avatar-wrap--live .host-avatar,
  .live-room-avatar,
  .now-banner .live-room-avatar {
    animation: none;
  }
}

.day-status .live-meta {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  font-weight: 500;
}

/* Wrap the live badge in an anchor to the Space itself. */
.listen-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  text-decoration: none;
  transition: transform 0.12s;
}

.listen-link:hover {
  transform: translateY(-1px);
}

.listen-link:hover .status-badge.live {
  background: rgba(139, 108, 255, 0.22);
}

.listen-link .live-meta {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0;
}

/* Host avatar (schedule cards + banner). Idle = quiet ring; live = violet ring. */
.host-avatar-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.host-avatar {
  width: var(--avatar-schedule);
  height: var(--avatar-schedule);
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-primary);
  /* Neutral by default — green was leftover from when pfps only rendered while live */
  border: 1.5px solid rgba(136, 136, 160, 0.35);
}

.host-avatar-wrap--live .host-avatar,
.day-card.is-live .host-avatar {
  border-color: var(--live-color);
  box-shadow: 0 0 0 2px rgba(139, 108, 255, 0.2);
  animation: none;
}

.host-verified {
  position: absolute;
  right: -3px;
  bottom: -3px;
  font-size: 0.6rem;
  color: var(--accent);
  background: var(--bg-card);
  border-radius: 50%;
  line-height: 1;
}

.day-card.is-live .host-avatar-wrap .host-verified {
  font-size: 0.65rem;
}

/* Pinned always-on streams (header) */
.pinned-streams {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.pinned-streams:empty {
  display: none;
}

.pinned-stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem 0.4rem 0.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.14), rgba(239, 68, 68, 0.05));
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #fca5a5;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.12s, border-color 0.15s, color 0.15s, background 0.15s, box-shadow 0.15s;
  animation: pinned-stream-glow 2.6s ease-in-out infinite;
}

.pinned-stream-btn:hover {
  transform: translateY(-1px);
  color: #fff;
  border-color: #ef4444;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(239, 68, 68, 0.12));
}

/* TeslaHype-style cyan → soft white (schedule theme: "cyan") */
.pinned-stream-btn--cyan {
  --pinned-cyan: rgba(19, 172, 219, 1);
  background: linear-gradient(
    135deg,
    rgba(19, 172, 219, 0.28) 0%,
    rgba(19, 172, 219, 0.1) 48%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border-color: rgba(19, 172, 219, 0.55);
  color: #b8ecf8;
  animation: pinned-stream-glow-cyan 2.8s ease-in-out infinite;
}

.pinned-stream-btn--cyan:hover {
  color: #fff;
  border-color: rgba(19, 172, 219, 1);
  background: linear-gradient(
    135deg,
    rgba(19, 172, 219, 0.45) 0%,
    rgba(19, 172, 219, 0.18) 50%,
    rgba(255, 255, 255, 0.12) 100%
  );
  box-shadow: 0 0 18px rgba(19, 172, 219, 0.25);
}

.pinned-stream-btn--cyan .pinned-stream-handle {
  color: rgba(184, 236, 248, 0.75);
}

.pinned-stream-btn--cyan:hover .pinned-stream-handle {
  color: rgba(255, 255, 255, 0.85);
}

.pinned-stream-btn--cyan .pinned-stream-avatar {
  border-color: rgba(19, 172, 219, 0.65);
  box-shadow: 0 0 0 1px rgba(19, 172, 219, 0.25);
}

/* Apple Podcasts purple — Recorded Spaces /history */
.pinned-stream-btn--podcast {
  --pinned-podcast: #872ec4;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  background: linear-gradient(
    135deg,
    rgba(135, 46, 196, 0.38) 0%,
    rgba(175, 82, 222, 0.16) 48%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border-color: rgba(135, 46, 196, 0.6);
  color: #e4c4ff;
  animation: pinned-stream-glow-podcast 2.8s ease-in-out infinite;
}

.pinned-stream-btn--podcast:hover {
  color: #fff;
  border-color: #af52de;
  background: linear-gradient(
    135deg,
    rgba(135, 46, 196, 0.55) 0%,
    rgba(175, 82, 222, 0.22) 50%,
    rgba(255, 255, 255, 0.12) 100%
  );
  box-shadow: 0 0 18px rgba(135, 46, 196, 0.32);
}

.pinned-stream-btn--podcast .pinned-stream-icon {
  font-size: 0.85rem;
  opacity: 1;
  color: #d4a5ff;
}

/* External directory / promo (not an X broadcast) */
.pinned-stream-btn--external {
  background: linear-gradient(135deg, rgba(29, 155, 240, 0.12), rgba(29, 155, 240, 0.04));
  border-color: rgba(29, 155, 240, 0.4);
  color: var(--accent);
  animation: none;
}

.pinned-stream-btn--external:hover {
  color: #fff;
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(29, 155, 240, 0.35), rgba(29, 155, 240, 0.12));
}

.pinned-stream-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.25);
}

.pinned-stream-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  margin-left: 0.35rem;
  animation: pinned-stream-pulse 1.6s ease-in-out infinite;
}

.pinned-stream-btn--cyan .pinned-stream-pulse {
  background: rgba(19, 172, 219, 1);
  animation-name: pinned-stream-pulse-cyan;
}

.pinned-stream-handle {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.pinned-stream-btn:hover .pinned-stream-handle {
  color: rgba(255, 255, 255, 0.75);
}

.pinned-stream-icon {
  font-size: 0.6rem;
  opacity: 0.6;
}

@keyframes pinned-stream-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); transform: scale(1); }
  50%      { box-shadow: 0 0 0 7px transparent;          transform: scale(1.15); }
}

@keyframes pinned-stream-pulse-cyan {
  0%, 100% { box-shadow: 0 0 0 0 rgba(19, 172, 219, 0.55); transform: scale(1); }
  50%      { box-shadow: 0 0 0 7px transparent; transform: scale(1.15); }
}

@keyframes pinned-stream-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
  50%      { box-shadow: 0 0 14px rgba(239, 68, 68, 0.2); }
}

@keyframes pinned-stream-glow-cyan {
  0%, 100% { box-shadow: 0 0 0 0 rgba(19, 172, 219, 0); }
  50%      { box-shadow: 0 0 16px rgba(19, 172, 219, 0.22); }
}

@keyframes pinned-stream-glow-podcast {
  0%, 100% { box-shadow: 0 0 0 0 rgba(135, 46, 196, 0); }
  50%      { box-shadow: 0 0 16px rgba(135, 46, 196, 0.28); }
}

/* Toggle */
.toggle-row {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2rem;
  cursor: pointer;
  user-select: none;
}

.toggle-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
}

.toggle-row:hover .toggle-label {
  color: var(--text-secondary);
}

.toggle-row input {
  display: none;
}

.toggle-switch {
  position: relative;
  width: 36px;
  height: 20px;
  background: var(--border);
  border-radius: 10px;
  transition: background 0.2s;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: all 0.2s;
}

.toggle-row input:checked + .toggle-switch {
  background: var(--accent);
}

.toggle-row input:checked + .toggle-switch::after {
  left: 19px;
  background: #fff;
}

/* Dashboard link (hidden by default) */
.dashboard-link {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  transition: all 0.15s;
  text-decoration: none;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.dashboard-link:hover {
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.12);
}

body.show-dashboard .dashboard-link {
  display: flex;
}

.dashboard-divider {
  display: none;
  width: 1px;
  height: 14px;
  background: var(--border);
  margin: 0 0.5rem;
  flex-shrink: 0;
}

.dashboard-chip-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  transition: all 0.15s;
  flex-shrink: 0;
  font-size: 0.6rem;
  cursor: pointer;
}

.dashboard-chip-icon:hover {
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.18);
}

body.show-dashboard .dashboard-divider {
  display: inline-block;
}

body.show-dashboard .dashboard-chip-icon {
  display: inline-flex;
}

/* Special events (static cards from schedule.json — e.g. temporary live video) */
.special-events {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.special-events[hidden] {
  display: none !important;
}

/* Community panels — pink scoped here only, not a site theme */
.communities {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.95rem;
}

.communities[hidden] {
  display: none !important;
}

.community-panel {
  --community-pink: #f472b6;
  --community-pink-dim: rgba(244, 114, 182, 0.22);
  --community-pink-glow: rgba(244, 114, 182, 0.12);
  border-radius: 12px;
  padding: 0.55rem 0.75rem 0.6rem;
  border: 1px solid var(--community-pink-dim);
  background: linear-gradient(145deg, rgba(244, 114, 182, 0.1), rgba(244, 114, 182, 0.03));
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14), 0 0 14px var(--community-pink-glow);
  min-width: 0;
  overflow-x: hidden;
}

.community-panel--collapsed {
  padding: 0.35rem 0.7rem;
  box-shadow: none;
}

.community-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.community-panel--collapsed .community-panel-head {
  margin-bottom: 0;
}

.community-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--community-pink);
  line-height: 1.25;
}

.community-title--link {
  text-decoration: none;
}

.community-title--link:hover {
  text-decoration: underline;
}

.community-hide,
.community-show {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--community-pink-dim);
  color: var(--text-secondary);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.75rem;
  font-family: inherit;
  cursor: pointer;
}

.community-hide:hover,
.community-show:hover {
  color: var(--community-pink);
  border-color: var(--community-pink);
}

.community-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
}

.community-links a {
  color: var(--community-pink);
  text-decoration: none;
}

.community-links a:hover {
  text-decoration: underline;
}

.community-hosts-label,
.community-sked-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.35rem;
}

.community-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  min-width: 0;
}

.community-panel .chip {
  max-width: 100%;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.community-panel .chip-live-pill,
.community-panel .chip-upcoming-pill {
  white-space: normal;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.community-panel .chip:hover {
  border-color: var(--community-pink);
  color: var(--community-pink);
}

.community-panel .chip.live {
  border-color: var(--community-pink-dim);
}

.community-sked {
  list-style: none;
  margin: 0.55rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.community-sked li {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.community-sked .community-sked-when {
  font-family: var(--font-mono);
  color: var(--community-pink);
  font-weight: 600;
  margin-right: 0.4rem;
}

.special-event-card {
  border-radius: 12px;
  padding: 0.95rem 1.05rem 1.05rem;
  border: 1px solid rgba(249, 24, 128, 0.4);
  background: linear-gradient(135deg, rgba(249, 24, 128, 0.14), rgba(249, 24, 128, 0.04));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18), 0 0 22px rgba(249, 24, 128, 0.1);
  /* Entrance animation only on first paint — rebuilds must not re-flash while reading chat */
  animation: none;
}
.special-event-card.special-event-card--enter {
  animation: bannerSlide 0.45s ease-out;
}

/* Compact by default: badge + identity + Watch CTAs; details/chat behind toggle */
.special-event-card--collapsed {
  padding: 0.7rem 0.9rem 0.75rem;
}
.special-event-card--collapsed .special-event-badge {
  margin-bottom: 0.45rem;
}
.special-event-card--collapsed .special-event-title {
  -webkit-line-clamp: 2;
  font-size: 0.95rem;
}
.special-event-card--collapsed .special-event-by {
  font-size: 0.82rem;
}
.special-event-card--collapsed .special-event-main-row {
  gap: 0.55rem 0.85rem;
}

.special-event-details-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.55rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 24, 128, 0.28);
  background: transparent;
  color: #fda4d0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.special-event-details-toggle:hover {
  background: rgba(249, 24, 128, 0.12);
  border-color: rgba(249, 24, 128, 0.5);
  color: #fff;
}
.special-event-details-toggle i {
  font-size: 0.62rem;
  opacity: 0.85;
}

.special-event-details[hidden] {
  display: none !important;
}
.special-event-details:not([hidden]) {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(249, 24, 128, 0.18);
}
.special-event-details .special-event-note {
  margin-top: 0;
}

.special-event-card--broadcast {
  /* X live-video magenta */
  --broadcast-pink: #f91880;
  --broadcast-pink-soft: rgba(249, 24, 128, 0.22);
}

.special-event-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fda4d0;
  margin-bottom: 0.7rem;
}

.special-event-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f91880;
  flex-shrink: 0;
  animation: special-event-pulse 1.6s ease-in-out infinite;
}

@keyframes special-event-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 24, 128, 0.55); transform: scale(1); }
  50%      { box-shadow: 0 0 0 7px transparent; transform: scale(1.12); }
}

.special-event-main-row {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
  min-width: 0;
}

.special-event-main {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  flex: 1 1 14rem;
}

.special-event-main:hover .special-event-title {
  color: #fff;
}

.special-event-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  margin-left: auto;
}

.special-event-avatar,
.special-event-avatar-fallback {
  width: var(--avatar-room);
  height: var(--avatar-room);
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  border: 2px solid rgba(249, 24, 128, 0.55);
  box-shadow: 0 0 0 3px rgba(249, 24, 128, 0.12);
}

.special-event-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 24, 128, 0.12);
  color: #fda4d0;
  font-size: 1.1rem;
}

.special-event-identity {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  flex: 1;
}

.special-event-title {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s;
}

.special-event-by {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.special-event-name {
  color: var(--text-primary);
  font-weight: 600;
}

.special-event-host {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #fda4d0;
}

.special-event-verified {
  margin-left: 0.2rem;
  color: #f91880;
  font-size: 0.75rem;
}

.special-event-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(249, 24, 128, 0.2);
  border: 1px solid rgba(249, 24, 128, 0.5);
  color: #fecdd9;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.special-event-cta:hover {
  background: rgba(249, 24, 128, 0.35);
  border-color: #f91880;
  color: #fff;
}

/* Primary = X (pink). Backup YT = quieter red/white so X stays the main action. */
.special-event-cta--yt {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: #e8e8ed;
}

.special-event-cta--yt:hover {
  background: rgba(255, 0, 0, 0.18);
  border-color: rgba(255, 80, 80, 0.55);
  color: #fff;
}

.special-event-cta--yt i {
  color: #ff4444;
}

.special-event-note {
  margin: 0.7rem 0 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.special-event-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-top: 0.75rem;
}

.special-event-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #fda4d0;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.special-event-link:hover {
  color: #fff;
  border-bottom-color: rgba(249, 24, 128, 0.5);
}

.special-event-link i {
  font-size: 0.65rem;
  opacity: 0.7;
}

/* Broadcast chat (R2 snapshot via /api/chat/:id — Mac watchspecialeventchat.sh) */
.special-event-chat {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(249, 24, 128, 0.22);
}

.special-event-chat-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
  flex-wrap: wrap;
}

.special-event-chat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fda4d0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.special-event-chat-status {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.special-event-chat-recent,
.special-event-chat-full {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.84rem;
  line-height: 1.4;
}

.special-event-chat-recent[hidden],
.special-event-chat-full[hidden] {
  display: none !important;
}

.special-event-chat-full {
  max-height: 18rem;
  overflow-y: auto;
  margin-top: 0.55rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(249, 24, 128, 0.18);
  /* Newest-first: keep scroll feel natural from the top */
  overscroll-behavior: contain;
}

.special-event-chat-day {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fda4d0;
  opacity: 0.85;
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(249, 24, 128, 0.15);
}

.special-event-chat-day:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.special-event-chat-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: flex-start;
}

.special-event-chat-row--system {
  align-items: center;
  padding: 0.45rem 0.55rem;
  margin: 0.15rem 0;
  border-radius: 8px;
  background: rgba(249, 24, 128, 0.08);
  border: 1px dashed rgba(249, 24, 128, 0.35);
}

.special-event-chat-system-icon {
  flex-shrink: 0;
  width: 22px;
  text-align: center;
  color: #fda4d0;
  font-size: 0.75rem;
  opacity: 0.9;
}

.special-event-chat-text--system {
  font-style: italic;
  color: #fda4d0;
  font-weight: 500;
}

.special-event-chat-avatar-link {
  flex-shrink: 0;
  line-height: 0;
  margin-top: 0.1rem;
}

.special-event-chat-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(249, 24, 128, 0.35);
  background: rgba(0, 0, 0, 0.25);
  display: block;
}

.special-event-chat-avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #fda4d0;
  opacity: 0.7;
}

.special-event-chat-body {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.5rem;
  align-items: baseline;
  min-width: 0;
  flex: 1;
}

.special-event-chat-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-shrink: 0;
}

.special-event-chat-source {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.95rem;
  font-size: 0.68rem;
  opacity: 0.85;
  flex-shrink: 0;
}

.special-event-chat-source--x {
  color: var(--text-muted);
}

.special-event-chat-source--yt {
  color: #ff4444;
}

.special-event-chat-row--yt .special-event-chat-user {
  color: #fca5a5;
}

.special-event-chat-user {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: #fda4d0;
  text-decoration: none;
}

.special-event-chat-user:hover {
  color: #fff;
  text-decoration: underline;
}

.special-event-chat-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.special-event-chat-text {
  color: var(--text-secondary);
  word-break: break-word;
  flex: 1 1 10rem;
}

.special-event-chat-link {
  color: #fda4d0;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(249, 24, 128, 0.45);
  word-break: break-all;
  transition: color 0.15s, text-decoration-color 0.15s;
}

.special-event-chat-link:hover {
  color: #fff;
  text-decoration-color: rgba(249, 24, 128, 0.85);
}

.special-event-chat-row--yt .special-event-chat-link {
  color: #fca5a5;
  text-decoration-color: rgba(255, 80, 80, 0.4);
}

.special-event-chat-row--yt .special-event-chat-link:hover {
  color: #fff;
  text-decoration-color: rgba(255, 80, 80, 0.75);
}

.special-event-chat-name-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.special-event-chat-empty {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

.special-event-chat-expand {
  margin-top: 0.55rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 24, 128, 0.4);
  background: rgba(249, 24, 128, 0.1);
  color: #fda4d0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.special-event-chat-expand:hover {
  background: rgba(249, 24, 128, 0.22);
  border-color: #f91880;
  color: #fff;
}

@media (max-width: 520px) {
  .special-event-card {
    padding: 0.8rem 0.85rem 0.9rem;
  }
  .special-event-card--collapsed {
    padding: 0.65rem 0.75rem 0.7rem;
  }

  .special-event-badge {
    margin-bottom: 0.55rem;
    font-size: 0.68rem;
  }
  .special-event-card--collapsed .special-event-badge {
    margin-bottom: 0.4rem;
  }

  /* Column stack: flex-basis 14rem was a desktop WIDTH floor; on column
     main-axis it became ~224px HEIGHT and left a huge empty gap. */
  .special-event-main-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .special-event-main {
    flex: 0 1 auto;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .special-event-ctas {
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    gap: 0.4rem;
  }

  .special-event-cta {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
    padding: 0.48rem 0.55rem;
    font-size: 0.7rem;
  }

  .special-event-avatar,
  .special-event-avatar-fallback {
    width: var(--avatar-room-mobile);
    height: var(--avatar-room-mobile);
  }

  .special-event-title {
    font-size: 0.92rem;
    line-height: 1.28;
    /* 3 lines ok on phone for long trip titles */
    -webkit-line-clamp: 3;
  }

  .special-event-by {
    font-size: 0.82rem;
    gap: 0.2rem 0.4rem;
  }

  .special-event-note {
    margin-top: 0.55rem;
    font-size: 0.84rem;
  }

  .special-event-links {
    margin-top: 0.55rem;
    gap: 0.4rem 0.65rem;
  }

  .special-event-chat {
    margin-top: 0.7rem;
    padding-top: 0.7rem;
  }
}

/* Live Now Banner */
.now-banner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem 0.95rem;
  margin-bottom: 1.1rem;
  font-size: 1rem;
  font-weight: 500;
  animation: bannerSlide 0.45s ease-out;
}

.now-banner.hidden {
  display: none;
}

.live-now-heading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  font-size: 1.02rem;
  font-weight: 600;
}

.live-now-rooms {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.live-now-rooms:empty {
  display: none;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--live-color);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--live-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

@keyframes bannerSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

#now-text a {
  color: var(--live-color);
  text-decoration: none;
  font-weight: 600;
}

#now-text a:hover {
  text-decoration: underline;
}

.banner-lead {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  vertical-align: middle;
}

.banner-who {
  line-height: 1.35;
}

.banner-display-name {
  font-weight: 700;
  color: var(--text-primary);
  margin-right: 0.2rem;
}

.banner-msg {
  font-weight: 500;
}

.now-banner .host-avatar {
  width: 36px;
  height: 36px;
}

.now-banner .live-room {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  gap: 0.55rem;
}

.now-banner .live-room-avatar,
.now-banner .live-room-avatar-fallback {
  width: var(--avatar-room);
  height: var(--avatar-room);
}

.now-banner .live-room-title {
  font-size: 0.98rem;
  font-weight: 650;
}

.now-banner .live-room-chips .chip-avatar {
  width: 24px;
  height: 24px;
}

/* Schedule Grid */
.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.day-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.1rem 0.85rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 0.75rem;
  transition: all 0.2s ease;
}

.day-card:hover {
  background: var(--bg-card-hover);
  border-color: #333340;
}

.day-card.is-today {
  --avatar-schedule: 52px;
  border-color: var(--border-active);
  background: var(--bg-card-active);
  box-shadow: 0 0 20px var(--accent-glow), inset 0 1px 0 rgba(29, 155, 240, 0.08);
}



.day-card.is-today .host-handle,
.day-card.is-live .host-handle {
  color: #b4b4c8;
}

.day-card.is-today .space-title,
.day-card.is-live .space-title {
  color: #c4c4d4;
}

.day-card.is-today .host-note,
.day-card.is-today .host-note a,
.day-card.is-live .host-note,
.day-card.is-live .host-note a {
  color: #8e8ea6;
}

.day-card.is-today .cal-btn,
.day-card.is-today .profile-link,
.day-card.is-today .dashboard-link,
.day-card.is-live .cal-btn,
.day-card.is-live .profile-link,
.day-card.is-live .dashboard-link {
  color: #9a9ab2;
  background: rgba(255, 255, 255, 0.07);
}

.day-card.is-today .info-tip,
.day-card.is-live .info-tip {
  color: #8e8ea6;
}

.day-card.is-live {
  --avatar-schedule: 52px;
  border-color: rgba(139, 108, 255, 0.4);
  background: var(--bg-card);
  box-shadow: none;
}

.day-label {
  position: absolute;
  top: 0;
  left: 0.85rem;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 1px solid #3a3a4a;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  padding: 0.32rem 0.7rem 0.26rem;
  line-height: 1.15;
  pointer-events: none;
  max-width: calc(100% - 1.7rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.day-card.is-today .day-label {
  color: var(--accent);
  border-color: rgba(29, 155, 240, 0.4);
}

.day-card.is-live .day-label {
  color: var(--live-color);
  border-color: rgba(139, 108, 255, 0.45);
}

.day-flag {
  position: absolute;
  top: 0;
  right: 0.85rem;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--bg-primary);
  border: 1px solid rgba(29, 155, 240, 0.4);
  border-top: 0;
  border-radius: 0 0 7px 7px;
  padding: 0.22rem 0.55rem 0.18rem;
  line-height: 1.25;
  pointer-events: none;
}

.day-card.is-live .day-flag {
  color: var(--live-color);
  border-color: rgba(139, 108, 255, 0.45);
}

.day-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.host-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.host-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.2;
  transition: color 0.15s;
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.host-link:hover {
  color: var(--accent);
}

.day-card.is-live .host-link {
  color: var(--text-primary);
}

.host-handle {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}

a.host-handle:hover,
a.host-handle:focus-visible {
  color: var(--accent);
  outline: none;
}

/* Live row already has @handle on the X button — keep the display name. */
.day-card.is-live .host-handle {
  display: none;
}

.space-title {
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--text-secondary);
  font-style: italic;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-decoration: none;
  align-self: start;
  max-width: 100%;
  padding: 0.1rem 0;
}

a.space-title:hover,
a.space-title:focus-visible {
  color: var(--accent);
  outline: none;
}

.space-title--space {
  text-decoration: underline;
  text-decoration-color: rgba(29, 155, 240, 0.4);
  text-underline-offset: 0.18em;
}

.space-title-go {
  font-size: 0.62em;
  margin-left: 0.2rem;
  font-style: normal;
  opacity: 0.8;
}

.space-open {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(29, 155, 240, 0.35);
  white-space: nowrap;
}

.space-open:hover,
.space-open:focus-visible {
  filter: brightness(1.08);
  outline: none;
}

.day-card.is-live .space-open {
  color: var(--live-color);
  background: var(--live-glow);
  border-color: rgba(139, 108, 255, 0.4);
}

.time-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  color: var(--text-secondary);
}

.time-local {
  color: var(--accent);
  font-weight: 600;
}

.time-local.tentative {
  color: var(--text-secondary);
  font-weight: 400;
}

.time-ct {
  color: var(--text-muted);
}

/* Info tooltip */
.info-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: help;
  color: var(--text-muted);
  font-size: 0.65rem;
  margin-left: 0.1rem;
  transition: color 0.15s;
}

.info-tip:hover,
.info-tip:focus {
  color: var(--text-secondary);
  outline: none;
}

.info-tip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.35rem 0.65rem;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.info-tip:hover::after,
.info-tip:focus::after {
  opacity: 1;
}

.day-status {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.4rem;
  flex-shrink: 0;
  max-width: none;
}

.status-badge {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
}

.status-badge.live {
  background: rgba(139, 108, 255, 0.14);
  color: var(--live-color);
  animation: none;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.status-badge.upcoming {
  background: rgba(245, 158, 11, 0.12);
  color: var(--upcoming-color);
}

.status-badge.today {
  background: var(--accent-glow);
  color: var(--accent);
}

.status-badge.maybe {
  background: rgba(245, 158, 11, 0.12);
  color: var(--upcoming-color);
  font-style: italic;
}

.sub-badge {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
  background: var(--sub-glow);
  color: var(--sub-color);
}

.sub-badge i {
  font-size: 0.6rem;
  margin-right: 0.2rem;
}

.cal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  transition: all 0.15s;
  flex-shrink: 0;
  font-size: 0.75rem;
  cursor: pointer;
}

.cal-btn:hover {
  color: var(--accent);
  background: var(--accent-glow);
}

.replay-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #872ec4;
  background: rgba(135, 46, 196, 0.12);
  transition: all 0.15s;
  text-decoration: none;
  flex-shrink: 0;
  font-size: 0.78rem;
}

.replay-link:hover,
.replay-link:focus-visible {
  color: #a855f7;
  background: rgba(135, 46, 196, 0.22);
  outline: none;
}

.profile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  transition: all 0.15s;
  text-decoration: none;
  flex-shrink: 0;
}

.profile-link:hover {
  color: var(--accent);
  background: var(--accent-glow);
}

/* Additional Hosts */
.additional-hosts {
  margin-bottom: 2rem;
}

.additional-hosts h2 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.host-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* #extra-hosts root — stacks upcoming announcements above idle chips. */
.chips-root {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Live room — X-like Spaces pill + tracked-speaker chips */
.live-room {
  border: none;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  animation: bannerSlide 0.42s ease-out;
}

.live-room-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #f4f0ff;
  min-width: 0;
  padding: 0.45rem 0.85rem 0.45rem 0.45rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #3a2178 0%, #24104f 100%);
  box-shadow: 0 8px 22px rgba(20, 8, 40, 0.35);
}

.live-room-header:hover .live-room-title-text {
  text-decoration: underline;
}

.live-room-stack {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-left: 0.1rem;
}

.live-room-face {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

.live-room-stack .live-room-face,
.live-room-stack .live-room-avatar-fallback {
  margin-left: -0.45rem;
}

.live-room-stack .live-room-face:first-child,
.live-room-stack .live-room-avatar-fallback:first-child {
  margin-left: 0;
}

.live-room-face-bow {
  position: absolute;
  right: -4px;
  bottom: -5px;
  font-size: 0.68rem;
  line-height: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 2px #1a1030);
}

.live-room-avatar {
  width: var(--avatar-room);
  height: var(--avatar-room);
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #8b6cff;
  background: #1a1030;
  box-sizing: border-box;
}

.live-room-avatar-fallback {
  width: var(--avatar-room);
  height: var(--avatar-room);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a1030;
  border: 2px solid #8b6cff;
  color: #c4b5fd;
  font-size: 1.1rem;
}

.live-room-identity {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
  gap: 0.05rem;
}

.live-room-title {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  min-width: 0;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.3;
  color: #f8f5ff;
}

.live-room-plus {
  flex-shrink: 0;
  font-weight: 700;
  color: #e9e2ff;
}

.live-room-plus[hidden] {
  display: none !important;
}

.live-room-title-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-room-host {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.live-room-verified {
  font-size: 0.7rem;
  color: var(--accent);
}

.live-room-meta {
  font-size: 0.72rem;
  color: rgba(232, 226, 255, 0.62);
  font-family: var(--font-mono);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 0.15rem;
}

.live-eq span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: #e82127;
  transform-origin: bottom;
  animation: live-eq-bar 0.85s ease-in-out infinite;
}

.live-eq span:nth-child(1) {
  height: 7px;
  animation-delay: 0s;
}
.live-eq span:nth-child(2) {
  height: 14px;
  animation-delay: 0.18s;
}
.live-eq span:nth-child(3) {
  height: 9px;
  animation-delay: 0.32s;
}

@keyframes live-eq-bar {
  0%, 100% { transform: scaleY(0.45); }
  50% { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .live-eq span { animation: none; }
}

.live-room-chips {
  /* inherits .host-chips flex-wrap */
  gap: 0.4rem;
}

/* Idle section below the rooms — visually separates "active now" from the
 * background roster so the eye lands on live activity first. */
.idle-chips-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}


@media (max-width: 520px) {
  .now-banner {
    padding: 0.85rem;
    gap: 0.85rem;
  }
  .now-banner .live-room {
    padding: 0;
  }
  .now-banner .live-room-avatar,
  .now-banner .live-room-avatar-fallback,
  .live-room-avatar,
  .live-room-avatar-fallback {
    width: var(--avatar-room-mobile);
    height: var(--avatar-room-mobile);
  }
  .live-room-header {
    flex-wrap: nowrap;
    padding: 0.38rem 0.7rem 0.38rem 0.38rem;
  }
  .live-room-title,
  .now-banner .live-room-title {
    font-size: 0.9rem;
  }
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.45rem 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.15s;
  max-width: 100%;
  box-sizing: border-box;
}

.chip:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  color: var(--accent);
}

.chip i {
  font-size: 0.7rem;
}

.chip-avatar {
  width: var(--avatar-chip);
  height: var(--avatar-chip);
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(136, 136, 160, 0.35);
  background: var(--bg-primary);
}

.chip.live .chip-avatar {
  width: var(--avatar-chip-live);
  height: var(--avatar-chip-live);
  border-color: rgba(139, 108, 255, 0.55);
  box-shadow: none;
}

.chip-verified {
  font-size: 0.65rem;
  color: var(--accent);
  margin-left: -0.15rem;
}

.chip-bow {
  font-size: 0.78rem;
  line-height: 1;
  margin-left: -0.1rem;
}

.chip.live {
  border-color: var(--live-color);
  color: var(--live-color);
}

.chip-live-pill {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: rgba(139, 108, 255, 0.14);
  color: var(--live-color);
  white-space: nowrap;
  animation: none;
}

.chip.upcoming {
  border-color: rgba(245, 158, 11, 0.5);
  color: var(--upcoming-color);
}

.chip.upcoming:hover {
  border-color: var(--upcoming-color);
  color: var(--upcoming-color);
  background: rgba(245, 158, 11, 0.06);
}

.chip-upcoming-pill {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--upcoming-color);
  white-space: nowrap;
}

.upcoming-chips-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.upcoming-chips-label {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--upcoming-color);
}

/* X-announced override pill on a static schedule slot — renders below the
   slot time when the host has published a Scheduled Space at a different
   time on the same local day. Compact + clickable (links to the Space). */
.announced-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: 5px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--upcoming-color);
  font-size: 0.68rem;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid rgba(245, 158, 11, 0.3);
  width: fit-content;
  white-space: nowrap;
}

.announced-pill:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--upcoming-color);
}

/* Past scheduledStart but X still returns state=scheduled — blame the API lag. */
.announced-pill--api-lag {
  background: rgba(248, 113, 113, 0.1);
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.35);
}

.announced-pill--api-lag:hover {
  background: rgba(248, 113, 113, 0.18);
  border-color: #f87171;
}

.announced-pill i {
  font-size: 0.6rem;
}

.announced-space-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  margin-top: 0.3rem;
}

.announced-subscriber-hint,
.announced-api-lag-hint {
  font-size: 0.62rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  letter-spacing: 0.02em;
  padding-left: 0.1rem;
}

.announced-api-lag-hint {
  color: #f87171;
  opacity: 0.9;
}

/* Footer */
footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

footer p {
  margin-bottom: 0.5rem;
}

footer .credits {
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}

footer a:hover {
  color: var(--accent);
  text-decoration: underline;
}

footer .site-reset {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: none;
}

footer .site-reset:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Multi-host day cards */
.day-card--multi {
  grid-template-columns: 1fr;
  align-items: start;
}

.day-hosts {
  display: flex;
  flex-direction: column;
}

.host-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.28rem 0;
}

.host-row + .host-row {
  border-top: 1px solid var(--border);
  margin-top: 0.15rem;
  padding-top: 0.4rem;
}

.host-row .day-info {
  flex: 1;
  min-width: 0;
}

/* Host note */
.host-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: 0.15rem;
  line-height: 1.4;
}

.host-note a {
  color: var(--text-muted);
  text-decoration: none;
}

.host-note a:hover {
  color: var(--accent);
}

/* Suggest button in footer */
.suggest-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0.45rem 1rem;
  background: rgba(29, 155, 240, 0.08);
  border: 1px solid rgba(29, 155, 240, 0.25);
  border-radius: 20px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.suggest-btn[hidden] {
  display: none !important;
}

.suggest-btn:hover {
  background: rgba(29, 155, 240, 0.15);
  border-color: var(--accent);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  animation: overlayIn 0.2s ease-out;
}

@media (min-width: 521px) {
  .modal-overlay {
    align-items: center;
  }
}

.modal-overlay[hidden] {
  display: none;
}

@keyframes overlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalUp 0.25s ease-out;
}

@keyframes modalUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 0;
}

.modal-header h2 {
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
}

.modal-header h2 i {
  color: var(--accent);
  font-size: 0.85rem;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  flex-shrink: 0;
}

.modal-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
}

.modal-body {
  padding: 1.25rem;
}

/* Form elements */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.form-optional {
  font-weight: 400;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
}

.form-input {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  padding: 0.55rem 0.75rem;
  transition: border-color 0.15s;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
}

.form-input::placeholder {
  color: var(--text-muted);
}

textarea.form-input {
  resize: vertical;
  min-height: 60px;
  font-family: var(--font-display);
  font-size: 0.85rem;
}

select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555568' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
  cursor: pointer;
}

.input-prefix-wrap {
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.15s;
}

.input-prefix-wrap:focus-within {
  border-color: var(--accent);
}

.input-prefix {
  padding: 0.55rem 0 0.55rem 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.input-prefix-wrap .form-input {
  border: none;
  border-radius: 0;
  padding-left: 0.2rem;
}

.input-prefix-wrap .form-input:focus {
  outline: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.radio-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.radio-option input[type="radio"] {
  accent-color: var(--accent);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.checkbox-option input[type="checkbox"] {
  accent-color: var(--sub-color);
  width: 15px;
  height: 15px;
  cursor: pointer;
  flex-shrink: 0;
}

.suggest-hint {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.btn-post {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
}

.btn-post:hover {
  background: #1a8cd8;
}

.btn-post:active {
  opacity: 0.85;
}

/* Mobile adjustments */
@media (max-width: 520px) {
  .container {
    padding: 1.1rem 1rem 2.5rem;
  }

  h1 {
    font-size: 1.4rem;
  }

  /* Header: stack logo + pinned pills; avoid space-between squeeze on narrow widths */
  .header-top {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .pinned-streams {
    width: 100%;
    justify-content: flex-start;
  }

  .pinned-stream-btn,
  .pinned-stream-btn--external,
  .pinned-stream-btn--podcast {
    font-size: 0.72rem;
    padding: 0.4rem 0.65rem;
    gap: 0.4rem;
  }

  .header-meta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem 0.75rem;
    margin-top: 0.35rem;
    width: 100%;
  }

  .push-panel {
    left: 0;
    right: 0;
    max-width: none;
  }

  .clock-lead {
    display: none;
  }

  /* Keep clock + optional scanner on one line so the page does not jump. */
  .header-status {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .header-controls {
    margin-left: 0;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .header-meta .toggle-row {
    margin-left: 0;
    margin-top: 0;
  }

  .subtitle,
  .header-status .subtitle,
  .header-status .live-status {
    font-size: 0.88rem;
  }

  /* Same 1fr / auto as desktop: icons stay upper-right */
  .day-card {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    padding: 1.7rem 0.85rem 0.7rem;
    gap: 0.3rem 0.5rem;
  }

  .day-card > .day-info {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .day-card > .day-status {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    align-self: start;
    flex-wrap: wrap;
    gap: 0.3rem;
    max-width: 11.5rem;
  }

  .day-card--multi {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .day-label {
    left: 0.7rem;
    font-size: 0.85rem;
    padding: 0.28rem 0.6rem 0.22rem;
  }

  .day-flag {
    right: 0.7rem;
    font-size: 0.68rem;
  }

  .host-row {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .host-row .day-status {
    width: auto;
    max-width: 11.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0;
    margin-left: auto;
  }

  .listen-link {
    justify-content: flex-end;
    max-width: 100%;
  }

  .listen-link .live-meta {
    flex-basis: 100%;
    text-align: right;
  }

  /* Let host name + handle wrap naturally */
  .host-line {
    flex-wrap: wrap;
    gap: 0.15rem 0.4rem;
  }

  .host-link {
    font-size: 1rem;
  }

  .host-handle {
    font-size: 0.72rem;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .space-title {
    font-size: 0.82rem;
    padding: 0.15rem 0;
  }

  .time-row {
    font-size: 0.82rem;
  }

  .day-status .live-meta,
  .listen-link .live-meta {
    font-size: 0.72rem;
  }

  .chip {
    font-size: 0.9rem;
  }

  .status-badge,
  .sub-badge {
    font-size: 0.68rem;
    padding: 0.22rem 0.48rem;
  }

  .cal-btn,
  .dashboard-link,
  .profile-link,
  .replay-link {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
}
