*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a28;
  --bg-selected: #1a0a2e;
  --text: #f0f0f0;
  --text-dim: #888;
  --text-dimmer: #555;
  --accent: #a855f7;
  --accent-glow: rgba(168, 85, 247, 0.15);
  --accent2: #6366f1;
  --accent3: #00e5ff;
  --border: #1e1e2e;
  --radius: 12px;
  --radius-sm: 8px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --header-h: calc(88px + var(--safe-top));
  --filterbar-h: 40px;
  --bottomtab-h: 64px;
}

html, body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  height: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Screens */
.screen { display: none; height: 100%; }
.screen.active { display: flex; flex-direction: column; }

/* Login */
.login-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 40px;
}
.login-logo { text-align: center; }
.logo-text {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 12px;
  background: linear-gradient(135deg, #a855f7, #00e5ff, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub { font-size: 14px; color: var(--text-dim); letter-spacing: 4px; margin-top: 8px; }

.login-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text {
  font-size: 14px;
  color: var(--text-dim);
}

.login-form { display: flex; gap: 10px; width: 100%; max-width: 360px; }
.login-form input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
  outline: none;
}
.login-form input:focus { border-color: var(--accent); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:active { opacity: 0.8; }

.existing-users { text-align: center; width: 100%; max-width: 360px; }
.existing-label { font-size: 13px; color: var(--text-dim); margin-bottom: 12px; }
.user-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.user-chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.user-chip:active { background: var(--accent); border-color: var(--accent); }

/* Header */
#app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg);
  padding-top: var(--safe-top);
  border-bottom: 1px solid var(--border);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 4px;
}
.header-title { font-size: 18px; font-weight: 700; letter-spacing: 3px; }
.header-year { color: var(--accent); }
.header-user { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-dim); }
.btn-icon {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-dim);
  font-size: 16px;
  padding: 4px 8px;
  cursor: pointer;
  font-family: inherit;
}

.day-tabs {
  display: flex;
  gap: 0;
  padding: 0 16px 0;
}
.day-tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  padding: 4px 0 6px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.day-tab .day-date { font-size: 10px; font-weight: 400; }
.day-tab.active { color: var(--accent); border-bottom-color: var(--accent); }

/* Filter bar (below header) */
.filter-bar {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.filter-row {
  display: flex;
  gap: 6px;
  padding: 8px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-row::-webkit-scrollbar { display: none; }
.stage-pill {
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-dim);
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.stage-pill.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Bottom navigation tabs */
.bottom-tabs {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  display: flex;
  padding-bottom: var(--safe-bottom);
}
.bottom-tab {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-dimmer);
  font-family: inherit;
  font-size: 10px;
  padding: 10px 0 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s;
}
.bottom-tab.active { color: var(--accent); }
.bottom-tab-icon { width: 22px; height: 22px; }
.bottom-tab-label { font-weight: 600; letter-spacing: 0.5px; }

/* Content */
#content {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg);
  padding: calc(var(--header-h) + 8px) 12px calc(var(--bottomtab-h) + var(--safe-bottom) + 16px) 12px;
}

/* Set Cards */
.stage-section { margin-bottom: 20px; }
.stage-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-dim);
  text-transform: uppercase;
  padding: 8px 4px 6px;
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 10;
}

.set-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 4px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.15s;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}
.set-card:active { background: var(--bg-card-hover); }
.set-card.selected {
  background: var(--bg-selected);
  border-color: var(--accent);
  box-shadow: inset 3px 0 0 var(--accent);
}
.set-card.playing {
  border-color: var(--accent3);
  box-shadow: inset 3px 0 0 var(--accent3);
}
.set-card.playing::after {
  content: "LIVE";
  position: absolute;
  top: 4px;
  right: 8px;
  font-size: 9px;
  font-weight: 700;
  color: var(--accent3);
  letter-spacing: 1px;
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.set-time {
  min-width: 52px;
  text-align: center;
}
.set-time-start {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.set-time-end {
  font-size: 11px;
  color: var(--text-dimmer);
}

.set-info { flex: 1; min-width: 0; }
.set-artist {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.set-artist.headliner {
  font-size: 17px;
  background: linear-gradient(90deg, #a855f7, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.set-stage-label {
  font-size: 11px;
  color: var(--text-dimmer);
  margin-top: 2px;
}

.set-friends {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
  max-width: 100px;
}
.friend-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  color: #000;
  flex-shrink: 0;
}

.set-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  transition: all 0.15s;
}
.set-card.selected .set-check {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* My Sets view */
.my-sets-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-dim);
}
.my-sets-empty .emoji { font-size: 48px; margin-bottom: 16px; }
.my-sets-empty p { font-size: 15px; line-height: 1.6; }

/* Friends view */
.friend-section { margin-bottom: 24px; }
.friend-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px 8px;
}
.friend-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #000;
}
.friend-name { font-size: 16px; font-weight: 600; }
.friend-count { font-size: 12px; color: var(--text-dim); }

