:root {
  color-scheme: dark;
  --ink: #04070c;
  --ink-soft: #0a1118;
  --panel: linear-gradient(168deg, rgba(17, 28, 38, 0.92), rgba(7, 13, 19, 0.74) 45%, rgba(5, 9, 14, 0.9));
  --panel-strong: linear-gradient(180deg, rgba(9, 16, 23, 0.86), rgba(4, 8, 13, 0.94));
  --line: rgba(150, 190, 198, 0.16);
  --line-bright: rgba(164, 226, 224, 0.42);
  --text: #e8f1ee;
  --muted: #8b9aa0;
  --quiet: #56676e;
  --cyan: #8ce8e5;
  --amber: #f4b35e;
  --coral: #ff8069;
  --violet: #b6a5ff;
  --lime: #b7e36f;
  --alert: #ff3b30;
  --gold: #ffd27a;
  --display: "Barlow Condensed", "Archivo Narrow", "Arial Narrow", sans-serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

body {
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button {
  font: inherit;
}

::selection {
  background: rgba(140, 232, 229, 0.28);
  color: #ffffff;
}

.app-shell {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(52% 44% at 50% 44%, rgba(32, 62, 88, 0.4) 0%, transparent 68%),
    radial-gradient(30% 28% at 76% 14%, rgba(40, 48, 104, 0.2) 0%, transparent 70%),
    radial-gradient(38% 32% at 10% 88%, rgba(24, 50, 70, 0.22) 0%, transparent 72%),
    radial-gradient(140% 90% at 50% 110%, rgba(6, 12, 20, 0.9) 0%, transparent 60%),
    var(--ink);
}

.topbar,
.bottom-dock,
.event-brief,
.telemetry,
.stage-caption {
  z-index: 3;
}

@keyframes boot-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 26px 34px 62px;
  background: linear-gradient(180deg, rgba(4, 6, 12, 0.82) 0%, rgba(4, 6, 12, 0) 100%);
  pointer-events: none;
  animation: boot-rise 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Network signature: red broadcast rail across the top edge */
.topbar::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #b0120a 0%, #ef2d20 30%, rgba(239, 45, 32, 0.55) 62%, rgba(239, 45, 32, 0.12) 88%, transparent 100%);
  box-shadow: 0 2px 16px rgba(255, 59, 48, 0.4);
}

.event-brief {
  animation: boot-rise 800ms cubic-bezier(0.22, 1, 0.36, 1) 160ms both;
}

.telemetry {
  animation: boot-rise 800ms cubic-bezier(0.22, 1, 0.36, 1) 280ms both;
}

.bottom-dock {
  animation: boot-rise 800ms cubic-bezier(0.22, 1, 0.36, 1) 360ms both;
}

.brand-lockup,
.topbar-readout,
.live-state,
.brief-heading,
.brief-footer,
.ticker-line,
.ticker-label,
.telemetry-row {
  display: flex;
  align-items: center;
}

.brand-lockup {
  gap: 14px;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 4px);
  gap: 3px;
  align-items: end;
  width: 19px;
  height: 26px;
}

.brand-mark span {
  display: block;
  width: 4px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #c8f4f0 0%, var(--cyan) 55%, rgba(140, 232, 229, 0.25) 100%);
  box-shadow: 0 0 14px rgba(140, 232, 229, 0.55);
}

.brand-mark span:nth-child(1) { height: 11px; opacity: 0.55; }
.brand-mark span:nth-child(2) { height: 21px; }
.brand-mark span:nth-child(3) { height: 15px; opacity: 0.75; }

