:root {
  --bg: #020910;
  --panel: rgba(4, 17, 28, .91);
  --panel-strong: rgba(5, 23, 37, .97);
  --text: #eefbff;
  --muted: #91b3c2;
  --cyan: #68e3ff;
  --cyan-strong: #09bde8;
  --blue: #2489ff;
  --yellow: #ffd457;
  --red: #ff6374;
  --green: #53e5a7;
  --line: rgba(112, 215, 255, .18);
  --line-strong: rgba(112, 215, 255, .48);
  --shadow: 0 24px 70px rgba(0, 0, 0, .48);
  --panel-width: 390px;
  --radius: 22px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html, body { width: 100%; min-height: 100%; margin: 0; background: var(--bg); color: var(--text); }
body { overflow: hidden; }
button, input, select { font: inherit; }
button, a, input, select { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed; z-index: 10000; top: 8px; left: 8px; padding: 10px 14px;
  border-radius: 10px; background: #fff; color: #00111b; transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.app-shell, .globe-stage, .globe-canvas { position: fixed; inset: 0; }
.globe-stage { overflow: hidden; background: radial-gradient(circle at 50% 48%, #0b3151 0, #030b13 43%, #010307 100%); }
.globe-canvas canvas { display: block; width: 100%; height: 100%; touch-action: none; }
.globe-canvas > div { pointer-events: none; }
.globe-canvas .map-marker { pointer-events: auto; }

.stage-vignette, .scanlines, .globe-hud { position: absolute; inset: 0; pointer-events: none; }
.stage-vignette { z-index: 2; background: radial-gradient(circle at 45% 45%, transparent 30%, rgba(0, 4, 9, .18) 70%, rgba(0, 2, 5, .72) 100%); }
.scanlines { z-index: 3; opacity: .09; background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(120, 225, 255, .14) 4px); mix-blend-mode: screen; }

.topbar {
  position: absolute; z-index: 20; top: 0; left: 0; right: 0; display: flex; align-items: flex-start;
  justify-content: space-between; gap: 20px; padding: calc(18px + var(--safe-top)) calc(20px + var(--safe-right)) 12px calc(22px + var(--safe-left));
  pointer-events: none;
}
.brand-lockup { display: grid; gap: 3px; min-width: 0; text-shadow: 0 2px 20px #000; }
.brand-kicker { font-size: .62rem; font-weight: 800; letter-spacing: .22em; color: var(--cyan); }
.brand-lockup h1 { margin: 0; font-size: clamp(1.55rem, 2.2vw, 2.45rem); line-height: 1; letter-spacing: -.045em; }
.edition-label { color: var(--muted); font-size: .72rem; letter-spacing: .08em; }
.system-indicators {
  pointer-events: auto; display: flex; align-items: center; gap: 9px; max-width: min(520px, 48vw); padding: 9px 13px;
  border: 1px solid var(--line); border-radius: 999px; background: rgba(2, 12, 20, .7); backdrop-filter: blur(14px);
  font-size: .73rem; color: var(--muted); box-shadow: 0 8px 28px rgba(0,0,0,.24);
}
.status-dot { width: 8px; height: 8px; flex: 0 0 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 14px currentColor; color: var(--yellow); }
.status-dot.is-online { background: var(--green); color: var(--green); }
.status-dot.is-warning { background: var(--yellow); color: var(--yellow); }
.status-dot.is-error { background: var(--red); color: var(--red); }
#utc-clock { color: var(--cyan); font-variant-numeric: tabular-nums; white-space: nowrap; }

.globe-hud { z-index: 4; margin: 88px calc(var(--panel-width) + 48px) 50px 34px; border: 1px solid rgba(81, 192, 236, .07); }
.hud-corner { position: absolute; width: 54px; height: 54px; border-color: var(--line-strong); border-style: solid; }
.hud-corner--tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.hud-corner--tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.hud-corner--bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.hud-corner--br { right: -1px; bottom: -1px; border-width: 0 2px 2px 0; }
/* Das Fadenkreuz markiert den tatsächlichen Projektionsmittelpunkt des 3D-Globus.
   Es darf nicht relativ zur verkleinerten HUD-Fläche mit Seitenpanel zentriert werden. */
.hud-reticle { position: fixed; top: 50%; left: 50%; width: 74px; height: 74px; border: 1px solid rgba(111, 227, 255, .18); border-radius: 50%; transform: translate(-50%, -50%); }
.hud-reticle::before, .hud-reticle::after { content: ""; position: absolute; top: 50%; left: 50%; background: rgba(111, 227, 255, .28); transform: translate(-50%, -50%); }
.hud-reticle::before { width: 108px; height: 1px; }
.hud-reticle::after { width: 1px; height: 108px; }

.map-legend, .live-summary {
  position: absolute; z-index: 20; left: calc(18px + var(--safe-left)); display: flex; flex-wrap: wrap; gap: 8px;
  max-width: calc(100vw - var(--panel-width) - 64px); pointer-events: none;
}
.map-legend { bottom: calc(18px + var(--safe-bottom)); }
.map-legend span, .live-summary span {
  display: inline-flex; align-items: center; gap: 7px; min-height: 31px; padding: 6px 10px; border: 1px solid var(--line);
  border-radius: 999px; background: rgba(2, 12, 20, .72); backdrop-filter: blur(12px); font-size: .67rem; color: var(--muted);
}
.legend-dot { width: 8px; height: 8px; border-radius: 50%; box-shadow: 0 0 10px currentColor; }
.legend-dot--live { color: var(--cyan); background: var(--cyan); }
.legend-dot--weather { color: var(--yellow); background: var(--yellow); }
.legend-dot--event { color: var(--red); background: var(--red); }
.live-summary { top: calc(100px + var(--safe-top)); bottom: auto; }
.live-summary strong { color: var(--text); font-variant-numeric: tabular-nums; }

.control-panel {
  position: absolute; z-index: 30; top: calc(82px + var(--safe-top)); right: calc(18px + var(--safe-right)); bottom: calc(18px + var(--safe-bottom));
  width: min(var(--panel-width), calc(100vw - 36px)); overflow: auto; overscroll-behavior: contain; scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel);
  box-shadow: var(--shadow); backdrop-filter: blur(22px) saturate(1.2); transition: transform .26s ease, opacity .26s ease;
}
.control-panel.is-collapsed { transform: translateX(calc(100% + 40px)); opacity: 0; pointer-events: none; }
.panel-section { padding: 17px; border-bottom: 1px solid rgba(114,214,255,.12); }
.panel-section:last-of-type { border-bottom: 0; }
.panel-grabber { display: none; }
.section-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 13px; }
.section-heading > div { min-width: 0; }
.section-index { display: block; font-size: .55rem; color: var(--cyan); letter-spacing: .18em; }
.section-heading h2 { margin: 2px 0 0; font-size: .98rem; line-height: 1.25; }
.icon-button { flex: 0 0 42px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: rgba(38,107,139,.12); color: var(--cyan); }
.icon-button:hover, .icon-button:focus-visible { border-color: var(--line-strong); background: rgba(38,107,139,.25); }
.field-label { display: block; margin-bottom: 7px; font-size: .74rem; font-weight: 750; color: var(--muted); }
.search-row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 8px; }
input, select { width: 100%; min-height: 44px; border: 1px solid var(--line); border-radius: 11px; background: rgba(2,12,20,.72); color: var(--text); padding: 0 12px; outline: 0; }
input:focus, select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(104,227,255,.12); }
input::placeholder { color: #7694a3; }
.search-row button, .primary-link, .secondary-link, .modal-actions button {
  min-height: 44px; border: 0; border-radius: 11px; padding: 0 14px; background: linear-gradient(135deg, var(--cyan), #2c83ff);
  color: #00121e; font-weight: 850; text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
}
.search-results { display: grid; gap: 6px; margin-top: 9px; }
.search-result { text-align: left; border: 1px solid var(--line); border-radius: 10px; background: rgba(14,46,63,.55); color: var(--text); padding: 9px 10px; }
.search-result strong, .search-result small { display: block; }
.search-result small { margin-top: 2px; color: var(--muted); font-size: .67rem; }
.focus-weather { margin-top: 10px; padding: 12px; border: 1px solid rgba(255,212,87,.28); border-radius: 12px; background: rgba(91,70,8,.15); }
.focus-weather__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.focus-weather__temp { font-size: 1.45rem; font-weight: 850; }
.focus-weather p { margin: 6px 0 0; color: var(--muted); font-size: .71rem; line-height: 1.45; }

.section-meta { display: flex; justify-content: space-between; gap: 10px; margin: 10px 0 5px; font-size: .69rem; color: var(--muted); }
.source-note, .data-note { margin: 8px 0 12px; font-size: .69rem; line-height: 1.45; color: var(--muted); }
.data-note { padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: rgba(5,29,43,.48); }
.data-note.is-warning { border-color: rgba(255,212,87,.35); color: #e6d8a4; }
.data-note.is-error { border-color: rgba(255,99,116,.4); color: #ffb7c0; }
.video-list { display: grid; gap: 9px; min-height: 84px; }
.video-card, .source-card {
  width: 100%; display: grid; grid-template-columns: 88px minmax(0,1fr); gap: 10px; padding: 7px; text-align: left;
  border: 1px solid rgba(114,214,255,.15); border-radius: 12px; background: rgba(2,13,21,.72); color: var(--text);
}
.video-card:hover, .source-card:hover { border-color: var(--line-strong); background: rgba(11,42,59,.82); }
.video-card__thumb { position: relative; width: 88px; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; background: #06111a; }
.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card__thumb span { position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.2rem; text-shadow: 0 2px 8px #000; }
.video-card__body { min-width: 0; display: grid; align-content: center; gap: 4px; }
.video-card__body strong { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; font-size: .75rem; line-height: 1.3; }
.video-card__body small { color: var(--muted); font-size: .63rem; }
.source-card { grid-template-columns: 42px minmax(0,1fr); align-items: center; }
.source-card__icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--cyan); font-weight: 900; }
.source-card strong, .source-card small { display: block; }
.source-card small { margin-top: 3px; color: var(--muted); font-size: .64rem; }
.list-state { padding: 16px 10px; border: 1px dashed var(--line); border-radius: 11px; text-align: center; color: var(--muted); font-size: .72rem; line-height: 1.45; }

.filter-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip { min-height: 39px; padding: 0 11px; border: 1px solid var(--line); border-radius: 999px; background: rgba(3,18,29,.72); color: var(--muted); font-size: .7rem; }
.filter-chip.is-active { border-color: var(--line-strong); background: rgba(24,97,130,.31); color: var(--text); }
.event-list { display: grid; gap: 7px; max-height: 160px; overflow: auto; }
.event-item { width: 100%; padding: 9px 10px; border: 1px solid rgba(255,99,116,.18); border-radius: 10px; background: rgba(61,10,18,.17); text-align: left; color: var(--text); }
.event-item strong, .event-item small { display: block; }
.event-item strong { font-size: .7rem; line-height: 1.35; }
.event-item small { margin-top: 3px; color: var(--muted); font-size: .61rem; }

.jarvis-console { background: linear-gradient(135deg, rgba(0,113,158,.13), transparent 72%); }
.voice-state { font-size: .66rem; color: var(--green); }
#jarvis-text { margin: 0; min-height: 42px; font-size: .76rem; line-height: 1.52; color: #bdd9e5; }
.toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 55px; margin-top: 10px; padding-top: 9px; border-top: 1px solid rgba(114,214,255,.1); }
.toggle-row span { display: grid; gap: 2px; }
.toggle-row strong { font-size: .75rem; }
.toggle-row small { color: var(--muted); font-size: .64rem; }
.toggle-row input { position: relative; flex: 0 0 48px; width: 48px; min-height: 26px; height: 26px; appearance: none; border-radius: 999px; padding: 0; background: rgba(72,100,113,.5); }
.toggle-row input::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #d5e7ef; transition: transform .18s ease; }
.toggle-row input:checked { background: rgba(0,200,255,.32); border-color: var(--cyan); }
.toggle-row input:checked::after { transform: translateX(21px); background: var(--cyan); }

.panel-footer { padding: 12px 16px 15px; color: #6f909f; font-size: .6rem; }
.panel-footer nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 9px; }
.panel-footer a { color: #96c5d7; text-decoration: none; }
.panel-footer a:hover { color: var(--cyan); }
.panel-toggle {
  position: absolute; z-index: 40; right: calc(20px + var(--safe-right)); bottom: calc(20px + var(--safe-bottom)); display: none;
  align-items: center; gap: 7px; min-height: 44px; padding: 0 13px; border: 1px solid var(--line-strong); border-radius: 999px;
  background: rgba(3,20,32,.92); color: var(--text); box-shadow: var(--shadow); backdrop-filter: blur(14px); font-size: .69rem;
}

/* HTML markers on the globe */
.map-marker { --marker-color: var(--cyan); position: relative; transform: translate(-50%, -50%); user-select: none; }
.map-marker[hidden] { display: none !important; }
.marker-button { position: relative; display: flex; align-items: center; gap: 5px; border: 0; background: transparent; color: #fff; padding: 0; filter: drop-shadow(0 4px 8px rgba(0,0,0,.8)); }
.marker-disc { width: 38px; height: 38px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.88); border-radius: 50%; background: color-mix(in srgb, var(--marker-color) 38%, rgba(2,13,21,.94)); box-shadow: 0 0 0 3px rgba(1,9,15,.72), 0 0 18px var(--marker-color); font-size: 1rem; }
.marker-badge { position: absolute; top: -7px; right: -9px; min-width: 20px; height: 20px; display: grid; place-items: center; padding: 0 5px; border: 2px solid #fff; border-radius: 999px; background: var(--red); font-size: .58rem; font-weight: 900; }
.marker-label { max-width: 120px; padding: 5px 8px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(2,12,20,.86); color: #eafaff; font-size: .61rem; font-weight: 780; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.map-marker--country .marker-disc { width: 44px; height: 44px; font-size: 1.12rem; }
.map-marker--country .marker-label { color: var(--cyan); }
.map-marker--region .marker-disc { width: 40px; height: 40px; }
.map-marker--weather { --marker-color: var(--yellow); }
.map-marker--weather .marker-button { gap: 3px; }
.map-marker--weather .marker-disc { width: 30px; height: 30px; border-width: 1px; font-size: .78rem; box-shadow: 0 0 12px rgba(255,212,87,.45); }
.map-marker--weather .marker-label { padding: 4px 6px; color: #fff1af; font-size: .59rem; }
.map-marker--event { --marker-color: var(--red); }
.map-marker--event .marker-disc { width: 29px; height: 29px; border-width: 1px; animation: pulse-marker 1.8s ease-in-out infinite; }
.map-marker--event .marker-label { color: #ffc4cc; }
@keyframes pulse-marker { 50% { transform: scale(1.12); box-shadow: 0 0 25px var(--marker-color); } }

.modal-backdrop { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: max(18px, var(--safe-top)) max(18px, var(--safe-right)) max(18px, var(--safe-bottom)) max(18px, var(--safe-left)); background: rgba(0,3,7,.78); backdrop-filter: blur(12px); }
.source-modal { position: relative; width: min(860px, 100%); max-height: min(94dvh, 800px); overflow: auto; border: 1px solid var(--line-strong); border-radius: 22px; background: var(--panel-strong); box-shadow: 0 32px 100px #000; }
.modal-close { position: absolute; z-index: 3; top: 12px; right: 12px; width: 42px; height: 42px; border: 1px solid rgba(255,99,116,.55); border-radius: 50%; background: rgba(53,5,11,.92); color: #fff; font-size: 1.5rem; }
.modal-header { padding: 24px 68px 18px 24px; }
.modal-kicker { color: var(--cyan); font-size: .62rem; font-weight: 850; letter-spacing: .18em; }
.modal-header h2 { margin: 6px 0 7px; font-size: clamp(1.25rem, 3vw, 2rem); line-height: 1.15; }
.modal-header p { margin: 0; color: var(--muted); line-height: 1.48; }
.media-frame { position: relative; width: calc(100% - 48px); aspect-ratio: 16/9; margin: 0 24px; overflow: hidden; border: 1px solid rgba(114,214,255,.2); border-radius: 15px; background: #01070d; }
.media-frame iframe, .media-frame img { width: 100%; height: 100%; border: 0; object-fit: cover; }
.media-placeholder { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 8px; padding: 20px; text-align: center; color: var(--muted); }
.media-placeholder span { font-size: 2.2rem; color: var(--cyan); }
.modal-meta { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 24px 0; }
.meta-pill { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .66rem; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 10px; padding: 18px 24px 24px; }
.secondary-link, .modal-actions button { border: 1px solid var(--line); background: rgba(15,49,69,.75); color: var(--text); }

.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.noscript-message { position: fixed; z-index: 9999; inset: 20px; display: grid; place-items: center; border: 1px solid var(--red); border-radius: 16px; background: #130808; color: #fff; }

@media (max-width: 1260px) and (min-width: 768px) {
  :root { --panel-width: 350px; }
  .panel-toggle { display: inline-flex; }
  .globe-hud { margin-right: calc(var(--panel-width) + 30px); }
}

@media (max-width: 767.98px) {
  :root { --radius: 18px; }
  body { overflow: hidden; }
  .topbar { padding: calc(9px + var(--safe-top)) calc(11px + var(--safe-right)) 8px calc(11px + var(--safe-left)); }
  .brand-lockup { max-width: calc(100vw - 120px); }
  .brand-kicker { font-size: .47rem; letter-spacing: .12em; }
  .brand-lockup h1 { font-size: clamp(1rem, 5.3vw, 1.35rem); }
  .edition-label { display: none; }
  .system-indicators { max-width: 112px; padding: 7px 9px; font-size: .57rem; gap: 6px; }
  #system-status { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  #utc-clock { display: none; }
  .globe-hud { margin: 62px 10px 90px; }
  .live-summary { top: calc(61px + var(--safe-top)); left: calc(8px + var(--safe-left)); max-width: calc(100vw - 16px); }
  .live-summary span { min-height: 27px; padding: 4px 7px; font-size: .58rem; }
  .map-legend { left: calc(8px + var(--safe-left)); bottom: calc(64px + var(--safe-bottom)); max-width: calc(100vw - 16px); gap: 5px; }
  .map-legend span { min-height: 27px; padding: 4px 7px; font-size: .56rem; }
  .control-panel { top: auto; right: 0; bottom: 0; left: 0; width: 100%; max-height: min(72dvh, 620px); border-width: 1px 0 0; border-radius: 20px 20px 0 0; padding-bottom: var(--safe-bottom); transform: translateY(0); }
  .control-panel.is-collapsed { transform: translateY(calc(100% + 18px)); opacity: 0; }
  .panel-grabber { display: block; width: 46px; height: 4px; margin: 8px auto -2px; border-radius: 99px; background: rgba(183,225,242,.35); }
  .panel-section { padding: 14px; }
  .panel-toggle { display: inline-flex; right: calc(9px + var(--safe-right)); bottom: calc(10px + var(--safe-bottom)); }
  .marker-label { display: none; }
  .map-marker--country .marker-label { display: block; max-width: 82px; }
  .marker-disc { width: 35px; height: 35px; }
  .map-marker--country .marker-disc { width: 40px; height: 40px; }
  .video-card { grid-template-columns: 78px minmax(0,1fr); }
  .video-card__thumb { width: 78px; }
  .source-modal { max-height: 96dvh; border-radius: 18px; }
  .modal-header { padding: 20px 58px 14px 16px; }
  .media-frame { width: calc(100% - 24px); margin-inline: 12px; border-radius: 11px; }
  .modal-meta { padding-inline: 14px; }
  .modal-actions { padding: 14px; }
  .modal-actions > * { flex: 1 1 180px; }
}

@media (max-width: 767.98px) and (orientation: landscape) {
  .topbar { padding-top: calc(4px + var(--safe-top)); }
  .brand-kicker, .live-summary, .map-legend { display: none; }
  .brand-lockup h1 { font-size: 1rem; }
  .control-panel { left: auto; right: 0; width: min(390px, 56vw); max-height: 100dvh; border-left: 1px solid var(--line); border-radius: 18px 0 0 0; }
  .control-panel.is-collapsed { transform: translateX(calc(100% + 18px)); }
  .globe-hud { margin: 46px calc(min(390px, 56vw) + 8px) 20px 8px; }
  .panel-toggle { bottom: calc(7px + var(--safe-bottom)); }
  .panel-section { padding: 11px 13px; }
  .section-heading { margin-bottom: 9px; }
  .source-note { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .scanlines { display: none; }
}

/* Senderpositionen: Der geographische Punkt liegt exakt im Zentrum der Scheibe.
   Beschriftungslängen verschieben die Koordinate dadurch nicht mehr. */
.map-marker {
  width: 0;
  height: 0;
  transform: none;
  overflow: visible;
}
.marker-button {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: max-content;
  max-width: none;
}
.marker-disc { flex: 0 0 auto; }
.marker-badge { left: 27px; right: auto; }
.map-marker--country .marker-badge { left: 31px; }
.map-marker--region .marker-badge { left: 29px; }

/* Jarvis-Sprachpaket */
.jarvis-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.jarvis-actions button {
  flex: 1 1 120px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(5, 30, 44, .78);
  color: var(--text);
  font-size: .67rem;
  font-weight: 760;
}
.jarvis-actions button:hover { border-color: var(--line-strong); background: rgba(15, 60, 81, .82); }
.jarvis-actions button:disabled { opacity: .45; cursor: not-allowed; }
.jarvis-privacy { margin: 9px 0 0; color: var(--muted); font-size: .6rem; line-height: 1.45; }
.voice-state[data-state="speaking"] { color: var(--cyan); text-shadow: 0 0 10px rgba(47, 221, 255, .55); }
.voice-state[data-state="loading"] { color: var(--yellow); }
.voice-state[data-state="warning"], .voice-state[data-state="error"] { color: var(--red); }
.voice-state[data-state="muted"] { color: var(--muted); }

@media (max-width: 767.98px) {
  .jarvis-actions button { min-height: 42px; }
}


/* Intelligente Beschriftungen: Der geografische Punkt bleibt sichtbar,
   überlappende Texte werden automatisch reduziert und bei Fokus eingeblendet. */
.marker-label { transition: opacity .16s ease, visibility .16s ease, transform .16s ease; }
.map-marker.is-label-collapsed .marker-label {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-4px);
}
.map-marker.is-label-collapsed:hover .marker-label,
.map-marker.is-label-collapsed:focus-within .marker-label {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.marker-button:focus-visible .marker-disc {
  outline: 3px solid #fff;
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(0, 218, 255, .28), 0 0 24px var(--marker-color);
}
.marker-button:focus-visible .marker-label { border-color: var(--cyan); }
.live-summary .summary-mode strong { min-width: 52px; }
