/* tour-map.html page styles (extracted v4.2) */
/* Override shared.css values: tour map panels use primary brand bg for consistency with map UI */
:root {
  --white: #ffffff;
  --bg2: var(--bg);
  --bg3: #1a1a1a;
  --muted: #888;
}
body {
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text);
}

/* HEADER */
.map-header {
  background: var(--bg2);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--bg3);
  flex-shrink: 0;
  z-index: 1000;
}
.map-header h1 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}
.map-header h1 span.the { color: var(--red); }
.map-header .back-link { flex-shrink: 0; }

/* CONTROLS BAR */
.controls {
  background: var(--bg2);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--bg3);
  flex-shrink: 0;
  z-index: 1000;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}
.controls select {
  max-width: 45%;
}
.control-group {
  display: flex;
  align-items: center;
  gap: 6px;
}
.control-group label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
select, button {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  background: var(--bg3);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 12px 16px;
  cursor: pointer;
}
select:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
select:hover, button:hover { border-color: var(--gold); }
button.active { background: var(--red); border-color: var(--red); color: var(--white); }

.play-btn {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  font-weight: 600;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.play-btn:hover { background: #e02200; }
.play-btn.playing { background: var(--gold); border-color: var(--gold); color: var(--bg); }

.stats-pill {
  margin-left: auto;
  background: var(--bg3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

/* YEAR SLIDER */
.year-slider-container {
  background: var(--bg2);
  padding: 8px 20px 12px;
  border-bottom: 1px solid var(--bg3);
  flex-shrink: 0;
  z-index: 1000;
}
.year-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--muted);
  margin-bottom: 4px;
  padding: 0 2px;
}
.year-range-wrap {
  position: relative;
  height: 24px;
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  position: absolute;
  top: 0;
  height: 24px;
  background: transparent;
  pointer-events: none;
  z-index: 2;
  margin: 0;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  pointer-events: all;
  border: 2px solid var(--bg);
  margin-top: -7px;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}
input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  pointer-events: all;
  border: 2px solid var(--bg);
}
input[type="range"]::-moz-range-track {
  height: 4px;
  background: transparent;
}
.slider-track {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bg3);
  border-radius: 2px;
}
.slider-track-fill {
  position: absolute;
  top: 10px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}
.year-display {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}

/* MAP */
#map {
  flex: 1;
  z-index: 1;
}

/* Custom popup */
.leaflet-popup-content-wrapper {
  background: var(--bg2) !important;
  color: var(--text) !important;
  border-radius: 10px !important;
  border: 1px solid var(--bg3) !important;
  font-family: 'Poppins', sans-serif !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5) !important;
}
.leaflet-popup-tip { background: var(--bg2) !important; }
.leaflet-popup-content { margin: 12px 16px !important; font-size: 0.8rem !important; line-height: 1.5 !important; }
.popup-date { color: var(--gold); font-weight: 600; font-size: 0.85rem; }
.popup-venue { color: var(--white); font-weight: 500; margin: 2px 0; }
.popup-city { color: var(--muted); font-size: 0.75rem; }
.popup-tour { color: var(--red); font-size: 0.7rem; font-weight: 500; margin-top: 4px; }
.popup-songs { color: var(--muted); font-size: 0.7rem; }
.popup-link { display: inline-block; margin-top: 6px; color: var(--gold); text-decoration: none; font-size: 0.7rem; font-weight: 500; }
.popup-link:hover { text-decoration: underline; }
.popup-archive { display: block; color: var(--red); font-weight: 600; margin-bottom: 2px; }

/* Cluster overrides */
.marker-cluster-small, .marker-cluster-medium, .marker-cluster-large {
  background: rgba(204, 162, 60, 0.25) !important;
}
.marker-cluster-small div, .marker-cluster-medium div, .marker-cluster-large div {
  background: var(--gold) !important;
  color: var(--bg) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.75rem !important;
}

/* Playback indicator */
.playback-overlay {
  display: none;
  align-items: center;
  gap: 16px;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg2);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 12px 24px;
  z-index: 2000;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.playback-overlay.active { display: flex; }
.playback-left { text-align: center; }
.playback-year { font-size: 1.6rem; font-weight: 700; color: var(--white); line-height: 1; }
.playback-year-gigs { font-size: 0.65rem; color: var(--muted); margin-top: 2px; }
.playback-divider { width: 1px; height: 36px; background: var(--bg3); }
.playback-stats { display: flex; gap: 14px; }
.playback-stat { text-align: center; }
.playback-stat-val { font-size: 1.1rem; font-weight: 700; color: var(--gold); line-height: 1; }
.playback-stat-label { font-size: 0.55rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.speed-controls { display: flex; gap: 4px; margin-left: 8px; }
.speed-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  background: var(--bg3);
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 8px 14px;
  cursor: pointer;
}
.speed-btn.active { background: var(--gold); color: var(--bg); font-weight: 600; }