.eyebrow {
  margin: 0 0 5px;
  color: var(--alert);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  color: var(--text);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.topbar-readout {
  gap: 16px;
  padding-top: 3px;
  font-size: 10px;
  pointer-events: auto;
}

.live-state {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 26px;
  padding: 0 12px;
  border: 1px solid rgba(255, 59, 48, 0.5);
  border-radius: 2px;
  color: var(--text);
  background: rgba(10, 8, 9, 0.72);
  backdrop-filter: blur(8px);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 11px;
}

.live-eq i {
  display: block;
  width: 3px;
  background: var(--alert);
  box-shadow: 0 0 6px rgba(255, 59, 48, 0.9);
  animation: eq-bounce 1s ease-in-out infinite;
}

.live-eq i:nth-child(1) { height: 5px; animation-delay: 0s; }
.live-eq i:nth-child(2) { height: 11px; animation-delay: 0.18s; }
.live-eq i:nth-child(3) { height: 8px; animation-delay: 0.36s; }

@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1.15); }
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 128, 105, 0.14), 0 0 12px rgba(255, 128, 105, 0.8);
  animation: live-pulse 2s ease-in-out infinite;
}

.tick-live {
  color: var(--alert);
  font-size: 8px;
  animation: live-pulse 1.4s ease-in-out infinite;
  text-shadow: 0 0 8px rgba(255, 59, 48, 0.9);
}

