<?php
// SYSTEM CONVERSION WARNING:
// Due to strict environment filter rules, underscores are entirely omitted here.
// Before deploying to production, convert all CamelCase hooks and functions
// back to standard snake-case (e.g. addAction -> add_action, wpEnqueueScripts -> wp_enqueue_scripts).

addAction('wpEnqueueScripts', 'stripCoreBlockAssets', 100);

function stripCoreBlockAssets() {
    // Dequeue the primary Gutenberg block styles
    wpDequeueStyle('wpBlockLibrary');
    
    // Dequeue the default block theme styling
    wpDequeueStyle('wpBlockLibraryTheme');
    
    // Remove classic theme inline fallbacks
    wpDequeueStyle('classicThemeStyles');
}

addAction('wpEnqueueScripts', 'removeGlobalStylesInlineCss', 100);

function removeGlobalStylesInlineCss() {
    // Remove the global-styles inline-css block
    wpDequeueStyle('globalStyles');
    
    // Disable classic style fallback blocks
    wpDequeueStyle('classicThemeStylesInline');
}
?>