:root {
  --accent: #0170B9;
  --text: #3a3a3a;
  --heading: #3a3a3a;
  --muted: #4B4F58;
  --bg: #FFFFFF;
  --alt-bg: #F5F5F5;
  --border: #dddddd;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { color: var(--heading); line-height: 1.3; }
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6em 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5em;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-shrink: 0;
}
.site-logo:hover { text-decoration: none; }
.site-logo img { height: 44px; width: 44px; display: block; }
.site-logo span {
  font-size: 1.5em;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FF5757;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4em;
  white-space: nowrap;
}
.site-nav a, .nav-more button {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95em;
  white-space: nowrap;
  padding: 0.25em 0;
  border-bottom: 2px solid transparent;
}
.site-nav > a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  text-decoration: none;
}
.nav-more { position: relative; }
.nav-more button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
  padding: 0.25em 0;
}
.nav-more:hover button, .nav-more:focus-within button { color: var(--accent); }
.nav-more-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 0.5em 0;
  min-width: 190px;
  flex-direction: column;
  z-index: 1100;
}
.nav-more:hover .nav-more-menu,
.nav-more:focus-within .nav-more-menu { display: flex; }
.nav-more-menu a { padding: 0.35em 1.1em; border-bottom: none; }
.nav-more-menu a:hover {
  background: var(--alt-bg);
  color: var(--accent);
  text-decoration: none;
}
@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; gap: 0.6em; }
  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.3em;
  }
}
.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em 20px 3em;
}
.post-meta { color: var(--muted); font-size: 0.9em; margin-top: -0.75em; }
.decklists {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5em;
}
.decklists iframe {
  border: 1px solid var(--border);
  max-width: 100%;
}
.post-list { list-style: none; padding: 0; }
.post-list li {
  padding: 0.45em 0;
  border-bottom: 1px solid var(--alt-bg);
}
.ev-when {
  display: inline-block;
  min-width: 10.5em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.ev-detail { color: var(--muted); font-size: 0.9em; }
.format-grid, .city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
  margin: 1em 0 1.5em;
  padding: 0;
  list-style: none;
}
.city-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.format-grid li, .city-grid li {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.9em 1em;
  background: var(--bg);
}
.format-grid a, .city-grid a { font-weight: 600; font-size: 1.05em; }
.format-grid .count, .city-grid .count {
  color: var(--muted);
  font-size: 0.9em;
}
.format-grid p {
  margin: 0.4em 0 0;
  font-size: 0.88em;
  color: var(--muted);
  line-height: 1.5;
}
.popup-addr { color: var(--muted); font-size: 0.92em; }
.event-map {
  height: 480px;
  max-width: 1000px;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin: 1em 0 1.5em;
  z-index: 0;
}
.site-footer {
  background: var(--alt-bg);
  border-top: 1px solid var(--border);
  margin-top: 2em;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5em 20px;
  font-size: 0.9em;
  color: var(--muted);
  text-align: center;
}
