diff --git a/README.md b/README.md
index d721a4f..a18a1e7 100644
--- a/README.md
+++ b/README.md
@@ -4,8 +4,6 @@ A self-contained Go server that receives GPS location data from the
[Colota Android app](https://colota.app), stores it in an SQLite3 database,
and serves a web frontend for browsing trips on a map.
-
-
## Quick Start
```bash
diff --git a/docs/screenshot.png b/docs/screenshot.png
deleted file mode 100644
index 324724a..0000000
Binary files a/docs/screenshot.png and /dev/null differ
diff --git a/static/index.html b/static/index.html
index a0f04e5..9adb716 100644
--- a/static/index.html
+++ b/static/index.html
@@ -511,9 +511,9 @@
// ── Map ───────────────────────────────────────────────────────────────────────
const map = L.map('map', { zoomControl: true }).setView([20, 0], 2);
- L.tileLayer('https://tiles.stadiamaps.com/tiles/alidade_smooth_dark/{z}/{x}/{y}{r}.png', {
- attribution: '© Stadia Maps © OpenMapTiles © OpenStreetMap',
- maxZoom: 20
+ L.tileLayer('https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png', {
+ attribution: '© OpenStreetMap © CARTO',
+ maxZoom: 19
}).addTo(map);
let trackLayer = null, markerStart = null, markerEnd = null, pointsLayer = null;