/**
 * FOUC (Flash of Unstyled Content) Prevention
 * Hides page content until all styles are loaded
 */

/* Hide body content by default */
body.creator-community-newsfeed {
    visibility: hidden;
    opacity: 0;
}

/* Show content when loaded */
body.creator-community-newsfeed.styles-loaded {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.2s ease-in;
}

/* Critical above-the-fold styles to prevent layout shift */
body.creator-community-newsfeed .site-content {
    min-height: 100vh;
}

/* Hide BuddyBoss default elements that flash */
body.creator-community-newsfeed #buddypress,
body.creator-community-newsfeed .bb-buddypress,
body.creator-community-newsfeed .activity,
body.creator-community-newsfeed .groups,
body.creator-community-newsfeed .members {
    display: none !important;
}

/* Show only our custom content */
body.creator-community-newsfeed .creator-community-container {
    display: block !important;
}