/* Inspired by https://thebestmotherfucking.website/ — WTFPL */

body {
  font-family: "Open Sans", Arial, sans-serif;
  color: #454545;
  font-size: 16px;
  margin: 2em auto;
  max-width: 800px;
  padding: 1em;
  line-height: 1.4;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #000;
    color: #d9d9d9;
  }

  a            { color: #00a2e7; }
  a:visited    { color: #ca1a70; }

  blockquote   { color: #d3c9be; }
  blockquote::before { color: #b8b8b8; }

  pre, code    { background-color: #111; }
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

a            { color: #07a; }
a:visited    { color: #941352; }
a:hover      { text-decoration: underline; }

strong, b    { color: inherit; }

img          { max-width: 100%; }

hr {
  border: 0;
  border-top: 1px dashed #ccc;
}

table        { width: 100%; border-collapse: collapse; }
th, td       { text-align: left; padding: 0.4em 0.6em; border: 1px solid #ccc; }
th           { background: #f5f5f5; }

code {
  font-family: monospace;
  font-size: 0.9em;
  padding: 2px 4px;
  border-radius: 3px;
  background: #f0f0f0;
}

pre {
  background: #f0f0f0;
  border-radius: 3px;
  padding: 1em;
  overflow-x: auto;
  margin: 1em 0;
}

pre code {
  background: none;
  padding: 0;
}

blockquote {
  color: #456;
  margin: 2em 0;
  padding: 0;
}

blockquote::before {
  font-family: "Times New Roman", Times, Arial;
  color: #666;
  content: open-quote;
  font-size: 2.2em;
  font-weight: 600;
  float: left;
  margin-top: 0;
  margin-right: 0.2rem;
  width: 1.2rem;
}

blockquote p {
  float: left;
  margin-left: 1rem;
  padding-top: 1rem;
}

blockquote::after {
  content: "";
  display: block;
  clear: both;
}

/* Site header */
header {
  margin-bottom: 2em;
}

.site-title {
  text-decoration: none;
  color: inherit;
}

.site-title:hover {
  text-decoration: none;
}

.site-title h1 {
  font-size: 1.4em;
  margin: 0 0 0.3em;
}

/* Nav: flatten bungo's <ul> tree into inline links */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

nav ul li {
  display: inline;
}

nav ul li a {
  margin-right: 8px;
  font-size: 0.95em;
}

/* Collapse sub-nav — single-level only, like the original */
nav ul ul {
  display: none;
}

/* TOC — understated, below the content */
main > ol {
  border-left: 1px dashed #ccc;
  padding-left: 1.2em;
  margin: 2em 0 0;
  font-size: 0.9em;
  color: #666;
}

main > ol a {
  color: #07a;
}

main > ol a:hover {
  text-decoration: underline;
}

footer {
  padding: 25px 0;
  text-align: center;
  font-size: 0.85em;
  color: #888;
  border-top: 1px dashed #ccc;
  margin-top: 3em;
}

@media screen and (max-width: 500px) {
  body {
    text-align: left;
    hyphens: auto;
  }
}
