 /* ── CONTENT AREA — for plain h1/p/h2 interior pages ── */
  .content-area { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 2rem 2.4rem; }
  .content-area h1 { font-family: 'Press Start 2P', monospace; font-size: clamp(0.8rem, 2vw, 1.1rem); color: var(--text); line-height: 1.6; margin-bottom: 1.2rem; }
  .content-area h1 .hl { color: var(--pixel-yellow); }
  .content-area h2 { font-family: 'Press Start 2P', monospace; font-size: 0.66rem; color: var(--pixel-yellow); letter-spacing: 0.08em; margin: 2rem 0 0.85rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
  .content-area h2:first-of-type { border-top: none; margin-top: 1.25rem; padding-top: 0; }
  .content-area h3 { font-size: 0.9rem; font-weight: 600; color: var(--pixel-blue); margin: 1.25rem 0 0.5rem; }
  .content-area p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }
  .content-area p strong { color: var(--text); font-weight: 600; }
  /* catch-all — any <a> inside .content-area gets site colours */
  .content-area a { color: var(--pixel-blue); text-decoration: none; border-bottom: 1px solid rgba(88,166,255,0.3); transition: color 0.15s, border-color 0.15s; }
  .content-area a:hover { color: var(--pixel-yellow); border-color: rgba(255,215,0,0.5); }
  .content-area a:visited { color: var(--pixel-purple); border-color: rgba(167,139,250,0.3); }
  /* keep p a identical — specificity already handled by the rule above */
  .content-area p a { color: var(--pixel-blue); text-decoration: none; border-bottom: 1px solid rgba(88,166,255,0.3); transition: color 0.15s, border-color 0.15s; }
  .content-area p a:hover { color: var(--pixel-yellow); border-color: rgba(255,215,0,0.5); }
  .content-area p a:visited { color: var(--pixel-purple); border-color: rgba(167,139,250,0.3); }
  .content-area ul, .content-area ol { padding-left: 1.4rem; margin-bottom: 1rem; }
  .content-area li { font-size: 0.92rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 0.3rem; }
  .content-area li::marker { color: var(--pixel-yellow); }
  .content-area hr { border: none; border-top: 1px solid var(--border); margin: 1.75rem 0; }
 