.conflict-badge {
  background: #ff1744;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

/* Now button */
.now-btn {
  position: fixed;
  bottom: calc(var(--bottomtab-h) + var(--safe-bottom) + 12px);
  right: 16px;
  background: var(--accent3);
  color: #000;
  border: none;
  border-radius: 20px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 1px;
  cursor: pointer;
  z-index: 101;
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
}
.now-btn.hidden { display: none; }

/* Sync indicator */
.sync-indicator {
  position: fixed;
  bottom: calc(var(--bottomtab-h) + var(--safe-bottom) + 12px);
  left: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 6px 14px;
  font-size: 11px;
  color: var(--text-dim);
  z-index: 101;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sync-indicator.hidden { display: none; }
.sync-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent3);
  animation: pulse 1s infinite;
}
.sync-indicator.offline .sync-dot { background: #ff9800; }
.sync-indicator.offline::after { content: "Offline"; }

/* Up Next card */
.up-next {
  background: linear-gradient(135deg, var(--accent-glow), rgba(99,102,241,0.08));
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.up-next-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 8px;
}
.up-next-artist { font-size: 18px; font-weight: 700; }
.up-next-meta { font-size: 12px; color: var(--text-dim); margin-top: 4px; }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay.hidden { display: none; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 440px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 20px;
}

/* Install banner */
.install-banner {
  position: fixed;
  bottom: calc(var(--bottomtab-h) + var(--safe-bottom) + 12px);
  left: 12px;
  right: 12px;
  background: linear-gradient(135deg, #1a0a2e, #0a1628);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.2);
  animation: slideUp 0.3s ease-out;
}
@keyframes slideUp { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.install-banner.hidden { display: none; }
.install-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.install-text strong { font-size: 14px; color: var(--text); }
.install-text span { font-size: 12px; color: var(--text-dim); }
.btn-install {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.btn-install:active { opacity: 0.8; }
.btn-dismiss {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

/* Timeline view */
.tl-container {
  padding-bottom: 20px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: calc(var(--header-h) + 8px);
  left: 0;
  right: 0;
  bottom: calc(var(--bottomtab-h) + var(--safe-bottom));
  background: var(--bg);
  z-index: 10;
}
.tl-container .tl-time-header,
.tl-container .tl-row {
  min-width: var(--tl-width, 2000px);
}
.tl-time-header {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  padding-bottom: 4px;
}
.tl-stage-label-spacer {
  width: 48px;
  min-width: 48px;
  flex-shrink: 0;
  position: sticky;
  left: 0;
  z-index: 25;
  background: var(--bg);
}
.tl-time-row {
  flex: 1;
  position: relative;
  height: 20px;
}
.tl-time-mark {
  position: absolute;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-dimmer);
  transform: translateX(-50%);
  white-space: nowrap;
}
.tl-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tl-stage-label {
  width: 48px;
  min-width: 48px;
  flex-shrink: 0;
  font-size: 8px;
  font-weight: 700;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  padding-right: 4px;
  text-align: right;
  justify-content: flex-end;
  position: sticky;
  left: 0;
  z-index: 15;
  background: var(--bg);
}
.tl-track {
  flex: 1;
  position: relative;
  min-height: 44px;
  padding: 3px 0;
}
.tl-gridline {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  opacity: 0.4;
}
.tl-now {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent3);
  z-index: 5;
  box-shadow: 0 0 6px rgba(0,229,255,0.4);
}
.tl-block {
  position: absolute;
  top: 3px;
  bottom: 3px;
  margin-left: 2px;
  margin-right: 2px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 5px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
  z-index: 10;
}
.tl-block:active { opacity: 0.8; }
.tl-selected {
  background: var(--bg-selected);
  border-color: var(--accent);
  box-shadow: inset 0 2px 0 var(--accent);
}
.tl-playing {
  border-color: var(--accent3);
  box-shadow: inset 0 2px 0 var(--accent3);
}
.tl-block-name {
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  line-height: 1;
  max-height: 10px;
}
.tl-block-times {
  font-size: 8px;
  color: var(--text-dimmer);
  white-space: nowrap;
  flex-shrink: 0;
}
.tl-friend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 900;
  color: #000;
  flex-shrink: 0;
}

.tl-slider-bar {
  position: fixed;
  bottom: calc(var(--bottomtab-h) + var(--safe-bottom));
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  z-index: 99;
}
.tl-slider-bar input[type="range"] {
  flex: 1;
  accent-color: var(--accent);
  height: 4px;
}
.tl-download-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.tl-download-btn:active { opacity: 0.8; }
.tl-download-btn:disabled { opacity: 0.5; }
.tl-slider-bar span {
  font-size: 11px;
  color: var(--text-dim);
  min-width: 50px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.tl-day-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
  padding: 12px 48px 4px;
}
.tl-legend {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 12px 48px 8px;
}
.tl-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-dim);
}
.tl-legend-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  color: #000;
  flex-shrink: 0;
}

