:root {
    --cyan: #00B4D8;
    --magenta: #E040FB;
    --yellow: #FFD600;
    --bg: #0a0a0a;
    --text: #d8d8d8;
    --text-muted: #999;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    background-color: var(--bg);
    color: var(--text);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    text-align: justify;
    padding: 0 16px 48px;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  

br {
            display: block; /* makes it have a width */
            content: ""; /* clears default height */
            margin-top: 0; /* change this to whatever height you want it */
}

  /* Plain inline emphasis — no color shouting, just weight/style */
  b, strong { font-weight: 600; color: var(--text); }
  i, em { font-style: italic; color: var(--text); }
  u { text-decoration: underline; color: var(--text); }
  s { text-decoration: line-through; color: var(--text-muted); }
  small { font-size: 12px; color: var(--text-muted); }

  /* Accent color reserved for links only */
  a {
    color: var(--cyan);
    text-decoration: underline;
    text-decoration-color: rgba(0,180,216,0.4);
    font-style: normal;
    text-transform: none;
    letter-spacing: 0;
    font-size: inherit;
  }
  a:hover { color: var(--magenta); text-decoration-color: var(--magenta); }

  .nav-link {
    color: var(--text);
    text-decoration: none;
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 6px 10px;
    border-bottom: 2px solid transparent;
  }
  .nav-link:hover { color: var(--cyan); border-bottom-color: var(--cyan); }

  blockquote {
    background: rgba(255,255,255,0.03);
    padding: 14px 18px;
    border: 0;
    border-left: 3px solid var(--yellow);
    color: var(--text);
    font-size: 15px;
    line-height: 1.75;
    margin: 20px 0;
  }

  /* Headers keep the accent identity, body text stays plain */
  h1 {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: #fff;
    text-align: left;
    text-transform: none;
    margin-bottom: 4px;
  }

  h2 {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
    color: var(--magenta);
    border-left: none;
    padding: 0;
    margin-bottom: 16px;
  }

  h3 {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 0px;
    color: #fff;
    text-align: left;
    text-transform: none;
    border-bottom: 1px solid #2a2a2a;
    line-height: 1.3;
    padding-bottom: 10px;
    margin-bottom: 6px;
  }

  h4 {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: left;
    color: var(--text-muted);
    margin-bottom: 20px;
  }

  ul {
    list-style: none;
    margin: 10px 0 16px;
    padding-left: 4px;
  }
  ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
  }
  ul li::before {
    content: "\2013"; /* en dash, calmer than a bullet */
    position: absolute;
    left: 0;
    color: var(--text-muted);
  }

  ol {
    margin: 10px 0 16px;
    padding-left: 24px;
  }
  ol li {
    margin-bottom: 8px;
  }
  ol li::marker {
    color: var(--cyan);
    font-weight: 600;
  }

  .page {
    max-width: 640px;
    margin: 0 auto;
    padding-top: 32px;
  }

  .site-title {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(20px, 5vw, 28px);
    letter-spacing: 1px;
    color: #fff;
    text-align: left;
    margin-bottom: 18px;
  }
  .site-title span { color: var(--magenta); }

  .nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 4px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
    margin-bottom: 32px;
  }

  .content p {
    margin-bottom: 18px;
    max-width: 64ch; /* comfortable reading line length */
  }

  .content {
    padding-bottom: 20px;
  }