:root {
  --broadcast-ink: oklch(0.25 0.025 28);
  --broadcast-muted: oklch(0.51 0.025 28);
  --broadcast-paper: oklch(0.975 0.012 82);
  --broadcast-surface: oklch(0.995 0.006 82);
  --broadcast-line: oklch(0.88 0.018 65);
  --broadcast-accent: oklch(0.42 0.14 27);
  --broadcast-accent-soft: oklch(0.93 0.035 30);
  --broadcast-gold: oklch(0.72 0.12 82);
  --broadcast-success: oklch(0.48 0.11 150);
  --broadcast-warning: oklch(0.67 0.14 76);
  --broadcast-danger: oklch(0.5 0.18 27);
  --broadcast-radius: 0.9rem;
  --broadcast-shadow: 0 18px 45px oklch(0.25 0.03 28 / 0.1);
}

.broadcast-body {
  margin: 0;
  color: var(--broadcast-ink);
  background: var(--broadcast-paper);
}

.broadcast-body *,
.broadcast-body *::before,
.broadcast-body *::after {
  box-sizing: border-box;
}

.broadcast-body > .site-header {
  color: oklch(0.98 0.008 82);
  background: var(--broadcast-accent);
}

.broadcast-body > .site-header h1,
.broadcast-body > .site-header a,
.broadcast-body > .site-header button {
  color: inherit;
}

.broadcast-body button,
.broadcast-body select,
.broadcast-body summary {
  font: inherit;
}

.broadcast-shell {
  width: min(1440px, 100%);
  min-height: 70vh;
  margin: 0 auto;
  padding: clamp(1rem, 2.4vw, 2.5rem);
}

.broadcast-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid var(--broadcast-line);
  color: inherit;
  background: transparent;
  text-align: left;
}

.broadcast-identity {
  min-width: 0;
}

.broadcast-eyebrow {
  margin: 0 0 0.35rem;
  color: var(--broadcast-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.broadcast-identity h1 {
  margin: 0;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.broadcast-identity > p:last-child {
  max-width: 65ch;
  margin: 0.45rem 0 0;
  color: var(--broadcast-muted);
}

.broadcast-toolbar__actions,
.clock-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.broadcast-mode-switch {
  display: inline-flex;
  padding: 0.2rem;
  border: 1px solid var(--broadcast-line);
  border-radius: 999px;
  background: var(--broadcast-surface);
}

.broadcast-mode-switch button,
.feed-filters button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--broadcast-muted);
  cursor: pointer;
  font-weight: 750;
}

.broadcast-mode-switch button {
  min-height: 2.35rem;
  padding: 0.5rem 0.9rem;
}

.broadcast-mode-switch button[aria-pressed="true"],
.feed-filters button[aria-pressed="true"] {
  color: oklch(0.985 0.006 82);
  background: var(--broadcast-accent);
}

.broadcast-picker {
  position: relative;
}

.broadcast-picker summary,
.clock-controls button,
.notification-panel > summary,
.notification-panel__body > button,
.load-older-events,
.new-events-button {
  min-height: 2.55rem;
  border: 1px solid var(--broadcast-line);
  border-radius: 999px;
  color: var(--broadcast-ink);
  background: var(--broadcast-surface);
  cursor: pointer;
  font-weight: 750;
}

.broadcast-picker summary {
  display: grid;
  place-items: center;
  padding: 0.5rem 0.9rem;
  list-style: none;
}

.broadcast-picker summary::-webkit-details-marker {
  display: none;
}

.broadcast-picker__body {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.55rem);
  right: 0;
  width: min(22rem, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid var(--broadcast-line);
  border-radius: var(--broadcast-radius);
  background: var(--broadcast-surface);
  box-shadow: var(--broadcast-shadow);
}

.broadcast-picker__body label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 800;
}

.broadcast-picker__body select {
  width: 100%;
  min-height: 2.8rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--broadcast-line);
  border-radius: 0.6rem;
  color: var(--broadcast-ink);
  background: var(--broadcast-paper);
}

.broadcast-picker__body p {
  margin: 0.6rem 0 0;
  color: var(--broadcast-muted);
  font-size: 0.8rem;
}

.connection-state {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--broadcast-muted);
  background: oklch(0.94 0.012 70);
  font-size: 0.78rem;
  font-weight: 800;
}

.connection-state::before {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--broadcast-warning);
  content: "";
}

.connection-state[data-state="live"]::before {
  background: var(--broadcast-success);
}