/* GIG COUNTER animation */
.gig-flash {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0;
  z-index: 3000;
  pointer-events: none;
  transition: opacity 0.4s;
  text-shadow: 0 0 40px rgba(204, 162, 60, 0.3);
}
.gig-flash.show { opacity: 0.35; }

/* ON THIS DAY BANNER */
.otd-banner {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 2px solid var(--gold);
  padding: 10px 20px;
  flex-shrink: 0;
  z-index: 1000;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}
.otd-banner:hover { background: rgba(255, 255, 255, 0.08); }
.otd-banner.active { display: block; }
.otd-banner .otd-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}
.otd-banner .otd-detail {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 2px;
}
.otd-pin-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.55rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SEARCH */
.search-group { position: relative; }
.search-wrap { position: relative; }
.search-wrap input {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  background: var(--bg3);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 28px 6px 10px;
  width: 200px;
  outline: none;
}
.search-wrap input:focus { border-color: var(--gold); }
.search-wrap input::placeholder { color: var(--muted); font-size: 0.75rem; }
.search-clear {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0 4px;
  display: none;
  line-height: 1;
}
.search-clear:hover { color: var(--white); }
.search-results {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 340px;
  max-height: 320px;
  overflow-y: auto;
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  z-index: 2000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
.search-results.open { display: block; }
.search-result-item {
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.15s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: rgba(255, 255, 255, 0.06); }
.search-result-item .sr-date { color: var(--gold); font-size: 0.75rem; font-weight: 600; }
.search-result-item .sr-venue { color: var(--white); font-size: 0.8rem; font-weight: 500; }
.search-result-item .sr-city { color: var(--muted); font-size: 0.7rem; }
.search-result-count {
  padding: 6px 12px;
  font-size: 0.7rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 500;
}

/* AUDIO PLAYER */
.audio-player {
  display: none;
  position: fixed;
  bottom: 44px;
  left: 0;
  right: 0;
  z-index: 1500;
  background: rgba(14, 11, 22, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 2px solid var(--gold);
  padding: 0;
  font-family: 'Poppins', sans-serif;
}
.audio-player.active { display: block; }
.ap-main {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
}
.ap-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.ap-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
}
.ap-btn:hover { background: rgba(255,255,255,0.1); }
.ap-btn svg { width: 20px; height: 20px; }
.ap-btn-play svg { width: 28px; height: 28px; }
.ap-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.ap-show-title {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ap-track-title {
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ap-time {
  font-size: 0.65rem;
  color: var(--muted);
  flex-shrink: 0;
  min-width: 80px;
  text-align: right;
}
.ap-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px 8px;
  flex-shrink: 0;
  line-height: 1;
}
.ap-close:hover { color: var(--white); }
.ap-progress-wrap {
  position: relative;
  height: 4px;
  background: var(--bg3);
  cursor: pointer;
}
.ap-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.2s linear;
  border-radius: 0 2px 2px 0;
}
.ap-progress-wrap:hover { height: 6px; margin-top: -2px; }
.ap-tracklist {
  display: none;
  max-height: 240px;
  overflow-y: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ap-tracklist.open { display: block; }
.ap-track {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  cursor: pointer;
  font-size: 0.75rem;
  color: var(--muted);
  transition: background 0.15s;
}
.ap-track:hover { background: rgba(255,255,255,0.05); }
.ap-track.active { color: var(--gold); background: rgba(204,162,60,0.08); }
.ap-track-num { width: 20px; text-align: right; font-size: 0.65rem; flex-shrink: 0; }
.ap-track-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ap-track-dur { font-size: 0.65rem; flex-shrink: 0; }
.ap-loading {
  display: none;
  padding: 20px 16px;
  text-align: center;
}
.ap-loading.active { display: block; }
.ap-loading-text {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
}
.ap-loading-sub {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 4px;
}
.ap-loading-bar {
  height: 3px;
  background: var(--bg3);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}
.ap-loading-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  border-radius: 2px;
  transition: width 0.3s;
}
.ap-volume {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.ap-volume input[type="range"] {
  position: relative;
  width: 60px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--bg3);
  border-radius: 2px;
  outline: none;
  pointer-events: all;
  margin: 0;
}
.ap-volume input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  margin-top: -4px;
  border: none;
  pointer-events: all;
}
.ap-volume input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}

/* SHOW DETAIL CARD (search result overlay) */
.show-detail-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}
.show-detail-overlay.active { display: flex; }
.show-detail-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px 28px;
  max-width: 380px;
  width: 90%;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.show-detail-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.show-detail-close:hover { color: var(--white); }
