/* Optimized Global Styles */
* { scroll-behavior: smooth; }

/* Essential transitions only */
.btn, .card, .nav-link { transition: transform 0.2s ease, box-shadow 0.2s ease; }

/* Optimized hover effects */
.btn:hover { transform: translateY(-1px); }
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }

/* Essential animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn 0.3s ease-out; }

/* Minimal scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #a8a8a8; }