.connection-state[data-state="offline"]::before,
.connection-state[data-state="error"]::before {
  background: var(--broadcast-danger);
}

.broadcast-status {
  margin: 1rem 0 0;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--broadcast-line);
  border-radius: 0.65rem;
  color: var(--broadcast-muted);
  background: var(--broadcast-surface);
}

.broadcast-status:empty {
  display: none;
}

.broadcast-status[data-tone="error"] {
  color: var(--broadcast-danger);
  border-color: oklch(0.77 0.1 27);
  background: oklch(0.95 0.035 27);
}

.feed-view,
.clock-view {
  margin-top: clamp(1rem, 2vw, 1.75rem);
}

.feed-snapshot {
  position: sticky;
  z-index: 8;
  top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--broadcast-line);
  border-radius: var(--broadcast-radius);
  background: var(--broadcast-surface);
  box-shadow: 0 12px 30px oklch(0.25 0.03 28 / 0.08);
}

.broadcast-sponsors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1rem;
}
.broadcast-sponsors a { display: grid; grid-template-columns: 5rem 1fr; gap: 0.8rem; align-items: stretch; min-height: 7.25rem; padding: 0.65rem; border: 1px solid var(--broadcast-line); border-radius: 14px; background: var(--broadcast-surface); color: inherit; text-decoration: none; overflow: hidden; transition: border-color 160ms ease, transform 160ms ease; }
.broadcast-sponsors a:hover { border-color: var(--broadcast-accent); transform: translateY(-1px); }
.broadcast-sponsors a:focus-visible { outline: 3px solid var(--broadcast-accent); outline-offset: 3px; }
.broadcast-sponsor__visual { display: grid; place-items: center; min-height: 100%; border-radius: 9px; }
.broadcast-sponsor__visual--forge { background: linear-gradient(145deg, #edf3f6, #b7cdd7); }
.broadcast-sponsor__visual--cake { background: linear-gradient(145deg, #fff5f7, #edcad8); }
.broadcast-sponsors .broadcast-sponsor__visual img { width: 4.4rem; height: 3.6rem; object-fit: contain; border-radius: 7px; background: transparent; mix-blend-mode: multiply; }
.broadcast-sponsors a > span:last-child { display: grid; align-content: center; gap: 0.18rem; min-width: 0; }
.broadcast-sponsors em { color: var(--broadcast-muted); font-size: .63rem; font-style: normal; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.broadcast-sponsors strong { line-height: 1.18; }
.broadcast-sponsors small { color: var(--broadcast-muted); line-height: 1.32; }
.broadcast-sponsors b { margin-top: .15rem; color: var(--broadcast-accent); font-size: .7rem; }
@media (max-width: 620px) { .broadcast-sponsors { grid-template-columns: 1fr; } .broadcast-sponsors a { min-height: 6.5rem; } }

.broadcast-prediction { display: grid; gap: 0.85rem; margin: 0 0 1rem; padding: 1rem 1.15rem; border: 1px solid var(--broadcast-line); border-radius: var(--broadcast-radius); background: var(--broadcast-surface); }
.broadcast-prediction__heading { display: flex; justify-content: space-between; gap: 1rem; align-items: end; }
.broadcast-prediction__heading h2 { margin: 0; font-family: Montserrat, system-ui, sans-serif; font-size: 1.2rem; }
.broadcast-prediction__heading > small, .broadcast-prediction > p { color: var(--broadcast-muted); }
.broadcast-prediction > p { margin: 0; font-size: 0.82rem; }
.broadcast-prediction__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.65rem; margin: 0; padding: 0; list-style: none; }
.broadcast-prediction__list:empty { display: none; }
.broadcast-prediction__list li { display: grid; grid-template-columns: auto 1fr; gap: 0.65rem; align-items: center; padding: 0.75rem; border-radius: 10px; background: var(--broadcast-accent-soft); }
.broadcast-prediction__list li > span:first-child { color: var(--broadcast-accent); font-weight: 900; }
.broadcast-prediction__list li > span:last-child { display: grid; gap: 0.15rem; min-width: 0; }
.broadcast-prediction__list strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.broadcast-prediction__list small { color: var(--broadcast-muted); }
@media (max-width: 760px) { .broadcast-prediction__list { grid-template-columns: 1fr; } .broadcast-prediction__heading { align-items: start; flex-direction: column; } }

.feed-snapshot > div {
  min-width: 0;
  padding: 0.8rem 1rem;
}

.feed-snapshot > div + div {
  border-left: 1px solid var(--broadcast-line);
}

.feed-snapshot span,
.feed-snapshot small {
  display: block;
  color: var(--broadcast-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-snapshot span {
  margin-bottom: 0.2rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.feed-snapshot strong {
  display: block;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-snapshot small {
  margin-top: 0.2rem;
  font-size: 0.74rem;
}

.feed-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 22rem);
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: 1.25rem;
  align-items: start;
}

.feed-panel {
  position: relative;
  min-width: 0;
  border: 1px solid var(--broadcast-line);
  border-radius: var(--broadcast-radius);
  background: var(--broadcast-surface);
  box-shadow: var(--broadcast-shadow);
  overflow: hidden;
}

.feed-panel__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--broadcast-line);
  color: inherit;
  background: transparent;
  text-align: left;
}

.feed-panel__header h2,
.clock-schedule__heading h2 {
  margin: 0;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 1.3rem;
}

.feed-panel__header h2 {
  color: var(--broadcast-ink);
}

.feed-filters {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.feed-filters button {
  min-height: 2.1rem;
  padding: 0.4rem 0.65rem;
  font-size: 0.77rem;
}

.feed-scroll {
  position: relative;
  min-height: 24rem;
  max-height: min(62vh, 46rem);
  padding: 0.8rem 1.15rem 1.25rem;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.event-feed {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-entry {
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--broadcast-line);
}

.event-entry:last-child {
  border-bottom: 0;
}

.event-entry__marker {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: var(--broadcast-accent);
  background: var(--broadcast-accent-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.event-entry[data-category="knockouts"] .event-entry__marker {
  color: oklch(0.42 0.17 27);
  background: oklch(0.93 0.045 27);
}

.event-entry[data-category="rebuys"] .event-entry__marker {
  color: oklch(0.39 0.1 150);
  background: oklch(0.93 0.04 150);
}

.event-entry[data-category="blinds"] .event-entry__marker {
  color: oklch(0.45 0.11 78);
  background: oklch(0.94 0.05 88);
}

.event-entry__message {
  margin: 0;
  line-height: 1.45;
}

.event-entry__meta {
  margin: 0.25rem 0 0;
  color: var(--broadcast-muted);
  font-size: 0.76rem;
}

.event-entry time {
  color: var(--broadcast-muted);
  font-size: 0.75rem;
  white-space: nowrap;
}

.feed-empty {
  display: grid;
  place-items: center;
  min-height: 20rem;
  align-content: center;
  gap: 0.35rem;
  color: var(--broadcast-muted);
  text-align: center;
}

.feed-empty strong {
  color: var(--broadcast-ink);
  font-size: 1.1rem;
}

.load-older-events {
  display: block;
  margin: 0.2rem auto 0.8rem;
  padding: 0.45rem 0.8rem;
}

.new-events-button {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.85rem;
  color: oklch(0.985 0.006 82);
  border-color: var(--broadcast-accent);
  background: var(--broadcast-accent);
  box-shadow: 0 8px 20px oklch(0.3 0.1 27 / 0.25);
}

[hidden] {
  display: none !important;
}

.feed-sidebar {
  display: grid;
  gap: 1rem;
}

.notification-panel,
.feed-help {
  border: 1px solid var(--broadcast-line);
  border-radius: var(--broadcast-radius);
  background: var(--broadcast-surface);
}

.notification-panel > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: auto;
  padding: 0.9rem 1rem;
  border: 0;
  border-radius: var(--broadcast-radius);
  list-style: none;
}

.notification-panel > summary::-webkit-details-marker {
  display: none;
}

.notification-panel > summary::after {
  content: "+";
  font-size: 1.4rem;
}

.notification-panel[open] > summary::after {
  content: "−";
}

.notification-panel > summary span,
.notification-panel > summary small {
  display: block;
}

.notification-panel > summary small {
  margin-top: 0.15rem;
  color: var(--broadcast-muted);
  font-weight: 500;
}

.notification-panel__body {
  display: grid;
  gap: 1rem;
  padding: 0 1rem 1rem;
}

.notification-panel__body > p,
.notification-panel__body section > p,
.feed-help p {
  margin: 0;
  color: var(--broadcast-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.notification-panel__body section {
  padding-top: 0.85rem;
  border-top: 1px solid var(--broadcast-line);
}

.notification-panel__body h3 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
}

.broadcast-alert-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.broadcast-alert-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
  cursor: pointer;
}

.broadcast-alert-choice input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  accent-color: var(--broadcast-accent);
}

.broadcast-alert-choice strong,
.broadcast-alert-choice small {
  display: block;
}

.broadcast-alert-choice strong {
  font-size: 0.84rem;
}

.broadcast-alert-choice small {
  margin-top: 0.1rem;
  color: var(--broadcast-muted);
  font-size: 0.73rem;
  line-height: 1.35;
}

.notification-panel__body > button {
  padding: 0.55rem 0.85rem;
  color: oklch(0.985 0.006 82);
  border-color: var(--broadcast-accent);
  background: var(--broadcast-accent);
}

.broadcast-notification-status {
  min-height: 1.2rem;
}

.broadcast-notification-status[data-tone="error"] {
  color: var(--broadcast-danger);
}

.broadcast-notification-status[data-tone="success"] {
  color: var(--broadcast-success);
}

.feed-help {
  padding: 1rem;
}

.feed-help strong {
  display: block;
  margin-bottom: 0.3rem;
}

.broadcast-footer {
  text-align: center;
}

/* A laptop sits several feet from a poker table under mixed room lighting.
   Clock mode uses a dark, low-glare surface with bright numeric contrast. */
.broadcast-body[data-broadcast-mode="clock"] {
  color: oklch(0.96 0.012 75);
  background: oklch(0.16 0.025 28);
}

.broadcast-body[data-broadcast-mode="clock"] > .site-header,
.broadcast-body[data-broadcast-mode="clock"] > .broadcast-footer,
.broadcast-body[data-broadcast-mode="clock"] > .status-banner-stack {
  display: none;
}

.broadcast-body[data-broadcast-mode="clock"] .broadcast-shell {
  width: 100%;
  min-height: 100vh;
  padding: clamp(0.75rem, 1.5vw, 1.5rem);
}

.broadcast-body[data-broadcast-mode="clock"] .broadcast-status {
  display: none;
}

.broadcast-body[data-broadcast-mode="clock"] .broadcast-toolbar {
  align-items: center;
  padding-bottom: 0.75rem;
  border-color: oklch(0.36 0.025 28);
}

.broadcast-body[data-broadcast-mode="clock"] .broadcast-identity h1 {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
}

.broadcast-body[data-broadcast-mode="clock"] .broadcast-identity > p:last-child,
.broadcast-body[data-broadcast-mode="clock"] .broadcast-eyebrow {
  color: oklch(0.72 0.035 70);
}

.broadcast-body[data-broadcast-mode="clock"] .broadcast-identity > p:last-child {
  display: none;
}

.broadcast-body[data-broadcast-mode="clock"] .broadcast-mode-switch,
.broadcast-body[data-broadcast-mode="clock"] .broadcast-picker summary,
.broadcast-body[data-broadcast-mode="clock"] .clock-controls button {
  color: oklch(0.9 0.012 75);
  border-color: oklch(0.4 0.025 28);
  background: oklch(0.22 0.027 28);
}

.broadcast-body[data-broadcast-mode="clock"] .broadcast-mode-switch button[aria-pressed="true"] {
  color: oklch(0.18 0.02 28);
  background: var(--broadcast-gold);
}

.broadcast-body[data-broadcast-mode="clock"] .broadcast-picker__body {
  color: oklch(0.94 0.012 75);
  border-color: oklch(0.4 0.025 28);
  background: oklch(0.21 0.027 28);
}

.broadcast-body[data-broadcast-mode="clock"] .broadcast-picker__body select {
  color: oklch(0.94 0.012 75);
  border-color: oklch(0.42 0.025 28);
  background: oklch(0.17 0.022 28);
}

.clock-controls {
  margin-bottom: 0.65rem;
}

.clock-controls button[aria-pressed="true"] {
  color: oklch(0.18 0.02 28);
  border-color: var(--broadcast-gold);
  background: var(--broadcast-gold);
}

.clock-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(20rem, 0.85fr);
  gap: clamp(0.8rem, 1.5vw, 1.4rem);
  height: calc(100vh - 12.5rem);
  min-height: 440px;
}

.clock-stage {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
  align-items: center;
  min-width: 0;
  min-height: 0;
  padding: clamp(1.25rem, 3.2vw, 3.5rem);
  border: 1px solid oklch(0.35 0.03 28);
  border-radius: 1.15rem;
  background: oklch(0.19 0.028 28);
  overflow: hidden;
}

.clock-stage__status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.clock-status,
.clock-level-number {
  color: oklch(0.86 0.035 75);
  font-size: clamp(0.8rem, 1.2vw, 1.05rem);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clock-status[data-status="paused"] {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: oklch(0.18 0.02 28);
  background: var(--broadcast-warning);
}

.clock-status[data-status="running"] {
  color: oklch(0.77 0.11 150);
}

.clock-stage__label {
  margin: clamp(0.8rem, 2vh, 1.5rem) 0 0.15rem;
  color: oklch(0.67 0.035 70);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.clock-stage__blinds {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(2.4rem, 6vw, 6.6rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

.clock-stage__countdown {
  align-self: center;
  color: oklch(0.94 0.08 83);
  font-family: ui-monospace, "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-size: clamp(4.5rem, min(15vw, 22vh), 14rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-align: center;
  text-shadow: 0 8px 40px oklch(0.72 0.12 82 / 0.12);
}

.clock-next {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 0.8rem;
  padding-top: 0.85rem;
  border-top: 1px solid oklch(0.35 0.03 28);
}

.clock-next span,
.clock-next small,
.clock-sync-note {
  color: oklch(0.67 0.035 70);
}

.clock-next span {
  font-weight: 800;
  text-transform: uppercase;
}

.clock-next strong {
  font-size: clamp(1.25rem, 2.5vw, 2.2rem);
}

.clock-sync-note {
  margin: 0.6rem 0 0;
  font-size: 0.8rem;
}

.clock-schedule {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1rem;
  border: 1px solid oklch(0.35 0.03 28);
  border-radius: 1.15rem;
  background: oklch(0.19 0.028 28);
  overflow: hidden;
}

.clock-schedule__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0.25rem 0.85rem;
  border-bottom: 1px solid oklch(0.35 0.03 28);
  color: inherit;
  background: transparent;
  text-align: left;
}

.clock-schedule__heading span {
  color: oklch(0.67 0.035 70);
  font-size: 0.75rem;
}

.schedule-list {
  flex: 1;
  min-height: 0;
  max-height: none;
  margin: 0;
  padding: 0.6rem 0 4rem;
  list-style: none;
  overflow-y: auto;
}

.schedule-item {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.65rem;
  border-radius: 0.65rem;
  color: oklch(0.77 0.025 70);
}

.schedule-item + .schedule-item {
  margin-top: 0.15rem;
}

.schedule-item[data-state="past"] {
  opacity: 0.48;
}

.schedule-item[data-state="current"] {
  color: oklch(0.18 0.02 28);
  background: var(--broadcast-gold);
}

.schedule-item__number {
  font-weight: 850;
  text-align: center;
}

.schedule-item__level {
  min-width: 0;
  font-weight: 780;
}

.schedule-item__level small {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.75;
}

.schedule-item__duration {
  font-size: 0.72rem;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .broadcast-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .broadcast-toolbar__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .feed-snapshot {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feed-snapshot > div + div {
    border-left: 0;
  }

  .feed-snapshot > div:nth-child(even) {
    border-left: 1px solid var(--broadcast-line);
  }

  .feed-snapshot > div:nth-child(n + 3) {
    border-top: 1px solid var(--broadcast-line);
  }

  .feed-layout {
    grid-template-columns: 1fr;
  }

  .clock-layout {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .clock-stage {
    min-height: 64vh;
  }

  .schedule-list {
    flex: none;
    max-height: 34rem;
  }
}

@media (max-width: 620px) {
  .broadcast-shell {
    padding: 0.75rem;
  }

  .broadcast-toolbar__actions {
    align-items: stretch;
  }

  .broadcast-mode-switch {
    flex: 1 1 auto;
  }

  .broadcast-mode-switch button {
    flex: 1;
  }

  .broadcast-picker {
    flex: 1 1 100%;
  }

  .broadcast-picker summary {
    width: 100%;
  }

  .broadcast-picker__body {
    right: auto;
    left: 0;
  }

  .feed-snapshot strong {
    font-size: 0.98rem;
  }

  .feed-panel__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .feed-scroll {
    max-height: none;
    padding-inline: 0.9rem;
  }

  .event-entry {
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  .event-entry time {
    grid-column: 2;
  }

  .clock-controls {
    justify-content: flex-start;
  }

  .clock-controls button {
    flex: 1 1 10rem;
  }

  .clock-stage {
    min-height: 58vh;
    padding: 1rem;
  }

  .clock-stage__countdown {
    font-size: clamp(5rem, 25vw, 8rem);
  }

  .clock-next {
    grid-template-columns: auto 1fr;
  }

  .clock-next small {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feed-scroll {
    scroll-behavior: auto;
  }
}