@keyframes live-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.utc-readout {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 11px;
  border: 1px solid rgba(150, 186, 201, 0.1);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(8, 14, 21, 0.4);
  backdrop-filter: blur(8px);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.stage {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.globe-mount {
  position: absolute;
  inset: 0;
  cursor: grab;
}

.globe-mount:active {
  cursor: grabbing;
}

.globe-mount canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.stage-caption {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(120, 140, 148, 0.7);
  font-family: var(--mono);
  font-size: 8.5px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  pointer-events: none;
}

.stage-caption-left {
  left: 32px;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left center;
}

.stage-caption-right {
  right: 32px;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.caption-rule {
  display: block;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}

.stage-caption-right .caption-rule {
  background: linear-gradient(90deg, transparent, var(--line));
}

.event-brief {
  position: absolute;
  left: 34px;
  bottom: 84px;
  width: min(392px, calc(100vw - 68px));
  padding: 20px 24px 16px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--event-color, var(--cyan));
  border-radius: 2px;
  background:
    linear-gradient(115deg, rgba(190, 228, 235, 0.055) 0%, transparent 30%),
    linear-gradient(190deg, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
    var(--panel);
  box-shadow:
    0 26px 64px -18px rgba(0, 0, 0, 0.65),
    0 0 34px -6px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(190, 228, 235, 0.07);
  backdrop-filter: blur(22px) saturate(140%);
  transform: translateY(0);
  opacity: 1;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms ease;
}

.event-brief.ui-hidden {
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
}

.event-brief:hover {
  box-shadow:
    0 30px 70px -18px rgba(0, 0, 0, 0.72),
    inset 0 1px 0 rgba(190, 228, 235, 0.08);
}

/* Accent top-glow bar */
.event-brief::before {
  position: absolute;
  top: -1px;
  left: 18px;
  width: 38px;
  height: 1px;
  content: "";
  background: var(--event-color, var(--cyan));
  box-shadow: 0 0 16px var(--event-color, var(--cyan));
}

/* Corner tick */
.event-brief::after {
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 11px;
  height: 11px;
  content: "";
  border-right: 1px solid var(--event-color, var(--cyan));
  border-bottom: 1px solid var(--event-color, var(--cyan));
  opacity: 0.65;
  transition: opacity 260ms ease;
}

.event-brief:hover::after {
  opacity: 1;
}

.brief-heading {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.brief-type {
  color: var(--event-color, var(--cyan));
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brief-priority {
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brief-type::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 1px;
  background: var(--event-color, var(--cyan));
  box-shadow: 0 0 10px var(--event-color, var(--cyan));
  transform: translateY(-1px);
}

.event-brief h2 {
  max-width: 340px;
  color: var(--text);
  font-family: var(--display);
  font-size: 38px;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 30px rgba(0, 0, 0, 0.45);
}

.brief-location {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.45;
}

.brief-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 12px;
  margin-top: 18px;
  padding-top: 13px;
  border-top: 1px solid rgba(150, 186, 201, 0.14);
}

.brief-meta > div {
  min-width: 0;
}

.meta-label {
  display: block;
  margin-bottom: 6px;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  white-space: nowrap;
  text-transform: uppercase;
}

.brief-meta strong {
  display: block;
  overflow: hidden;
  color: #dcebe6;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brief-footer {
  justify-content: flex-start;
  gap: 14px;
  margin-top: 16px;
}

.brief-footer > span {
  overflow: hidden;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.telemetry {
  position: absolute;
  right: 34px;
  bottom: 100px;
  width: 208px;
  padding: 0 15px 11px;
  border-top: 1px solid var(--line-bright);
  border-bottom: 1px solid var(--line);
  border-radius: 2px;
  background: linear-gradient(160deg, rgba(11, 19, 27, 0.58), rgba(7, 12, 18, 0.38));
  backdrop-filter: blur(14px);
  color: var(--muted);
  font-size: 8px;
  transform: translateY(0);
  opacity: 1;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 400ms ease;
}

.telemetry-head {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  border-bottom: 1px solid rgba(150, 186, 201, 0.1);
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.telemetry-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--alert);
  box-shadow: 0 0 9px rgba(255, 59, 48, 0.85);
  animation: live-pulse 1.3s ease-in-out infinite;
}

.telemetry.ui-hidden {
  transform: translateY(110px);
  opacity: 0;
  pointer-events: none;
}

.telemetry-row {
  justify-content: space-between;
  gap: 12px;
  min-height: 23px;
  border-bottom: 1px solid rgba(150, 186, 201, 0.08);
}

.telemetry-row:last-child {
  border-bottom: 0;
}

.telemetry span {
  font-family: var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.telemetry strong {
  color: var(--text);
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: right;
}

.sat-filter-section {
  padding: 4px 0 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-top: 1px solid rgba(150,186,201,0.1);
  margin-top: 2px;
}

.sat-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border: 1px solid rgba(150,186,201,0.35);
  border-radius: 10px;
  background: rgba(11,19,27,0.5);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 6.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s;
}

.sat-filter-chip:hover {
  border-color: rgba(150,186,201,0.7);
  color: var(--text);
}

.sat-filter-chip.active {
  border-color: var(--alert);
  background: rgba(255,59,48,0.15);
  color: var(--alert);
  box-shadow: 0 0 6px rgba(255,59,48,0.3);
}

.sat-filter-chip.off {
  border-color: rgba(150,186,201,0.12);
  background: transparent;
  color: rgba(150,186,201,0.25);
}

.sat-filter-chip .chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.sat-filter-chip.active .chip-dot {
  box-shadow: 0 0 5px currentColor;
}

.sat-filter-chip.off .chip-dot {
  opacity: 0.3;
}

.bottom-dock {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 9px 18px 3px;
  border-top: 1px solid var(--line);
  background: var(--panel-strong);
  box-shadow: 0 -14px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px) saturate(135%);
}

.ticker-line {
  gap: 16px;
  min-height: 34px;
}

.ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  padding-right: 16px;
  border-right: 1px solid rgba(255, 59, 48, 0.35);
  color: var(--alert);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255, 59, 48, 0.55);
}

.ticker-scroller {
  position: relative;
  min-width: 0;
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: ticker-scroll 42s linear infinite;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-right: 30px;
  color: #d0dedb;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-item .tick-sep {
  color: var(--alert);
  font-size: 10px;
  padding-right: 30px;
  text-shadow: 0 0 8px rgba(255, 77, 61, 0.8);
}

.ticker-item.is-new {
  color: var(--gold);
  text-shadow: 0 0 14px rgba(255, 210, 122, 0.75);
}

.ticker-time {
  flex: 0 0 auto;
  margin-left: auto;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.12em;
}

/* ===== BREAKING NEWS — full TV takeover ===== */

.breaking-overlay {
  position: absolute;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.breaking-overlay.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 200ms ease;
}

.breaking-overlay.is-dismissing {
  opacity: 0;
  transition: opacity 560ms ease 140ms;
}

.breaking-overlay:not(.is-active) {
  transition: opacity 480ms ease;
}

/* Full-screen white flash on entry */
.breaking-flash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.99), rgba(255, 218, 172, 0.8));
  opacity: 0;
}

