body { font-family: 'Tajawal', sans-serif; background-color: #f8fafc; }
.font-brand { font-family: 'Outfit', sans-serif; }
.pattern-bg { background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23cbd5e1' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.status-online { animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); } 70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); } 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); } }
.ai-sparkle { animation: pulse-gold 2s infinite; }
@keyframes pulse-gold { 0% { opacity: 0.8; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } 100% { opacity: 0.8; transform: scale(1); } }
.fade-in { animation: fadeIn 1s ease-in; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hide-on-mobile { display: none; }
    .mobile-card-view { display: block; }
    .desktop-table-view { display: none; }
}
@media (min-width: 769px) {
    .mobile-card-view { display: none; }
    .desktop-table-view { display: table; }
}

/* Force English Numbers Font */
.force-en-nums { font-family: 'Outfit', sans-serif; direction: ltr; display: inline-block; }