#fw-section-hero-video-522ddcad-642f-43ac-a529-72b168e99015 {

/* Prevent Flash of Unstyled Content (FOUC) */
html {
    visibility: hidden;
    opacity: 0;
}

body {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* Lazy Load Images */
img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

img.loaded {
    opacity: 1;
}

/* Preload Key Fonts */
@font-face {
    font-family: 'CustomFont';
    src: url('/fonts/customfont.woff2') format('woff2');
    font-display: swap;
}

/* Reduce Render Blocking Styles */
* {
    will-change: transform, opacity;
}

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

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

}