/* بوابة القراءة الموجهة — أنماط مخصصة */
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

.line-clamp-2 { display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.line-clamp-3 { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }

/* شريط تمرير أنيق */
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #c4b5fd; border-radius: 9px; }
::-webkit-scrollbar-thumb:hover { background: #8b5cf6; }

/* أنماط الطباعة (تنزيل الملخص PDF) */
@media print {
  header, footer, nav, button, a[href*="google"], .no-print { display: none !important; }
  body { background: #fff !important; }
  main { max-width: 100% !important; padding: 0 !important; }
  #book-header { box-shadow: none !important; border: 1px solid #ddd !important; }
  section { break-inside: avoid; box-shadow: none !important; border: 1px solid #eee !important; }
  a { text-decoration: none !important; color: #000 !important; }
  .flex.items-center.justify-between.gap-3.mt-8 { display: none !important; }
}
