:root {
      --snow: #FEF8F5;
      --glacier: #D7DFE1;
      --winter: #08151E;
      --red: #C74B4E;
      --green: #ACCB79;
      --ice: #C7D7EA;
      --turquoise: #5FB3AA;
      --twilight: #B78584;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background: var(--snow);
      color: var(--winter);
      font-family: 'DM Sans', sans-serif;
      min-height: 100vh;
    }
    nav {
      background: var(--winter);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 56px;
    }
    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px;
      letter-spacing: 0.18em;
      color: var(--snow);
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
    }
    .nav-links li { display: flex; align-items: center; }
    .nav-links li:not(:last-child)::after {
      content: '|';
      color: var(--snow);
      opacity: 0.25;
      padding: 0 14px;
      font-size: 11px;
    }
    .nav-links a {
      font-family: 'DM Mono', monospace;
      font-size: 10.5px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--snow);
      text-decoration: none;
      opacity: 0.65;
      transition: opacity 0.2s;
      white-space: nowrap;
    }
    .nav-links a:hover { opacity: 1; }

    .content {
      max-width: 760px;
      margin: 0 auto;
      padding: 72px 48px 100px;
    }
    .page-label {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 16px;
    }
    h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px;
      letter-spacing: 0.08em;
      color: var(--winter);
      margin-bottom: 8px;
    }
    .last-updated {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      color: #999;
      letter-spacing: 0.1em;
      margin-bottom: 56px;
    }
    h2 {
      font-family: 'DM Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--winter);
      margin: 40px 0 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--glacier);
    }
    p {
      font-size: 15px;
      line-height: 1.75;
      color: #3a3a3a;
      margin-bottom: 12px;
    }
    a { color: var(--red); text-decoration: none; }
    a:hover { text-decoration: underline; }

    footer {
      text-align: center;
      padding: 24px;
      font-family: 'Courier New', monospace;
      font-size: 11px;
      letter-spacing: 0.1em;
      color: #999;
      border-top: 1px solid #eee;
    }
    footer a { color: #999; text-decoration: none; }

    @media (max-width: 640px) {
      nav { padding: 0 16px; }
      .nav-links a { font-size: 9px; letter-spacing: 0.08em; }
      .content { padding: 48px 24px 80px; }
      h1 { font-size: 36px; }
    }


/* Scan FAB */
.scan-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 999;
  border: none;
  padding: 0;
  background: transparent;
}
.scan-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.scan-fab img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: block;
}