.breaking-flash.go {
  animation: breaking-flash 950ms ease-out forwards;
}

@keyframes breaking-flash {
  0% { opacity: 0.96; }
  50% { opacity: 0.3; }
  100% { opacity: 0; }
}

/* Persistent red alert wash behind everything */
.breaking-alertwash {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(64% 46% at 50% 16%, rgba(255, 52, 32, 0.22) 0%, transparent 68%),
    radial-gradient(130% 100% at 50% 42%, rgba(3, 5, 10, 0.6) 0%, transparent 100%);
}

.breaking-overlay.is-active .breaking-alertwash {
  animation: alertwash-in 500ms ease-out 260ms forwards;
}

@keyframes alertwash-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Light sweep across the screen */
.breaking-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 26%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-14deg);
}

.breaking-overlay.is-active .breaking-scan {
  animation: breaking-scan 1.15s ease-in-out infinite;
  animation-delay: 500ms;
}

@keyframes breaking-scan {
  0% { left: -30%; }
  100% { left: 110%; }
}

/* Full-width red masthead — the network bug */
.breaking-masthead {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 74px;
  background: linear-gradient(90deg, #b0120a 0%, #d81f12 38%, #ee2c1c 100%);
  box-shadow:
    0 18px 50px -12px rgba(216, 31, 18, 0.55),
    inset 0 -1px 0 rgba(255, 255, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-100%);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.breaking-overlay.is-active .breaking-masthead {
  transform: translateY(0);
}

.breaking-overlay.is-dismissing .breaking-masthead {
  transform: translateY(-100%);
  transition: transform 460ms ease-in;
}

.breaking-masthead::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 22px, rgba(255, 255, 255, 0.06) 22px 34px);
}

.breaking-masthead-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 26px;
}

.breaking-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  background: #fff;
  color: #c81e1e;
  font-family: var(--display);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: skewX(-6deg);
  animation: chip-pulse 0.9s steps(2, start) infinite;
}

@keyframes chip-pulse {
  0% { background: #fff; box-shadow: 0 0 0 0 rgba(255, 235, 230, 0.9); }
  100% { background: #ffe3de; box-shadow: 0 0 0 18px rgba(255, 235, 230, 0); }
}

.breaking-brand {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--display);
  font-size: clamp(13px, 1.6vw, 20px);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}

.breaking-live-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--alert);
  box-shadow: 0 0 12px rgba(255, 77, 61, 0.9);
  animation: live-pulse 0.8s ease-in-out infinite;
}

.breaking-masthead .breaking-live-dot {
  margin-left: auto;
  background: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.9);
}

/* Giant lower-third chyron */
.breaking-chyron {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 118px;
  padding: 26px 30px 30px;
  background: linear-gradient(180deg, rgba(24, 10, 12, 0.96) 0%, rgba(12, 6, 9, 0.97) 100%);
  border-top: 4px solid var(--alert);
  box-shadow:
    0 -30px 80px -24px rgba(0, 0, 0, 0.85),
    0 0 60px rgba(255, 59, 48, 0.2);
  transform: translateY(120%);
  transition: transform 640ms cubic-bezier(0.14, 1.08, 0.26, 1);
}

.breaking-overlay.is-active .breaking-chyron {
  transform: translateY(0);
}

.breaking-overlay.is-dismissing .breaking-chyron {
  transform: translateY(110%);
  transition: transform 420ms ease-in;
}

