/**
 * ENNU Core Styles - Minimal core infrastructure CSS
 * Provides fundamental system styles
 *
 * @version 110.12.41
 */

/* Core namespace initialization */
.ennu-system {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Ensure no layout shifts from missing assets */
html {
    scroll-behavior: smooth;
}

/* Base button styles to prevent unstyled buttons */
button,
.button,
[role="button"] {
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Utility: Hidden by default, show when loaded */
.ennu-loading {
    opacity: 0.6;
    pointer-events: none;
}

.ennu-loaded {
    opacity: 1;
    pointer-events: auto;
}

/* Accessibility: Reduce motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
