Get a specific config value
static Future<T?> getConfigValue<T>(String key) async { final config = await loadConfig(); return config[key] as T?; }