.breaking-chyron::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 7px;
  background: var(--alert);
  box-shadow: 0 0 22px rgba(255, 59, 48, 0.65);
}

.chyron-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #ffb4a8;
  font-family: var(--display);
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.breaking-chyron h2 {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(34px, 5.2vw, 68px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-shadow: 0 3px 30px rgba(255, 59, 48, 0.45);
  max-width: 22ch;
}

#breakingLocation {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: clamp(12px, 1.2vw, 15px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.breaking-rule {
  width: 26px;
  height: 1px;
  background: rgba(255, 180, 168, 0.6);
}

/* Cinematic TV texture: film grain + vignette over the whole frame */
.tv-grain {
  position: absolute;
  inset: 0;
  z-index: 55;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='160' height='160' filter='url(%23n)' opacity='1'/></svg>");
  mix-blend-mode: overlay;
}

.tv-vignette {
  position: absolute;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background: radial-gradient(118% 104% at 50% 46%, transparent 58%, rgba(1, 3, 6, 0.42) 100%);
}

/* UI fade during event focus: everything dims to 50%, brief stays full */
.topbar, .bottom-dock, .telemetry, .stage-caption, #satelliteLabels {
  transition: opacity 0.5s ease;
}

#eventBrief {
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

#satelliteLabels {
  position: absolute;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  overflow: hidden;
}

.sat-label {
  position: absolute;
  transform: translate(-50%, -100%);
  font-family: 'Barlow Condensed', 'Archivo', sans-serif;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(180, 210, 240, 0.65);
  text-shadow: 0 0 3px rgba(40, 120, 220, 0.5), 0 0 1px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  transition: opacity 0.3s;
}

.sat-label.major {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(100, 200, 255, 0.9), 0 0 3px rgba(0, 0, 0, 0.9);
}

.sat-label-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 3px;
  vertical-align: middle;
  box-shadow: 0 0 3px currentColor;
}

.sat-label.major .sat-label-dot {
  width: 5px;
  height: 5px;
  margin-right: 5px;
  box-shadow: 0 0 4px currentColor;
}

@media (max-width: 760px) {
  .topbar {
    padding: 20px 18px 54px;
  }

  h1 {
    font-size: 18px;
  }

  .topbar-readout {
    gap: 8px;
  }

  .topbar-readout .utc-readout {
    display: none;
  }

  .live-state {
    min-height: 24px;
    padding: 0 9px;
  }

  .stage-caption {
    display: none;
  }

  .event-brief {
    right: 18px;
    bottom: 58px;
    left: 18px;
    width: auto;
    padding: 15px 16px 13px;
  }

  .event-brief h2 {
    font-size: 21px;
  }

  .telemetry {
    top: 78px;
    right: 18px;
    bottom: auto;
    width: 164px;
    padding: 8px 11px;
    background: rgba(5, 8, 13, 0.6);
  }

  .bottom-dock {
    right: 0;
    left: 0;
    padding-right: 12px;
    padding-left: 12px;
  }

  .ticker-line {
    gap: 10px;
  }

  .ticker-label {
    font-size: 8px;
  }

  .ticker-time {
    display: none;
  }

  .breaking-masthead {
    height: 58px;
  }

  .breaking-masthead-inner {
    gap: 10px;
    padding: 0 14px;
  }

  .breaking-chip {
    padding: 7px 14px;
  }

  .breaking-chyron {
    bottom: 96px;
    padding: 15px 16px 18px;
  }
}

@media (max-width: 430px) {
  .brand-mark {
    display: none;
  }

  .eyebrow {
    font-size: 8px;
  }

  .live-state {
    font-size: 8px;
  }

  .brief-meta {
    gap: 7px;
  }

  .brief-meta strong {
    font-size: 9px;
  }

  .breaking-masthead {
    gap: 8px;
  }

  .breaking-brand {
    display: none;
  }
}