@keyframes ticker { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
/* تعديل اتجاه الحركة في العربية */
html[dir="rtl"] .ticker-content { animation: ticker-rtl 45s linear infinite; }
@keyframes ticker-rtl { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.ticker-wrap { overflow: hidden; white-space: nowrap; }
.ticker-content { display: inline-block; }

body { font-family: 'IBM Plex Sans Arabic', sans-serif; }
/* تغيير الخط عند التحويل للإنجليزية */
html[lang="en"] body { font-family: 'Inter', sans-serif; }

html[dir="rtl"] .ticker-content .text-gray-300 {
    color: #F44336 !important;
}

/* Mobile Bottom Nav: add padding so content isn't hidden under the bar */
@media (max-width: 1023px) {
    body {
        padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
    }
}

/* Bottom nav active indicator */
#mobile-bottom-nav a.text-primary span.material-symbols-outlined {
    font-variation-settings: 'FILL' 1;
}