/* Calendar view */
.cal-wrapper {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  position: fixed;
  top: calc(var(--header-h) + 8px);
  left: 0;
  right: 0;
  bottom: calc(var(--bottomtab-h) + var(--safe-bottom));
  z-index: 10;
  background: var(--bg);
  padding: 0 0 20px 0;
  overscroll-behavior: contain;
}
.cal-header {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
}
.cal-time-header {
  width: 44px;
  min-width: 44px;
  flex-shrink: 0;
}
.cal-stage-header {
  width: 110px;
  min-width: 110px;
  flex-shrink: 0;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.cal-body {
  position: relative;
  min-width: fit-content;
}
.cal-time-label {
  position: absolute;
  left: 0;
  width: 40px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-dimmer);
  text-align: right;
  padding-right: 6px;
  transform: translateY(-7px);
}
.cal-gridline {
  position: absolute;
  height: 1px;
  background: var(--border);
  opacity: 0.5;
}
.cal-now-line {
  position: absolute;
  height: 2px;
  background: var(--accent3);
  z-index: 15;
  box-shadow: 0 0 8px rgba(0,229,255,0.4);
}
.cal-block {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 6px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.15s;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cal-block:active { opacity: 0.8; }
.cal-selected {
  background: var(--bg-selected);
  border-color: var(--accent);
  box-shadow: inset 2px 0 0 var(--accent);
}
.cal-playing {
  border-color: var(--accent3);
  box-shadow: inset 2px 0 0 var(--accent3);
}
.cal-headliner .cal-block-artist {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cal-block-artist {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cal-block-time {
  font-size: 9px;
  color: var(--text-dimmer);
}
.cal-friends {
  display: flex;
  gap: 2px;
  margin-top: auto;
}
.cal-friend-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 900;
  color: #000;
  flex-shrink: 0;
}

/* Map view */
.map-container {
  width: 100%;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y pinch-zoom;
}
.map-img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.map-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  pointer-events: none;
}

/* Map sub-tabs */
.map-subtabs {
  position: fixed;
  left: 0;
  right: 0;
  display: flex;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  z-index: 101;
}
.map-subtab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  border-right: 1px solid var(--border);
  color: var(--text-dim);
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.map-subtab:last-child { border-right: none; }
.map-subtab.active {
  color: var(--accent);
  background: rgba(168,85,247,0.1);
}

/* Map tooltip */
.map-tooltip {
  position: fixed;
  z-index: 200;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  max-width: 260px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: fadeIn 0.15s ease-out;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.map-tooltip-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.map-tooltip-set {
  font-size: 12px;
  color: var(--text);
  padding: 2px 0;
  line-height: 1.4;
}
.map-tooltip-set .time {
  color: var(--text-dim);
  margin-right: 4px;
}
.map-tooltip-set.now {
  color: var(--accent3);
  font-weight: 600;
}
.map-tooltip-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 16px;
  cursor: pointer;
  padding: 2px;
  line-height: 1;
}

/* Responsive */
@media (min-width: 600px) {
  #content { padding-left: 24px; padding-right: 24px; max-width: 640px; margin: 0 auto; }
}
