@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");
:root {
  color-scheme: dark;
  --glass: rgba(18, 34, 34, 0.91);
  --line: rgba(217, 240, 227, 0.14);
  --text: #f0f5f0;
  --muted: #a8bbb5;
  --lime: #dbf5a1;
  --dark: #132a29;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--text);
  background: #172e33;
  font:
    14px/1.45 "DM Sans",
    sans-serif;
  overflow: hidden;
  width: 100vw;
  height: 100dvh;
}
button,
input,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}
button {
  border: 0;
  background: none;
}
#scene {
  position: fixed;
  inset: 0;
}
#scene canvas {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
}
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    #0c20234d,
    transparent 22%,
    transparent 74%,
    #061a2577
  );
}
.glass {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  box-shadow: 0 15px 60px #0003;
}
.topbar {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 76px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(#112a2ee8, #112a2e66, transparent);
}
.brand {
  font: 800 25px/1 Manrope;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.brand b {
  font-size: 37px;
  color: var(--lime);
  margin-right: 6px;
}
.brand span {
  font-weight: 400;
}
.brand i {
  font: 600 10px "DM Sans";
  font-style: normal;
  letter-spacing: 1.5px;
  border: 1px solid var(--line);
  padding: 6px 8px;
  border-radius: 5px;
  margin-left: 14px;
  color: var(--lime);
}
nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
nav a {
  font-size: 14px;
  color: #c1d1cc;
}
nav .selected {
  color: var(--lime);
}
.iconbtn {
  height: 36px;
  min-width: 36px;
  border-radius: 7px;
  background: #ffffff0b;
  font-size: 23px;
}
.iconbtn:hover {
  background: #ffffff18;
}
.sidebar {
  position: fixed;
  z-index: 10;
  left: 24px;
  top: 91px;
  bottom: 205px;
  width: 328px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.side-head {
  padding: 24px 22px 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.side-head .iconbtn {
  font-size: 21px;
  min-width: 29px;
  height: 29px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.7px;
  color: var(--lime);
}
h1 {
  font: 500 28px/1.22 Manrope;
  letter-spacing: -1px;
  margin: 10px 0 0;
}
h2 {
  font: 600 26px/1.3 Manrope;
  letter-spacing: -0.8px;
}
h3 {
  font: 600 18px/1.3 Manrope;
  margin: 6px 0 14px;
}
.search {
  margin: 0 18px;
  display: flex;
  align-items: center;
  background: #ffffff08;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px;
  gap: 9px;
}
.search span {
  font-size: 21px;
  line-height: 1;
}
.search input {
  width: 100%;
  background: transparent;
  color: white;
  border: 0;
  outline: 0;
  min-width: 0;
}
.search input::placeholder {
  color: #9aaea8;
  font-size: 13px;
}
.filter-row {
  display: flex;
  margin: 11px 18px;
  gap: 7px;
}
select {
  min-width: 0;
  width: 50%;
  background: #213837;
  border: 1px solid var(--line);
  color: #d4e1dc;
  border-radius: 6px;
  padding: 9px 4px;
  font-size: 12px;
}
.list-caption {
  display: flex;
  justify-content: space-between;
  margin: 5px 20px 12px;
  color: var(--muted);
  font-size: 11px;
}
#route-list {
  overflow-y: auto;
  flex: 1;
  padding: 0 10px;
  scrollbar-width: thin;
  scrollbar-color: #537268 transparent;
}
.route-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 13px 10px;
  border-radius: 8px;
  margin-bottom: 3px;
  border: 1px solid transparent;
  border-bottom-color: #ffffff0a;
}
.route-item:hover {
  background: #ffffff07;
}
.route-item.active {
  background: #dff6a614;
  border-color: #c5e59655;
}
.route-item .name {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  line-height: 1.4;
  color: #e9f0ec;
}
.trail-color {
  height: 5px;
  width: 18px;
  flex-shrink: 0;
  border-radius: 1px;
  margin-top: 7px;
  background: var(--c);
  box-shadow:
    0 -2px #eee,
    0 2px #eee;
}
.route-item .meta {
  display: flex;
  gap: 12px;
  margin: 7px 0 0 27px;
  font-size: 11px;
  color: var(--muted);
}
.side-footer {
  border-top: 1px solid var(--line);
  padding: 12px 18px;
  font-size: 10px;
  color: var(--muted);
}
.side-footer button {
  display: block;
  color: var(--lime);
  padding: 5px 0 0;
  font-size: 12px;
}
.expand {
  position: fixed;
  left: 24px;
  top: 91px;
  border-radius: 9px;
  padding: 12px 17px;
  z-index: 10;
}
.map-tools {
  position: fixed;
  right: 24px;
  top: 92px;
  border-radius: 10px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  z-index: 9;
}
.map-tools button {
  width: 40px;
  height: 41px;
  font-size: 23px;
  border-bottom: 1px solid var(--line);
}
.map-tools button:last-child {
  border: none;
}
.map-tools button:hover {
  color: var(--lime);
  background: #ffffff08;
}
.map-tools #north {
  font-size: 14px;
  color: var(--lime);
  font-weight: 700;
}
.layer-panel {
  position: fixed;
  right: 24px;
  top: 327px;
  border-radius: 11px;
  padding: 13px 14px;
  display: block;
  gap: 10px;
  z-index: 9;
}
.layer-panel {
  width: 216px;
  top: 285px;
  max-height: calc(100dvh - 455px);
  overflow: auto;
  scrollbar-width: thin;
}
.layer-panel summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}
.layer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 15px;
}
.layer-panel .layer-grid label,
.layer-panel .explore-actions label {
  font-size: 14px;
}
.explore-actions {
  border-top: 1px solid var(--line);
  margin-top: 14px;
  padding-top: 12px;
  display: grid;
  gap: 12px;
}
.explore-actions .secondary {
  text-align: left;
  padding: 5px 0;
  font-size: 13px;
}
#opacity-wrap input {
  width: 100%;
  accent-color: var(--lime);
}
.underground-notice {
  position: fixed;
  z-index: 14;
  left: 50%;
  bottom: 156px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  border-radius: 12px;
  border-color: #e6b78266;
  color: #ffd9b1;
  max-width: calc(100vw - 32px);
  font-size: 13px;
}
.underground-notice small {
  color: #d3bca7;
  font-size: 12px;
}
.underground-notice button {
  flex-shrink: 0;
}
#explore-detail {
  z-index: 15;
}
.flight-box {
  margin: 18px 0;
  padding: 14px;
  background: #081e2480;
  border: 1px solid #dff4a433;
  border-radius: 10px;
}
.flight-box .eyebrow {
  margin-bottom: 12px;
}
.flight-endpoints {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.flight-endpoints label {
  min-width: 0;
}
.flight-box input[type="number"],
#geo-search {
  width: 100%;
  background: #0d2228;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 9px;
  border-radius: 6px;
  margin: 5px 0 12px;
}
.flight-box label {
  font-size: 13px;
  display: block;
  color: var(--muted);
}
.flight-box select {
  width: 100%;
  margin-top: 5px;
}
.flight-box input[type="range"] {
  width: 100%;
  margin: 16px 0 7px;
  accent-color: var(--lime);
}
.flight-box output {
  display: block;
  font-size: 13px;
  color: #dff4a4;
  min-height: 38px;
}
.flight-box .step-controls {
  align-items: stretch;
}
.flight-box .action {
  margin: 0;
  padding: 10px;
  flex: 1;
  font-size: 13px;
}
.flight-box p {
  font-size: 12px;
  margin-bottom: 0;
}
.explore-list {
  display: grid;
  margin: 14px 0;
}
.explore-list button {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  font-size: 15px;
}
.explore-list button:hover {
  color: var(--lime);
}
.explore-list small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}
#camera-frame iframe {
  border: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 14px;
  border-radius: 8px;
}
.geo-valley {
  color: #e8deb3;
  font-style: italic;
}
.geo-river,
.geo-lake {
  color: #b6efff;
  font-style: italic;
}
.geo-hut {
  color: #f4dfb5;
}
[hidden] {
  display: none !important;
}
@media (max-width: 900px) {
  .layer-panel {
    top: 270px !important;
    right: 12px;
    width: 182px;
    max-height: calc(100dvh - 435px);
  }
  .layer-panel:not([open]) {
    width: 122px;
  }
  .layer-panel input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }
  .underground-notice {
    left: 12px;
    right: 12px;
    transform: none;
    bottom: 144px;
    max-width: none;
    gap: 8px;
    padding: 8px;
    font-size: 11px;
  }
  .underground-notice small {
    font-size: 11px;
  }
  .underground-notice button {
    font-size: 12px;
  }
}
.layer-panel label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: #cad8d2;
  cursor: pointer;
}
input[type="checkbox"] {
  accent-color: var(--lime);
  width: 14px;
  height: 14px;
  margin: 0;
}
.detail {
  position: fixed;
  right: 88px;
  top: 92px;
  width: 315px;
  max-height: calc(100dvh - 296px);
  overflow: auto;
  z-index: 12;
  border-radius: 14px;
  padding: 21px;
  scrollbar-width: thin;
}
.detail .close {
  position: absolute;
  right: 10px;
  top: 8px;
  color: var(--muted);
  font-size: 22px;
}
.detail h2 {
  font-size: 21px;
  padding-right: 10px;
  margin: 10px 0 14px;
}
.detail .stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  margin-bottom: 12px;
}
.detail .stats strong {
  font: 600 22px Manrope;
  display: block;
}
.detail .stats small {
  color: var(--muted);
  font-size: 11px;
}
.badge {
  display: inline-block;
  background: #d5eca519;
  border: 1px solid #d5eca530;
  color: var(--lime);
  border-radius: 5px;
  padding: 5px 8px;
  font-size: 12px;
}
.detail p {
  font-size: 12px;
  color: var(--muted);
}
.detail .warning {
  border-left: 2px solid #e7c78a;
  padding: 6px 10px;
  color: #e7d3ad;
  background: #ffeabc07;
}
.action {
  background: var(--lime);
  color: #203629;
  padding: 11px 14px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  width: 100%;
  margin: 7px 0;
}
.secondary {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 9px 11px;
  font-size: 12px;
  color: #d8e4de;
}
.detail select {
  width: 100%;
  margin: 8px 0;
}
.detail .step-controls {
  display: flex;
  gap: 7px;
  margin-top: 12px;
}
.step-controls button {
  flex: 1;
}
.detail .waypoint {
  background: #ffffff08;
  border-radius: 8px;
  padding: 12px;
  margin: 10px 0;
}
.waypoint strong {
  font-size: 14px;
  display: block;
}
.waypoint span {
  font-size: 12px;
  color: var(--muted);
}
.detail .progress {
  width: 100%;
  accent-color: var(--lime);
  margin-top: 10px;
}
.detail .source {
  font-size: 11px;
  color: var(--muted);
  text-decoration: underline;
}
.profile {
  width: 100%;
  height: 70px;
  display: block;
  margin: 12px 0;
}
.weather-pop {
  position: fixed;
  top: 92px;
  left: calc(50% - 130px);
  padding: 19px;
  z-index: 15;
  border-radius: 12px;
  width: 260px;
}
.weather-pop .iconbtn {
  position: absolute;
  right: 6px;
  top: 6px;
}
.weather-pop h3 {
  padding-right: 20px;
}
.weather-pop .temp {
  font: 500 36px Manrope;
  color: var(--lime);
}
.weather-pop p {
  color: var(--muted);
  font-size: 12px;
  margin: 7px 0;
}
.scene-caption {
  position: fixed;
  left: 380px;
  bottom: 213px;
  pointer-events: none;
  z-index: 2;
  text-shadow: 0 2px 10px #0008;
}
.scene-caption .eyebrow {
  font-size: 10px;
  color: #e1ecdd;
  letter-spacing: 2.5px;
}
.scene-caption p {
  font-size: 12px;
  color: #c6d4ca;
  margin: 5px 0;
}
.gesture {
  font-size: 10px;
  color: #aabcb5;
  margin-top: 10px;
}
.timeline {
  position: fixed;
  bottom: 30px;
  left: 24px;
  right: 24px;
  z-index: 11;
  border-radius: 13px;
  padding: 16px 22px 12px;
}
.timeline-main {
  display: flex;
  align-items: center;
  gap: 17px;
}
.sun-icon {
  font-size: 33px;
  color: #f9d88b;
  margin-right: 3px;
}
.time-block {
  flex: 1;
}
.time-block .eyebrow {
  font-size: 9px;
  color: var(--muted);
}
.time-block > div {
  display: flex;
  gap: 16px;
  align-items: center;
}
.time-block time {
  font: 500 25px/1.4 Manrope;
  letter-spacing: -0.7px;
}
.time-block #sun-position {
  font-size: 12px;
  color: #bacbc1;
}
.live {
  font-size: 12px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.live.active {
  background: #dff5a319;
  color: var(--lime);
  border-color: #def7a64d;
}
input[type="date"] {
  background: #ffffff05;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 9px;
  color: #dae4df;
  font-size: 12px;
}
.slider-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 7px;
  font-size: 10px;
  color: var(--muted);
}
input[type="range"] {
  accent-color: var(--lime);
  cursor: pointer;
}
.slider-row input {
  flex: 1;
  min-width: 0;
  height: 17px;
}
.timeline-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 10px;
  color: var(--muted);
  padding-top: 5px;
}
.attribution {
  position: fixed;
  bottom: 8px;
  right: 26px;
  display: flex;
  gap: 7px;
  font-size: 9px;
  color: #b7c6bd;
  z-index: 12;
}
.loading {
  position: fixed;
  z-index: 30;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px 35px;
  border-radius: 16px;
  text-align: center;
  width: min(440px, calc(100vw - 40px));
}
.loading h2 {
  font-size: 23px;
}
.loading p {
  font-size: 14px;
  color: var(--muted);
}
.loading a {
  font-size: 12px;
  color: var(--lime);
}
.spinner {
  width: 33px;
  height: 33px;
  border: 2px solid #ffffff22;
  border-top-color: var(--lime);
  border-radius: 50%;
  margin: auto;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
#labels {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.map-label {
  position: absolute;
  white-space: nowrap;
  transform: translate(-50%, -100%);
  font-size: 11px;
  color: #fff;
  text-shadow:
    0 1px 4px #000,
    0 0 12px #000;
  font-weight: 600;
  text-align: center;
}
.map-label small {
  display: block;
  font-size: 9px;
  color: #d6e1d8;
  font-weight: 400;
}
.map-label.hut {
  color: var(--lime);
}
dialog {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #182e2c;
  color: var(--text);
  max-width: 650px;
  width: calc(100vw - 30px);
  max-height: 85dvh;
  padding: 30px;
  overflow: auto;
  line-height: 1.6;
}
dialog::backdrop {
  background: #091b26aa;
  backdrop-filter: blur(5px);
}
dialog .iconbtn {
  float: right;
}
dialog p {
  color: #c3d0c8;
  font-size: 14px;
}
dialog a {
  color: var(--lime);
  text-decoration: underline;
}
dialog h3 {
  margin-top: 23px;
}
button:disabled {
  opacity: 0.35;
  cursor: default;
}
[hidden] {
  display: none !important;
}
@media (max-width: 1100px) {
  .sidebar {
    width: 290px;
  }
  .detail {
    right: 83px;
    width: 285px;
  }
  .scene-caption {
    left: 338px;
  }
  .time-block #sun-position {
    font-size: 10px;
  }
  .topbar {
    padding: 0 22px;
  }
  .brand i {
    display: none;
  }
}
@media (max-width: 760px) {
  .topbar {
    height: 63px;
    padding: 0 15px;
    gap: 10px;
  }
  .brand {
    font-size: 21px;
  }
  .brand b {
    font-size: 29px;
  }
  .topbar nav {
    gap: 14px;
  }
  .topbar nav a {
    font-size: 11px;
  }
  .topbar nav a.selected {
    display: none;
  }
  .topbar .iconbtn {
    font-size: 20px;
    min-width: 28px;
  }
  .sidebar {
    left: 12px;
    top: 76px;
    bottom: auto;
    max-height: 47dvh;
    width: calc(100vw - 82px);
    border-radius: 11px;
  }
  .side-head {
    padding: 14px 16px 10px;
  }
  h1 {
    font-size: 20px;
    line-height: 1.25;
    margin-top: 5px;
  }
  h1 br {
    display: none;
  }
  .side-head .eyebrow {
    font-size: 8px;
  }
  .search {
    margin: 0 12px;
    padding: 7px;
  }
  .filter-row {
    margin: 8px 12px;
  }
  .filter-row select {
    padding: 7px 4px;
    font-size: 11px;
  }
  .list-caption {
    margin: 2px 14px 7px;
  }
  .route-item {
    padding: 10px 7px;
  }
  .route-item .name {
    font-size: 13px;
  }
  .side-footer {
    padding: 8px 13px;
  }
  .side-footer > span {
    display: none;
  }
  .expand {
    left: 12px;
    top: 76px;
    padding: 9px 13px;
  }
  .map-tools {
    right: 12px;
    top: 76px;
    padding: 3px;
  }
  .map-tools button {
    width: 34px;
    height: 34px;
    font-size: 21px;
  }
  .layer-panel {
    right: 12px;
    top: 268px;
    padding: 10px;
    gap: 9px;
  }
  .layer-panel label {
    font-size: 10px;
    gap: 5px;
  }
  .layer-panel input {
    width: 12px;
    height: 12px;
  }
  .detail {
    left: 12px;
    right: auto;
    top: 76px;
    width: calc(100vw - 82px);
    max-height: calc(100dvh - 257px);
    padding: 17px;
  }
  .detail h2 {
    font-size: 19px;
  }
  .detail .stats strong {
    font-size: 20px;
  }
  .timeline {
    left: 10px;
    right: 10px;
    bottom: 26px;
    padding: 11px 13px 10px;
  }
  .timeline-main {
    gap: 7px;
    flex-wrap: wrap;
  }
  .sun-icon {
    font-size: 25px;
  }
  .time-block {
    min-width: 135px;
  }
  .time-block time {
    font-size: 22px;
  }
  .time-block > div {
    gap: 10px;
  }
  .time-block #sun-position {
    display: none;
  }
  .time-block .eyebrow {
    font-size: 8px;
  }
  .timeline input[type="date"] {
    font-size: 11px;
    padding: 6px;
    width: 116px;
  }
  .timeline .iconbtn {
    min-width: 27px;
    font-size: 19px;
  }
  .live {
    padding: 7px 9px;
    font-size: 11px;
  }
  .slider-row {
    gap: 8px;
  }
  .timeline-meta {
    display: block;
    font-size: 9px;
  }
  .timeline-meta span {
    display: block;
    margin-top: 2px;
  }
  .scene-caption {
    left: 18px;
    bottom: 196px;
  }
  .scene-caption p {
    font-size: 10px;
    max-width: 230px;
  }
  .scene-caption .eyebrow {
    font-size: 8px;
  }
  .gesture {
    font-size: 9px;
    max-width: 230px;
  }
  .attribution {
    font-size: 8px;
    bottom: 8px;
    right: 13px;
  }
  .weather-pop {
    left: 16px;
    top: 78px;
    width: calc(100vw - 94px);
  }
  .map-label {
    font-size: 10px;
  }
  .map-label small {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .spinner {
    animation: none;
  }
}
.map-compass{position:fixed;right:23px;top:365px;width:84px;height:108px;z-index:9;border-radius:16px;padding:7px;pointer-events:none;text-align:center;color:#e8f3df}.map-compass #compass-rose{width:70px;height:70px;position:relative}.map-compass b{position:absolute;font-size:14px;line-height:18px}.cn{top:0;left:29px;color:#ffaaa1}.cs{bottom:0;left:29px}.ce{right:0;top:26px}.cw{left:0;top:26px}.compass-needle{position:absolute;inset:19px;font-size:28px;color:#e1f59e}.map-compass output{font-size:12px}.map-scale{position:fixed;left:22px;bottom:245px;padding:10px 12px;border-radius:10px;z-index:8;pointer-events:none;color:#f2f6e9}.map-scale output{font-size:14px}.map-scale small{display:block;font-size:12px;color:#c7d8cd}#scale-bar{height:7px;border:solid #efffc4;border-width:0 2px 2px;margin-bottom:4px}.explore-actions small{display:block;font-size:12px;color:#c7d8cd}.layer-panel{max-height:calc(100dvh - 200px);overflow:auto}.explore-actions select{width:100%}.map-scale[hidden]{display:none}@media(max-width:900px){.map-compass{right:13px;top:307px;transform:scale(.85);transform-origin:top right}.map-scale{left:17px;bottom:248px;padding:6px 9px}.map-scale small{max-width:145px;font-size:12px}.layer-panel{max-height:calc(100dvh - 260px)}}
.map-compass{top:90px;right:96px}.layer-panel .layer-grid label,.layer-panel .explore-actions label{font-size:14px}@media(max-width:900px){.map-compass{top:78px;right:66px}.layer-panel .layer-grid label,.layer-panel .explore-actions label{font-size:14px}}

#labels .map-label.geo-peak{pointer-events:auto;cursor:pointer}#labels .map-label.geo-peak:hover,#labels .map-label.geo-peak:focus-visible{color:#ecff9b;outline:2px solid #ecff9b;border-radius:4px}.temperature-pin{position:fixed;z-index:6;border:1px solid #ffffff55;border-radius:8px;padding:5px 9px;background:#15332fe8;color:var(--temp);font:700 16px system-ui;cursor:pointer;transform:translateY(-50%)}.temperature-pin[hidden]{display:none}.temperature-pin:hover,.temperature-pin:focus-visible{outline:2px solid #ecff9b}.weather-pop{z-index:30;max-height:calc(100dvh - 160px);overflow:auto}#detail .route-item{width:100%;text-align:left} @media(max-width:700px){.temperature-pin{font-size:14px;padding:4px 6px}}

.wind-legend{position:fixed;right:20px;bottom:220px;z-index:5;padding:9px 12px;border-radius:10px;font-size:12px;line-height:1.5;max-width:285px;pointer-events:none}.wind-legend[hidden]{display:none}@media(max-width:700px){.wind-legend{bottom:235px;right:12px;max-width:200px;font-size:12px}}

.atlas-navigation{position:fixed;right:120px;top:95px;z-index:12;padding:12px;border-radius:12px;max-width:340px;font-size:14px}.atlas-navigation summary{cursor:pointer}.atlas-navigation p{line-height:1.5}.atlas-navigation button{background:#25433e;color:#effacb;border:1px solid #819788;border-radius:6px;padding:8px;margin:4px}.topbar nav{gap:16px}.topbar nav a{white-space:nowrap}@media(max-width:1050px){.topbar .brand i{display:none}.topbar nav{gap:10px}.topbar nav a{font-size:13px}}@media(max-width:900px){.topbar{height:105px;align-items:flex-start;padding-top:16px}.topbar nav{display:flex!important;position:absolute;left:12px;right:12px;top:58px;overflow-x:auto;gap:20px;padding-bottom:9px}.topbar nav a{font-size:14px;flex-shrink:0}.atlas-navigation{top:115px;left:12px;right:auto;max-width:280px}.atlas-navigation p{font-size:13px}.scene-caption{display:none}}

.topbar nav a.selected{display:block!important}

.map-label.geo-town{color:#ffe3ad;font-weight:700;letter-spacing:.02em;text-shadow:0 2px 4px #15251b;background:#24372cd9;border:1px solid #e4c89766;border-radius:7px;padding:5px 9px}
