:root { --bg: #0F172A; --fg: #E5E5E5; --primary: #06B6D4; --accent: #FBBF24; --muted: #94A3B8; --border: #1E293B; --soft: #1E293B; }
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); font-family: Inter, system-ui, sans-serif; line-height: 1.55; }
a { color: var(--primary); }
.topbar { display: flex; justify-content: space-between; align-items: center; padding: 18px 28px; border-bottom: 1px solid var(--border); }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--primary); }
nav a { color: var(--muted); font-size: 13px; }
main { max-width: 1000px; margin: 0 auto; padding: 48px 24px 80px; }
h1 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(32px, 5vw, 52px); line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 16px; }
h1 em { color: var(--primary); font-style: italic; }
h2 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; margin: 32px 0 12px; }
h3 { font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
.lead { font-size: 18px; color: var(--muted); margin: 0 0 32px; }
.now { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
@media (max-width: 700px) { .now { grid-template-columns: 1fr; } }
.card { padding: 24px; background: var(--soft); border: 1px solid var(--border); border-radius: 8px; }
.card p { font-family: 'Space Grotesk', sans-serif; font-size: 26px; margin: 0; color: var(--fg); }
.muted { color: var(--muted); font-size: 13px; font-family: Inter, sans-serif; }
button { background: var(--primary); color: var(--bg); border: 0; padding: 10px 20px; border-radius: 6px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; cursor: pointer; font-size: 14px; }
button:hover { background: #0891B2; }
#map { height: 240px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); margin: 24px 0; background: #0B1224; }
#map .leaflet-container { background: #0B1224; }
.next-passes ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.next-passes li { padding: 16px 20px; background: var(--soft); border: 1px solid var(--border); border-radius: 6px; display: flex; justify-content: space-between; align-items: center; }
.next-passes .when { font-family: 'Space Grotesk', sans-serif; font-weight: 500; }
.next-passes .meta { color: var(--muted); font-size: 13px; }
.block { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); }
footer { text-align: center; padding: 24px; color: var(--muted); font-size: 12px; }
