:root {
    --bg: #ffffff;
    --fg: #222222;
    --accent: #0066cc;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

header {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

nav a:hover {
  background-color: rgba(0, 102, 204, 0.1);
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

.avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 1rem;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #666;
}

footer a {
  margin-right: 1rem;
  text-decoration: none;
  color: var(--accent);
}

footer a:hover {
  text-decoration: underline;
}

.footnote {
  color: #777;
  font-size: 0.85em;
  margin-top: 1.5em;
}

code {
  background-color: #eef3f8;
  color: #2a3b5f;
  padding: 3px 6px;
  border-radius: 6px;
  font-family: monospace;
  border: 1px solid #d0d7e2;
}

.lyrics {
  text-align: center;
  white-space: pre-line;
}

.quote {
  font-style: italic;
  border-left: 4px solid gray;
  padding-left: 10px;
  color: #555;
}

.quote cite {
  display: block;
  margin-top: 8px;
  font-size: 0.9em;
  color: #666;
  font-style: normal
}

.quote cite::before {
  content: "— ";
}

.date {
  color: #777;
  font-size: 0.9em;
  margin-top: -8px;
  margin-bottom: 20px;
  font-family: system-ui, sans-serif;
}