.show-detail-date { color: var(--gold); font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.show-detail-venue { color: var(--white); font-weight: 600; font-size: 1.15rem; margin-bottom: 2px; }
.show-detail-city { color: var(--muted); font-size: 0.85rem; margin-bottom: 8px; }
.show-detail-tour { color: var(--red); font-size: 0.8rem; font-weight: 500; margin-bottom: 4px; }
.show-detail-songs { color: var(--muted); font-size: 0.78rem; margin-bottom: 12px; }
.show-detail-actions { display: flex; flex-direction: column; gap: 8px; }
.show-detail-actions button,
.show-detail-actions a {
  display: block;
  width: 100%;
  padding: 10px 16px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.show-detail-play {
  background: var(--gold);
  color: var(--bg);
  border: none;
}
.show-detail-play:hover { background: #d4af4a; }
.show-detail-setlist {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(204,162,60,0.3);
}
.show-detail-setlist:hover { background: rgba(204,162,60,0.1); }
.show-detail-map-btn {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.1);
}
.show-detail-map-btn:hover { background: rgba(255,255,255,0.05); }

/* SHOW VIDEOS STRIP — YouTube recordings tied to this show */
.show-videos-strip {
  margin: 10px 0 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(204,162,60,0.18);
}
.show-videos-strip-label {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.show-videos-strip-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.show-video-thumb {
  flex: 0 0 auto;
  width: 120px;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  position: relative;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.15s, transform 0.15s;
}
.show-video-thumb:hover { border-color: var(--gold); transform: translateY(-1px); }
.show-video-thumb img {
  display: block;
  width: 100%;
  height: 68px;
  object-fit: cover;
}
.show-video-thumb-tag {
  position: absolute;
  top: 4px;
  left: 4px;
  background: rgba(0,0,0,0.75);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}
.show-video-thumb-meta {
  color: var(--muted);
  font-size: 0.62rem;
  padding: 4px 6px;
  line-height: 1.3;
}

/* I WAS THERE */
.iwt-popup-btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  min-height: 44px;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.3px;
}
.iwt-popup-btn:hover { background: rgba(204,162,60,0.15); }
.iwt-popup-btn.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.iwt-counter {
  background: var(--gold);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 4px;
}

/* SETLIST OVERLAY */
.setlist-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2600;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}
.setlist-overlay.active { display: flex; }
.setlist-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px 28px;
  max-width: 420px;
  width: 90%;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.setlist-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.setlist-close:hover { color: var(--white); }
.setlist-date { color: var(--gold); font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.setlist-venue { color: var(--white); font-weight: 600; font-size: 1.15rem; margin-bottom: 2px; }
.setlist-city { color: var(--muted); font-size: 0.85rem; margin-bottom: 4px; }
.setlist-tour { color: var(--red); font-size: 0.8rem; font-weight: 500; margin-bottom: 12px; }
.setlist-songs-wrap {
  max-height: 70vh;
  overflow-y: auto;
  margin-bottom: 12px;
}
.setlist-songs-wrap::-webkit-scrollbar { width: 4px; }
.setlist-songs-wrap::-webkit-scrollbar-track { background: transparent; }
.setlist-songs-wrap::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 2px; }
.setlist-set-header {
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 12px 0 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(204,162,60,0.2);
}
.setlist-set-header:first-child { margin-top: 0; }
.setlist-song {
  font-size: 0.82rem;
  color: var(--white);
  padding: 3px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.setlist-song-num {
  color: var(--muted);
  font-size: 0.65rem;
  min-width: 18px;
  text-align: right;
  flex-shrink: 0;
}
.setlist-song-name { flex: 1; }
.setlist-song-cover {
  color: var(--muted);
  font-size: 0.7rem;
  font-style: italic;
}
.setlist-song-tape {
  opacity: 0.5;
}
.setlist-song-tape-label {
  color: var(--muted);
  font-size: 0.65rem;
}
.setlist-count {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.setlist-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.setlist-actions button {
  display: block;
  width: 100%;
  padding: 10px 16px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s;
}
.setlist-play-btn {
  background: var(--gold);
  color: var(--bg);
  border: none;
}
.setlist-play-btn:hover { background: #d4af4a; }
.setlist-close-btn {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.1);
}
.setlist-close-btn:hover { background: rgba(255,255,255,0.05); }
.setlist-credit {
  text-align: center;
  margin-top: 8px;
  font-size: 0.6rem;
}
.setlist-credit a {
  color: var(--muted);
  text-decoration: none;
}
.setlist-credit a:hover { color: var(--gold); text-decoration: underline; }
.setlist-empty {
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
  padding: 20px 0;
}

/* Mobile */
@media (max-width: 768px) {
  .map-header { padding: 10px 14px; }
  .map-header h1 { font-size: 0.95rem; }
  .controls { padding: 8px 14px; gap: 8px; }
  .stats-pill { margin-left: 0; width: 100%; text-align: center; }
  .search-wrap input { width: 160px; }
  .search-results { width: calc(100vw - 28px); left: auto; right: -14px; }
  .year-slider-container { padding: 6px 14px 10px; }
  .ap-volume { display: none; }
  .ap-main { gap: 8px; padding: 8px 12px; }
  .ap-tracklist { max-height: 180px; }
}
