/* Handmade list: grey, low-tech, link-dense */

:root {
  --bg: #cfcfcf;
  --text: #111;
  --link: #0000ee;
  --visited: #551a8b;
  --box: #e5e5e5;
  --border: #888;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Times New Roman", Times, serif;
}

a { color: var(--link); }
a:visited { color: var(--visited); }

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 2px solid var(--border);
  background: #bdbdbd;
}

.brand-title { font-weight: bold; text-transform: lowercase; }
.brand-sub { margin-left: 6px; font-size: 12px; opacity: 0.8; }

.theme-switcher select,
.theme-switcher button,
.theme-switcher label {
  font-family: inherit;
  font-size: 14px;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 12px 60px;
}

.intro h1 {
  margin: 0 0 6px;
  font-size: 34px;
}

.tagline { margin: 0 0 8px; }
.notes { margin: 0 0 16px; font-size: 14px; }

.content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 900px) {
  .content {
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: start;
  }
}

.rail, .main {
  border: 1px solid var(--border);
  background: var(--box);
  padding: 10px;
}

.panel {
  border: 1px solid var(--border);
  background: #f2f2f2;
  padding: 10px;
  margin-bottom: 10px;
}

.panel:last-child { margin-bottom: 0; }

h2, h3 { margin: 0 0 8px; }

.readme {
  margin: 0;
  padding: 8px;
  border: 1px dashed var(--border);
  background: #fff;
  font-family: "Courier New", monospace;
  font-size: 12px;
  white-space: pre-wrap;
}

.link-dump, .news {
  margin: 0;
  padding-left: 18px;
}

/* Canonical track list */
.tracks-title { margin: 0 0 10px; }

.tracks {
  margin: 0;
  padding-left: 18px;
  column-count: 1;
  column-gap: 24px;
}

@media (min-width: 700px) {
  .tracks { column-count: 2; }
}

.track {
  break-inside: avoid;
  margin: 0 0 6px;
}

.track-name {
  text-decoration: underline;
}

/* In handmade view we keep it simple: hide extra “columns” */
.track-date,
.track-size,
.track-desc,
.apache-head,
.apache-footer,
.geo-guestbook,
.panel-geocities {
  display: none;
}

.site-footer {
  margin-top: 16px;
  border-top: 2px solid var(--border);
  padding-top: 10px;
  font-size: 12px;
}
