/* Oaktree Innovations - Global Styles */

/* Performance optimizations */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Image optimizations - prevent flickering */
img {
  content-visibility: auto;
  /* background-color: rgba(255, 255, 255, 0.05); */
}

/* Prevent layout shift from images */
img[src] {
  opacity: 1;
  transition: opacity 0.2s ease-out;
}

/* Hardware acceleration for animated elements */
.glass-panel,
.glass-nav {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Line clamp utility */
.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;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Prevent flash of unstyled content */
[data-loading="true"] {
  visibility: hidden;
}
