/**
 * AW Print Stylesheet
 * Strips dark theme, formats for A4/Letter printing
 * Load: <link rel="stylesheet" href="/assets/print.css" media="print">
 */
@media print {
  /* Reset dark backgrounds */
  body, html, main, article, section, div {
    background: #fff !important;
    color: #111 !important;
  }

  /* Hide non-essential elements */
  nav, footer, #aw-exit-overlay, #aw-back-top, #aw-progress-bar,
  .nav-bar, .mega-menu, .mobile-menu, .newsletter-cta,
  .pricing-section, .subscribe-section, .cta-section,
  button, .btn, [role="navigation"], .social-links,
  .filter-bar, .filter-tabs, .search-box, .search-container,
  #aw-toc, .back-to-top, .cookie-banner {
    display: none !important;
  }

  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    color: #000 !important;
    page-break-after: avoid;
  }

  h1 { font-size: 24pt !important; }
  h2 { font-size: 18pt !important; border-bottom: 1pt solid #ccc; padding-bottom: 4pt; }
  h3 { font-size: 14pt !important; }

  p, li, td, th, dd, dt {
    color: #222 !important;
    font-size: 11pt !important;
    line-height: 1.5 !important;
  }

  /* Links */
  a { color: #222 !important; text-decoration: underline !important; }
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #666;
  }
  a[href^="/"]::after {
    content: " (artificialweapons.com" attr(href) ")";
    font-size: 9pt;
    color: #666;
  }

  /* Cards and containers */
  .card, .intel-item, .db-row, .system-card, .country-card,
  [class*="card"], [class*="item"] {
    background: #fff !important;
    border: 1pt solid #ddd !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }

  /* Status badges */
  .sys-status, .status-badge, [class*="status"], [class*="tag"] {
    border: 1pt solid #999 !important;
    background: transparent !important;
    color: #333 !important;
    padding: 2pt 6pt !important;
  }

  /* Tables */
  table { border-collapse: collapse !important; width: 100% !important; }
  th, td {
    border: 1pt solid #ccc !important;
    padding: 6pt 8pt !important;
    background: #fff !important;
  }
  th { background: #f0f0f0 !important; font-weight: bold !important; }

  /* Images */
  img, svg { max-width: 100% !important; }

  /* Page setup */
  @page {
    margin: 2cm;
    size: A4;
  }

  /* Header for printed pages */
  body::before {
    content: "ARTIFICIAL WEAPONS — artificialweapons.com";
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9pt;
    color: #999;
    border-bottom: 1pt solid #ccc;
    padding-bottom: 8pt;
    margin-bottom: 16pt;
  }

  /* Avoid orphans/widows */
  p { orphans: 3; widows: 3; }
}
