/* Custom styles for Web Core Vitals optimization */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Prevent layout shift */
img {
    max-width: 100%;
    height: auto;
}

/* Loading state prevention */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a472a;
}

::-webkit-scrollbar-thumb {
    background: #4a7c59;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7cb342;
}
