/* معرض الوطن القارئ - أنماط مخصصة */
* { -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; }

.font-900 { font-weight: 900; }

/* شريط تمرير جميل */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #e6f4ec; }
::-webkit-scrollbar-thumb { background: #006C35; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #004d26; }

/* تظليل الكلمات */
.word-hl.bg-yellow-300 {
  background-color: #fde047 !important;
  transform: scale(1.08);
  box-shadow: 0 0 0 2px #facc15;
}

/* حركات لطيفة */
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.animate-floaty { animation: floaty 3s ease-in-out infinite; }

@keyframes pop { 0%{transform:scale(0.9);opacity:0} 100%{transform:scale(1);opacity:1} }
main > * { animation: pop 0.3s ease-out; }

/* أزرار الاختيار */
input[type="radio"] { accent-color: #006C35; }

/* منع تحديد النص على الأزرار */
button { user-select: none; }

/* لوحة الرسم */
#drawCanvas { touch-action: none; }
