@media print {
  /* Hide interactive elements */
  .day-nav, .section-nav, .dark-toggle, .scroll-hint,
  .back-to-top, .countdown, .day-map, #mapOverview,
  .activity-check, .map-link { display: none !important; }

  /* Reset colors */
  body, body.dark {
    background: #fff !important;
    color: #000 !important;
  }

  /* Remove shadows and animations */
  * {
    box-shadow: none !important;
    text-shadow: none !important;
    animation: none !important;
    transition: none !important;
  }

  /* Activity cards */
  .activity-card {
    border: 1px solid #ccc !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  /* Page breaks */
  .day-section { page-break-before: always; }
  .hero { page-break-after: always; }

  /* Links */
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
  a[href^="#"]::after, a[href^="javascript"]::after { content: ""; }
}
